(1)立刻关机 shutdown -h now 或者 poweroff (2)两分钟后关机 shutdown -h 2
2.2 关闭重启
1 2 3 4
(1)立刻重启 shutdown -r now 或者 reboot (2)两分钟后重启 shutdown -r 2
2.3 帮助命令(help)
1
ifconfig --help//查看 ifconfig 命令的用法
2.4 命令说明书(man)
1
man shutdown//打开命令说明后,可按"q"键退出
2.5 切换用户(su)
1 2
su yao //切换为用户"yao",输入后回车需要输入该用户的密码 exit//退出当前用户
三、目录操作
3.1 切换目录(cd)
1 2 3 4 5 6 7
cd / //切换到根目录 cd/bin//切换到根目录下的bin目录 cd..///切换到上一级目录 或者使用命令:cd.. cd ~ //切换到home目录 cd - //切换到上次访问的目录 cd xx(文件夹名)//切换到本目录下的名为xx的文件目录,如果目录不存在报错 cd/xxx/xx/x//可以输入完整的路径,直接切换到目标目录,输入过程中可以使用tab键快速补全
3.2 查看目录(ls)
1 2 3 4
ls//查看当前目录下的所有目录和文件 ls -a //查看当前目录下的所有目录和文件(包括隐藏的文件) ls -l //列表查看当前目录下的所有目录和文件(列表查看,显示更多信息),与命令"ll"效果一样 ls/bin//查看指定目录下的所有目录和文件
说明:service命令用于运行SystemVinit脚本,这些脚本一般位于/etc/init.d文件下,这个命令可以直接运行这个文件夹里面的脚本,而不用加上路径 service ssh status //查看服务状态 service --status-all //查看所有服务状态 service ssh restart //重启服务
service iptables status //查看iptables服务的状态 service iptables start //开启iptables服务 service iptables stop//停止iptables服务 service iptables restart //重启iptables服务 chkconfig iptables off //关闭iptables服务的开机自启动 chkconfig iptables on //开启iptables服务的开机自启动 ##centos7 防火墙操作 systemctl status firewalld.service //查看防火墙状态 systemctl stop firewalld.service //关闭运行的防火墙 systemctl disable firewalld.service //永久禁止防火墙服务