The teacher bought a new computer, but it only has 100G solid state, so we need to install a mechanical hard disk for the host computer, but it cannot be mounted correctly in Ubuntu after it is installed:

Online to find the next method, found that direct use of ntFSfix tool can be fixed, first install it:

sudo apt-get install ntfs-3g
Copy the code

From the mount error message to view the disk partition to repair, such as /dev/sdb1, run:

sudo ntfsfix /dev/sdb1
Copy the code

Execute and mount correctly, perfect.

Reference links:

  • Askubuntu.com/questions/4…
  • Blog.csdn.net/lanxuezaipi…