Debian10中/etc/sudoers
中提示了需要通过visudo
来编辑该文件,如下:
This file MUST be edited with the ‘visudo’ command as root.
但奇葩的是系统中没有visudo
命令,apt
搜索也搜不到,-_-!
解决方法为,先使用su
切换至root用户,然后apt install sudo
安装sudo
然后编辑/etc/sudoers
,加入以下内容,保存时使用wq!
强制保存即可。
username ALL=(ALL:ALL) ALL
或者使用echo
直接写入到/etc/sudoers
中。
#echo "username ALL=(ALL:ALL) ALL" >> /etc/sudoers
接下来就可以使用sudo
命令来进行root权限操作了。