我在联想 T520 笔记本电脑上运行 Xubuntu 12.10。
如果我插入 FAT 格式的 USB 驱动器,它会自动安装,但如果我插入 NTFS 格式的 USB 驱动器,则必须手动安装它。
如何让 NTFS USB 驱动器在插入时自动挂载?
我的 /etc/fstab 如果有帮助的话:
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' 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>
proc /proc proc nodev,noexec,nosuid 0 0
/dev/sda1 / ext4 errors=remount-ro,user_xattr 0 1
# swap was on /dev/sda5 during installation
UUID=cd221c3e-44a8-459e-9dfb-04787f1cd0b6 none swap sw
答案1
有一个软件可以帮你管理所有 ntfs 卷,非常方便。说明如下:
“
通过以下命令添加此PPA:
**sudo apt-add-repository ppa:trebelnik-stefina/multisystem**
Update the index files:
**sudo apt-get update**
Install the arios-automount package:
**sudo apt-get install arios-automount** "
来自网址的答案:https://askubuntu.com/questions/46588/how-to-automount-ntfs-partitions/155722#155722
答案2
我认为你应该添加这样的一行。要检查设备的 UUID,请使用 Gpart,或者:
UUID=theidofyourthumbdrive /home/user/media[orwhereeveryouwant] fat32 rw
要检查设备的 UUID,请使用 Gpart,或者在终端中使用它:
sudo blkid
希望这可以帮助。