主目录的写权限

主目录的写权限

root 在我的主目录中没有写权限,并且我想要运行的每个 bin 或 sh 文件都需要从 root 运行。我的用户可以访问这些文件,但无法运行它们,因为它不是根用户。

如何为 root 启用对我的主目录的写入权限?

编辑:

ls -lad "$HOME" 
drwxr-xr-x+ 33 userid groupname 42 Aug  4 22:59 /home/userid

EDIT2: getfacl /home/userid 的输出

getfacl: Removing leading '/' from absolute path names
# file: home/userid
# owner: userid
# group: groupname
user::rwx
group::r-x
mask::rwx
other::r-x

编辑 3: df $HOME 的输出

Filesystem            1K-blocks       Used  Available Use% Mounted on
xxxxxxxx:/export/home1/userid
                     5156362272 3035249664 2121112608  59% /home/userid

相关内容