To mount a Windows disk, you must first install the ntfs driver, the ntfs-3g package Secondly, according to the error message prompted, it is recommended to use the ro parameter to mount it when Windows is completely closed.
First try to see if you can mount it in read-only mode
There are two reasons: 1. There is an error in your NTFS partition, which needs to be repaired with chkdsk 盘符: /f under Windows or sudo ntfsfix /dev/sda3 under Linux; 2. Windows 8 and above systems, Fast startup is enabled by default. If so, instead of completely shutting down when shutting down, you can mount it like this (If Windows sleeps, the data in the memory will be lost!): sudo mount -t ntfs-3g -o remove_hiberfile /dev/sda3, turn off fast startup (at the same time Also disables hibernation) Execute as administrator under Windows: powercfg -h off.
To mount a Windows disk, you must first install the ntfs driver, the ntfs-3g package
Secondly, according to the error message prompted, it is recommended to use the
ro
parameter to mount it when Windows is completely closed.First try to see if you can mount it in read-only mode
There are two reasons:
1. There is an error in your NTFS partition, which needs to be repaired with
chkdsk 盘符: /f
under Windows orsudo ntfsfix /dev/sda3
under Linux;2. Windows 8 and above systems, Fast startup is enabled by default. If so, instead of completely shutting down when shutting down, you can mount it like this (If Windows sleeps, the data in the memory will be lost!):
sudo mount -t ntfs-3g -o remove_hiberfile /dev/sda3
, turn off fast startup (at the same time Also disables hibernation) Execute as administrator under Windows:powercfg -h off
.