切换到root权限
1 | sudo su |
查看系统安装了哪些shell
1 | chsh -l |
切换shell 1
chsh -s /bin/
移动/重命名文件
显示电脑以及操作系统的相关信息
该命令用于打印当前系统相关信息(内核版本号、硬件架构、主机名称和操作系统类型等)
1 | -a或--all:显示全部的信息; |
正在运行的内核版本 1
cat /proc/version
发行版本信息 1
cat /etc/issue
检查当前开发的端口
1 | netstat -an |
重新启动iptables
1 | service iptables restart |
SELinux
查看现在的支持http的端口有哪些
1 | semanage port -l|grep http |
为http服务添加新的端xx
1 | semanage port -a -t http_port_t -p tcp 81 |
为http服务删除端口xx
1 | semanage port -d -t http_port_t -p tcp 81 |
参考