文件模式。更改文件的权限

时间:2015-10-21 07:28:40

标签: file-permissions sudo chmod

我有Debian的远程服务器,我需要在服务器上编辑只读文件fcgid.conf。当我使用sudo时:

sudo su chmod 755 fcgid.conf

它回复:

-bash: sudo: command not found

我也尝试了cmod +x

chmod +x fcgid.conf

得到了:

chmod: changing permissions of `fcgid.conf': Operation not permitted

文件的所有者是 root 用户,我不知道如何获得编辑此文件的权限。

1 个答案:

答案 0 :(得分:1)

如果您在安装中定义了root密码,则

Sudo未与Debian一起安装。

使用

安装sudo
$ apt-get update
$ apt-get install sudo

并制定sudo规则并将您的用户添加到群组中:

$ adduser USERNAME sudo
$ visudo

输入:

%sudo ALL = (ALL) ALL

然后再次运行

$ sudo chmod +x fcgid.conf

另见:How to properly configure sudoers file, on debian wheezy? 您尝试

$ su root

然后

$ chmod +x fcgid.conf

这两种方法都可以让您知道root / admin密码......