Questions tagged «chown»

chown命令用于类Unix系统上,以更改文件的所有者。

3
chroot目录组件的所有权或模式错误
我创建了用户MY_USER。将他的主目录设置为/ var / www / RESTRICTED_DIR,这是他应被限制的路径。然后我编辑sshd_config并设置: Match user MY_USER ChrootDirectory /var/www/RESTRICTED_DIR 然后,我重新启动了ssh。成为RESTRICTED_DIR的MY_USER所有者(和组所有者),并将其更改为755。我得到 Accepted password for MY_USER session opened for user MY_USER by (uid=0) fatal: bad ownership or modes for chroot directory component "/var/www/RESTRICTED_DIR" pam_unix(sshd:session): session closed for user MY_USER 如果我从sshd_config中删除了2行,则用户可以成功登录。当然,它可以访问所有服务器。有什么问题?我什至尝试将RESTRICTED_DIR设置为root(当我读到某人在解决此问题时也解决了该问题)。没运气..
56 ssh  chown  chroot 


2
使用点(。)作为分隔符以在chown中指定组
我一直都做: chown nimmylebby:admins file 我看到这也有效: chown nimmylebby.admins file 也许这似乎是一个愚蠢的问题,但我真的对后者的工作方式感到好奇。它在我的chown的联机帮助页中没有记录(GNU coreutils 8.4,10/10)。这也许是Bash的解释吗?还是参数已弃用的格式?

2
在已安装的NFS分区上添加chown表示“不允许操作”
我有一个使用NFS在本地安装的远程分区。 'mount'给 192.168.3.1:/mnt/storage-pools/ on /pools type nfs (rw,addr=192.168.3.1) 在我出口的服务器上: /mnt/storage-pools *(rw,insecure,sync,no_subtree_check) 然后我尝试 touch /pools/test1 ls -lah -rw-r--r-- 1 65534 65534 0 Dec 13 20:56 test1 chown root.root test1 chown: changing ownership of `test1': Operation not permitted 我想念什么?拉我的头发。
31 permissions  nfs  chown 



2
禁止使用chown更改目录的组所有者...为什么?
我试图chown在具有以下权限和所有者的目录上执行: drwxrwxr-x 2 justin devs 4096 Jan 1 20:42 test 我试图简单地以justin用户身份执行以下命令: chown justin:nginx test 因此,基本上,只需将论坛所有者更改为nginx,但我会得到: chown: changing ownership of `test/': Operation not permitted 有任何想法吗?


3
chown:更改`。'的所有权:无效的参数
我正在尝试在系统管理员假期期间在新服务器上安装一些新文件: 这是我的 df # df -h Filesystem Size Used Avail Use% Mounted on /dev/sdb3 273G 11G 248G 5% / tmpfs 48G 260K 48G 1% /dev/shm /dev/sdb1 485M 187M 273M 41% /boot xxx.xx.xxx.xxx:/commun 63T 2.2T 61T 4% /commun 以root身份,我可以创建一个新目录并chown在/ home / lindenb下运行 # cd /home/lindenb/ # mkdir X # chown lindenb …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.