바로 여기에서 또 다른 권한이 거부되었습니다. 죄송하지만 작동시킬 수 없습니다.
를 통해 잘 실행할 stack
수 있도록 sudo 권한을 가진 사용자 로 만들었습니다 . 그러나 내가 무엇을 시도하든 sudo가 없으면 내 허가가 거부됩니다. , 및 을 설정했지만 여전히 하위 폴더를 만들 수 없습니다.x
sudo mkdir /root/x
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
있도록 폴더 권한을 설정하려면 어떻게 해야 합니까 ? 이것은 Ubuntu 14.04 도커 이미지입니다.stack
/root
편집하다: 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