编辑/etc/inittab文件。
找到id:5: initdefault:这一行
vi /etc/inittab
将它改为id:3:initdefault:后重新启动系统即可
查看SELinux状态:
/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态
SELinux status: enabled
临时关闭
setenforce 0
#设置SELinux 成为permissive模式
setenforce 1 设置SELinux 成为enforcing模式
永久关闭
修改/etc/selinux/config 文件
vi /etc/selinux/config
将SELINUX=enforcing改为SELINUX=disabled
查看防火墙状态:
[root@cu01 zjhua]# service iptables status
iptables: Firewall is not running.
[root@cu01 zjhua]#
暂时关闭防火墙:
/etc/init.d/iptables stop
禁止防火墙在系统启动时启动
chkconfig iptables off
查看状态
service iptables status
service NetworkManager stop
chkconfig NetworkManager off
service NetworkManager status
Link detected: no 说明没联网
Link detected: yes 说明联网
IP配置
IP配置文件位于:
/etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
TYPE=Ethernet
IPADDR=192.168.0.3
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
说明:
ONBOOT=yes 说明开机时进行配置,这个必须设置
IP地址生效:
ifdown eth0
ifup eth0
查看主机名
[root@localhost asc15]# hostname
localhost.redhat6.3
永久修改
修改
vi /etc/sysconfig/network
,在里面指定主机名称HOSTNAME=
然后执行命令
hostname 主机名
这个时候可以注销一下系统,再重登录之后就行了。
service sendmail status
在linux vi命令模式下输入“:set nu”
或者修改linux vi命令配置文件“vi ~/.vimrc”,在其中添加“set nu”
在linux vi命令模式下输入“:set nu”,就有行号了。
有时候,linux下面运行sudo命令,会提示类似:
xxxis not in the sudoers file. This incident will be reported.
这里,xxx是用户名称,然后导致无法执行sudo命令,这时候,如下解决:
1)进入超级用户模式。也就是输入”su -“,系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。(当然,你也可以直接用root用)
2)添加文件的写权限。也就是输入命令”chmod u+w /etc/sudoers”。
3)编辑/etc/sudoers文件。也就是输入命令”vim /etc/sudoers”,进入编辑模式,找到这一 行:”root ALL=(ALL) ALL”在起下面添加”xxx ALL=(ALL) ALL”(这里的xxx是你的用户名),然后保存退出。
4)撤销文件的写权限。也就是输入命令”chmod u-w /etc/sudoers”。
然后就行了。
设置开机自启动
sudo chkconfig vsftpd on
开机自启动
off关闭
查看运行级别
[jz@ftpserver ~]$ sudo chkconfig --list vsftpd
vsftpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
centos 配置yum源
挂载光盘
mount /dev/cdrom /media/CentOS
进入入/etc/yum.repos.d目录,可以看到四个文件分别为CentOS-Base.repo、 CentOS-Media.repo 、CentOS-Vault.repo、CentOS-Vault.repo.repo,将其中三个改名或者移走
留下CentOS-Media.repo
[jz@ftpserver yum.repos.d]$ cat CentOS-Media.repo
# CentOS-Media.repo
#
# This repo can be used with mounted DVD media, verify the mount point for
# CentOS-6. You can use this repo and yum to install items directly off the
# DVD ISO that we release.
#
# To use this repo, put in your DVD and use it with the other repos too:
# yum --enablerepo=c6-media [command]
#
# or for ONLY the media repo, do this:
#
# yum --disablerepo=\* --enablerepo=c6-media [command]
[c6-media]
name=CentOS-$releasever - Media
baseurl=file:///media/CentOS/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
[jz@ftpserver yum.repos.d]$
只要将光盘挂载到该目录下即可 /media/CentOS
yum list 查看是否安装成功
安装g++
通常情况下在centos下安装软件就用yum.
关键是,使用yum你的知道安装包的名字是什么。如果直接键入yum install g++,
会告诉你没有这个包。所以你应该使用gcc-c++,这才是这个包的名字。
LIn
ux设置时间
sudo date -s ‘09:40:00 2015-06-05’