我设置了双启动 Windows 10/Xubuntu 16.04。两者共享小型 SSD 进行启动,并且都在数据驱动器上具有主目录。
对于 Xubuntu 来说,/dev/sdc
是数据驱动器,它安装在/mnt/archives
。当我usermod -d /mnt/archives/mike mike
以用户身份运行将主驱动器移动到数据驱动器时,它在重新启动后工作正常。当我最初更改主目录时,我将所有内容/dev/sdc
安装在 下id=0,gid=0
,即以 root 身份安装所有内容。我将安装更改为id=mike,gid=mount_group
,然后重新启动我的计算机。但是,当我运行 时sudo chown -R mike:mount_group /mnt/archives/mike/*
,它实际上并没有更改任何权限。 :/
这是我的/etc/fstab
文件:
# cat /etc/fstab
# /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/sdd3 during installation
UUID=8db38c8f-87b6-4174-a439-fd60dbb7b313 / ext4 errors=remount-ro 0 1
/dev/sdc /mnt/archives auto rw,relatime,user_id=mike,group_id=mount_group,allow_other,blksize=4096
以下是目录的示例:
# ls -lah /mnt/archives/mike/
total 88K
drwxrwxrwx 1 root root 8.0K Oct 23 15:50 .
drwxrwxrwx 1 root root 4.0K Oct 23 14:30 ..
drwxrwxrwx 1 root root 0 Oct 3 23:05 .adobe
drwxrwxrwx 1 root root 4.0K Oct 3 23:36 anaconda2
drwxrwxrwx 1 root root 0 Oct 9 00:14 .astropy
drwxrwxrwx 1 root root 0 Oct 9 00:19 .aws
-rwxrwxrwx 1 root root 6.5K Oct 23 15:49 .bash_history
-rwxrwxrwx 1 root root 220 Oct 3 22:24 .bash_logout
-rwxrwxrwx 1 root root 948 Oct 23 14:33 .bash_profile
-rwxrwxrwx 1 root root 3.8K Oct 23 14:34 .bashrc
-rwxrwxrwx 1 root root 3.7K Oct 3 23:36 .bashrc-anaconda2.bak
drwxrwxrwx 1 root root 4.0K Oct 23 16:01 .cache
drwxrwxrwx 1 root root 0 Oct 8 17:21 .conda
...
我该如何解决这个奇怪的权限问题?
答案1
问题出在您的chmod -R
命令中。*
命令中的 排除了mike/
空间的实际部分。默认情况下,在预期的直接目录中看*
不到点。.
这些命令将实现您想要的功能。首先,用户经常会错误地更改其主目录根目录的所有者或他们空间中的某些文件和文件夹。可以使用以下命令纠正此问题:
$ sudo chown -R $USER:$USER ~/
或者对于你问题中的命令,使用以下命令:
$ sudo chown -R mike:mount_group /mnt/archives/mike/