Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
创建用户时,会使用用户名创建一个目录,我想创建一个超级用户,他可以访问其他用户的目录,并且使用 FTP,所以当超级用户连接时,他可以访问所有其他用户的目录.
有没有办法与其他用户共享用户目录?
创建一个用户,然后编辑/etc/passwd文件并向您通过将用户和组 ID 更改为 UID 0 和 GID 0 创建的用户授予 root 权限。
/etc/passwd
例如-您创建了 xyz 用户,它看起来像-
# grep xyz /etc/passwd xyz:x:1001:1001::/home/xyz:/bin/sh
使用您最喜欢的文本编辑器,将其更改为 -
xyz:x:0:0::/home/xyz:/bin/sh
现在由于 xyz 是 root,它可以访问所有文件。
希望能帮助到你!