Uninstall windows & Linux mount disk

1. Mount

sudo mkdir mnt/D

sudo fdisk -l # find windows (my window disk is / dev / sdb4)

sudo Mount / dev / sdb4 / mnt / D = -o iocharset utf8, the umask = 0

报错:只读:The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Falling back to read-only mount because the NTFS partition is in an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
解决方法

sudo ntfsfix / dev / sdb4

after the first repair # umount:

sudo umount / dev / sdb4

then mount after #:

sudo mount / dev / sdb4 / mnt / D = -o iocharset utf8, the umask = 0

2. Uninstall
sudo umont / dev / sdb4

Guess you like

Origin www.cnblogs.com/yutingmoran/p/11896171.html
Recommended