U盘 HPFS/NTFS/EXFAT文件系统 Operation not supported

解决方案

这种行为的原因是缺少的NTFS驱动程序。

因此,解决方案是通过安装“NTFS-3G”包来安装所需的驱动程序。

FEDORA/CENTOS/REDHAT
$sudo yum install ntfs-3g
OR
$sudo dnf install ntfs-3g
DEBIAN/UBUNTU
# apt install ntfs-3g

然后,重新挂载U盘:

# umount USB/
# mount /dev/sdX /mnt/USB/

问题:

# touch file
touch: cannot touch ‘file’: Permission denied
# chmod -R 777 USB/
chmod: changing permissions of ‘USB/Autorun.inf’: Operation not supported
chmod: changing permissions of ‘USB/Seagate/Registration/SerialNumber.xml’: Operation not supported
chmod: changing permissions of ‘USB/SeagateExpansion.ico’: Operation not supported
chmod: changing permissions of ‘USB/Start_Here_Win.exe’: Operation not supported
chmod: changing permissions of ‘USB/Warranty.pdf’: Operation not supported
日期:2020-07-07 20:56:53 来源:oir作者:oir