我想给内网的服务器上创建一个低权限的用户给我的同事,如何将该用户限定在某一特定目录,并让该用户在该目录具有写权限。以下是我执行的步骤。
创建用户
如果你想将用户的读写执行权限限制在,/home/users_you_create目录下,创建用户的时候使用以下的shell即可:
# adduser --home /restricted/users_you_create restricted_user
这样将会创建一个用户名为restricted_user 用户,如此,默认情况下将无法对其他目录使用写权限。
如果你已经存在该目录,你可以采用以下的方式
# adduser --home /restricted/users_you_create restricted_user --no-create-home
此时,你需要对刚刚创建的目录进行权限的设置
chown restricted_user:restricted_user /restricted/users_you_create //设置目录对应的用户属组
chmod 755 /restricted/users_you_create //修改创建目录的读写权限
注:restricted用户没有sudo的权限,如果需要提升该权限,还需要采用visudo的方式对/etc/sudoer进行编辑,这样来达到最高权限。
Linux限制用户登录详解:http://www.linuxdiyf.com/linux/1825.html
怎样在Linux中限制网络带宽使用:http://www.linuxdiyf.com/linux/10147.html
Linux用户磁盘空间的限制:http://www.linuxdiyf.com/linux/545.html
如何限制Linux用户的进程数呢?:http://www.linuxdiyf.com/linux/422.html