4.3 Accessing the Windows Partition from Fedora 31
When running Fedora in a dual boot configuration it is still possible to access files located on the Windows partition. This can be achieved by manually mounting the partition from the command-line. Before doing so, however, some additional packages need to be installed on the system. First the fuse kernel module needs to be downloaded and installed:
# dnf install fuse
# modprobe fuse
Once the requisite packages are installed, the next step is to create a directory to use as the mount point for our Windows partition. In this example we will create a directory named /mnt/windows:
# mkdir /mnt/windows
In order to identify the device name that has been assigned to the Windows partition, use the fdisk command as follows:
# fdisk -l
.
.
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 102400 7 HPFS/NTFS
/dev/sda2 13...