有没有办法为 Windows 的共享 NTFS 分区创建垃圾箱。每当我删除某些东西时,它说它不能被移动到垃圾箱,并且会立即被删除。
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=88905181-e735-4dd4-be4f-c90da558dc32 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=903A-A250 /boot/efi vfat umask=0077 0 1
/swapfile none swap sw 0 0
/dev/disk/by-uuid/01D60CFF0BF1D440 /mnt/01D60CFF0BF1D440 auto nosuid,nodev,nofail,x-gvfs-show 0 0
我建议您使用以下内容更改 /etc/fstab 文件的最后一行:
uid、dmask 和 fmask 选项用于设置 ntfs 文件系统的安全选项。他们应该适合你。utf8 选项有助于管理 Windows 和 Linux 之间的文件名。为此,您需要在 /mnt/Windows 上安装一个安装点,这比您目前拥有的要简单:
要编辑您的 fstab 文件,请使用:
sudo nano -B /etc/fstab
这将创建原始 fstab 的备份副本。让我们知道您的身体情况如何