linux下的root用户是个超级管理员,一般是不用这个用户登录进行操作的,但有时候需要root权限,又不想切换用户的话可以使用sudo命令.但是不是所有的用户都可以使用sudo命令的. 首先可能会遇到下面的提示: ××× is not in the sudoers file.  This incident will be reported. 解决办法: 1.修改/etc/sudoers 文件 #su - #chmod u+w /etc/sudoers 在 root    ALL=(ALL) …
报错: xxx is not in the sudoers file.  This incident will be reported. Linux默认没有为当前用户开启sudo权限! $ su  $ visudo 实际上是编辑/etc/sudoers文件将zlex    ALL=(ALL) ALL加入其中: 找到下面的一行:root    ALL=(ALL) ALL 加入下面这行: xxx   ALL=(ALL) ALL…
$ su密码: # cd /etc/# cp sudoers sudoers_bak# vi sudoers 最下面加入一行:ALL ALL = NOPASSWD:/usr/sbin/openconnect 如果有多个希望sudo不加密码的程序?用逗号隔开:ALL ALL = NOPASSWD:/usr/sbin/openconnect,/usr/local/bin/rancher,/usr/local/bin/rancher-compose 然后wp!保存. 试试:$ echo "myVpnP…
运行adduser username 会默认建立同名的user,group,同时会要求输入用户密码及一些属性,完成之后OK. sudo chmod +w /etc/sudoers vi /etc/sudoers 找到root ALL=(ALL) ALL,按照此格式,新起一行,输入user ALL=(ALL) ALL 保存之后OK…
有时候执行一个脚本或者运行一个可执行文件时,如执行脚本./foo.sh,会报错-bash: ./foo.sh: Permission denied,你会再试sudo ./foo.sh,发现继续报错sudo: foo.sh: command not found,这时候可能是因为该文件没有执行权限,可以通过ls -l foo.sh查看文件信息,如果确实没有,可以为文件增加执行权限 chmod +x foo.sh 这个时候就可以运行了. 参考Command not found when using s…
1.登录root用户 2.增加root用户对文件sudoers的写权限 chmod u+w /etc/sudoers 3.编辑sudoers,把用户mysql添加进去 vi /etc/sudoers 找到如下行,并且在下面添加mysql的配置: root ALL=(ALL) ALL mysql ALL=(ALL) ALL 4.去掉root用户对文件sudoers的写权限 chmod u-w /etc/sudoers…
先使用命令 yum install -y lrzsz rz 上传    或者直接拖动 sz 要下的文件 回车…
安装环境:centos7.2 安装依赖包: yum install -y gcc .el7..x86_64 openssl-devel.x86_64 yum install -y curl.x86_64 yum install -y libcurl-devel.x86_64 yum install -y expat.x86_64 expat-devel.x86_64 yum install -y asciidoc.noarch yum install -y xmlto.x86_64 ......…
Linux下为普通账号加sudo权限 1. 错误提示:当我们使用sudo命令切换用户的时候可能会遇到提示以下错误:xxx is not in the sudoers file. This incident will be reported,xxx是你当前的用户名,究其原因是用户没有加入到sudo的配置文件里 2. 解决方法:切换到root用户,运行visudo命令,打开配置文件,找到"root ALL=(ALL) ALL"在下面添加一行xxx ALL=(ALL) ALL并保存…
参考: How do I verify the speed of my NIC? Linux下 网卡测速 命令: $ sudo ethtool eth0 Settings for eth0: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports…