Centos 随笔 Day 1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 随笔 Day 1相关的知识,希望对你有一定的参考价值。
CentOS版本查看
查看CentOS版本:cat /etc/porc/version 或者 uname -a 或uname -r
查看Linux版本:cat /etc/issue 或者 lsb_release -a (注:该命令适合所有版本的Linux)
防火墙
1 关闭防火墙:service iptables stop
2 启动防火墙:service iptables start
3 重启防火墙:service iptables restart
4 查看防火墙状态:service iptables status
5 永久关闭防火墙:chkconfig iptables off
6 永久关闭后启用:chkconfig iptables on
CentOS 图形界面与命令行界面切换
方法1:运行命令到图形界面 #startx 需要先配置图形界面信息
方法2:修改 /etc/inittab 文件中的 id:3:initdefault ,将3改为5,重启系统
方法3:init 5
从图形界面进入命令行界面:init 3
重启:init 6
关机:init 0
以上是关于Centos 随笔 Day 1的主要内容,如果未能解决你的问题,请参考以下文章