自动挂载 root 拥有的拇指驱动器

自动挂载 root 拥有的拇指驱动器

我可以以普通用户(非 root)身份在 Ubuntu 12.04.4 Server 上自动挂载我的拇指驱动器。但是挂载后,所有者是 root。

drwxr-xr-x 4 root root 2048 Jan  1  1970 PP

如何改变所有权?

自动输出文件 auto.usb 如下。

#
# This is an automounter map and it has the following format
# key [ -mount-options-separated-by-comma ] location
# Details may be found in the autofs(5) manpage

#cd     -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom

# the following entries are samples to pique your imagination
#linux      -ro,soft,intr       ftp.example.org:/pub/linux
#boot       -fstype=ext2        :/dev/hda1
#floppy     -fstype=auto        :/dev/fd0
#floppy     -fstype=ext2        :/dev/fd0
#e2floppy   -fstype=ext2        :/dev/fd0
#jaz        -fstype=ext2        :/dev/sdc1
#removable  -fstype=ext2        :/dev/hddA
P -fstype=vfat :/dev/sdi1

请帮忙,谢谢

答案1

使用额外的 uid 和/或 gid 选项,根据您的用户 ID 修改数字:

(..)
#removable  -fstype=ext2        :/dev/hddA
P -fstype=vfat :/dev/sdi1 uid=1000,gid=1000

在这里查看 fstab 的更多选项:

https://help.ubuntu.com/community/Fstab

在此处查看更多自动挂载选项:

http://linuxconfig.org/automatically-mount-usb-external-drive-with-autofs

相关内容