Dual system Linux mounting Windows disk partition

1. View the drive letter name

sudo blkid

List all drive letter names to find and remember the drive letter name in the format of Type=”ntfs”, usually /dev/sda1, 2, 3,...

2. Modify the fstab file in the etc directory

sudo nano /etc/fstab

Add at the end

#/dev/sda1 是Windows的系统保留分区可以不挂载
/dev/sda2 /media/C
/dev/sda3 /media/D

Restart the system to see if the problem is resolved

Guess you like

Origin blog.csdn.net/no1xium/article/details/108069759