You can modify/etc/fstab to automatically mount Windows partitions under Fedora. Add the following code: # fs_spec fs_file fs_type fs_options fs_dump fs_pass/dev/sda2/mnt/d ntfs umask = 0000, rw, exec, auto, user, sync 0 0 1, fs_spec: the device or remote file system where the file system to be loaded is located, such as/dev/sda22 and fs_file: Directory point to which the file system is loaded, such as/data3 and fs_type: defines the file system on the device, such as vfat4 and fs_options: specify that the file system to load the device is a specific parameter option (1) rw readable and writable, ro read-only www.2cto.com (2) sync completed, async asynchronous completion (3) exec executable, noexec unexecutable (4) user allows normal users to mount, nouser can be mounted only by the root user (5) auto mounting is allowed automatically. noauto does not allow automatic mounting (6) mask of umask permission (solving the write permission problem of common users) 5. fs_dump: whether to perform dump (Backup) 6. fs_pass: the sequence of the file system to be scanned at startup by statdm