mkdir: 无法在 /root 下创建目录: 权限被拒绝

mkdir: 无法在 /root 下创建目录: 权限被拒绝

就在这里,另一个权限被拒绝,对此感到抱歉,但我无法让它运行。

让我成为stack具有 sudo 权限的用户,这样我就可以x通过sudo mkdir /root/x.运行得很好。但无论我如何尝试,如果没有 sudo,我的许可都会被拒绝。我设置了chown -R stack:stack /root、 和chmod 777 /root,但仍然无法创建子文件夹:

stack@2d11fb64044f:/$ whoami
stack
stack@2d11fb64044f:/$ ls -l / | grep stack
drwxrwxrwx   6 stack stack 4096 Sep 27 23:11 root
stack@2d11fb64044f:/$ ls /root
local.conf  logs  run.sh
stack@2d11fb64044f:/$ mkdir /root/x
mkdir: cannot create directory '/root/x': Permission denied

如何设置/root文件夹权限以便stack用户能够在 中创建新的子文件夹/root?这是 Ubuntu 14.04 docker 镜像。

编辑:使用docker复制:

 x:\>docker run -it ubuntu:14.04 /bin/bash
 root@c4d9e561f4e8:/# adduser stack
 Adding user `stack' ...
 Adding new group `stack' (1000) ...
 Adding new user `stack' (1000) with group `stack' ...
 Creating home directory `/home/stack' ...
 Copying files from `/etc/skel' ...
 Enter new UNIX password:
 Retype new UNIX password:
 passwd: password updated successfully
 Changing the user information for stack
 Enter the new value, or press ENTER for the default
    Full Name []:
    Room Number []:
    Work Phone []:
    Home Phone []:
    Other []:
 Is the information correct? [Y/n] y
 root@c4d9e561f4e8:/# chown stack /root
 root@c4d9e561f4e8:/# su - stack
 stack@c4d9e561f4e8:~$ mkdir /root/x
 mkdir: cannot create directory '/root/x': Permission denied

相关内容