我有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 用户,我不知道如何获得编辑此文件的权限。
答案 0 :(得分:1)
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密码......