service iptables status可以查看到iptables服务的当前状态.但是即使服务运行了,防火墙也不一定起作用,你还得看防火墙规则的设置 iptables -L在此说一下关于启动和关闭防火墙的命令: 1) 重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off 2) 即时生效,重启后失效 开启: service iptables start 关闭: service iptables stop…
若执行sudo命令的用户没有sodu权限,则会报以下错误 violet is not in the sudoers file.This incident will be reported 若想让violet用户拥有sudo权限,则需要修改sudoers文件 # 首先切换为root用户 su root # 修改sudoers文件 vim /etc/sudoers # 找到权限设置,如下 root ALL=(ALL) ALL # 若要给violet用户增加sudo权限,需要增加如下一行 root A…