我如何才能获得编辑 ubuntu 12 上的 /srv 文件夹及其所有内容的权限?我需要编辑名为 airtime 的服务器的一些文件。我需要在其中具有读写权限。
卡梅伦
答案1
/srv
默认情况下归所有root
,因此您需要获取 root 权限才能编辑它或向其中添加文件。
您可以使用 root 权限执行命令前置sudo
至此:
[timwolla@/srv]ls -al
total 8
drwxr-xr-x 2 root root 4096 Oct 17 2012 .
drwxr-xr-x 25 root root 4096 Mar 18 16:20 ..
[timwolla@/srv]mkdir test
mkdir: cannot create directory ‘test’: Permission denied
[timwolla@/srv]sudo mkdir test
[sudo] password for timwolla:
[timwolla@/srv]ls -al
total 12
drwxr-xr-x 3 root root 4096 Mar 26 20:20 .
drwxr-xr-x 25 root root 4096 Mar 18 16:20 ..
drwxr-xr-x 2 root root 4096 Mar 26 20:20 test