그리고 또 다른 권한이 거부되었습니다. 죄송합니다. 실행할 수 없습니다.
sudo 권한을 가진 사용자 가 되어 stack
폴더를 만들 수 있도록 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
폴더 권한을 설정하는 방법은 무엇입니까 ? 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