1、启动、关闭、重置服务 (rhel7 为 systemctl)
[[email protected]-6 ~]# service atd status #关闭atd服务
atd 已停
[[email protected]-6 ~]# service atd start #启动atd服务
正在启动 atd: [确定]
[[email protected]-6 ~]# service atd stop #停止atd服务
停止 atd: [确定]
[[email protected]-6 ~]# service atd restart #重启atd服务
停止 atd: [失败]
正在启动 atd: [确定]
[[email protected]-6 ~]# service atd reload #重置atd服务
停止 atd: [确定]
正在启动 atd: [确定]
[[email protected]-6 ~]# chkconfig atd on #设置atd服务开机自启
[[email protected]-6 ~]# chkconfig --list atd #查看atd服务各启动级别开机启动情况
atd 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
[[email protected]-6 ~]# chkconfig atd off #设置atd服务不开机自启
[[email protected]-6 ~]# chkconfig --list atd #查看atd服务各启动级别开机启动情况
atd 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭
[[email protected]-6 ~]# iptables -F #清空防火墙配置
[[email protected]-6 ~]# service iptables save #保存防火墙配置
iptables:将防火墙规则保存到 /etc/sysconfig/iptables: [确定]
[[email protected]-6 ~]# chkconfig iptables off #关闭防火墙自启
[[email protected]-6 ~]# chkconfig --list iptables #检查自启情况
iptables 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭
[[email protected]-6 ~]# getenforce #检查selinux状态
Enforcing #Enforcing 启动状态
[[email protected]-6 ~]# vim /etc/selinux/config #修改selinux配置文件
# disabled - No SELinux policy is loaded.
SELINUX=Disabled #修改为Disabled 并保存
# SELINUXTYPE= can take one of these two values:
[[email protected]-6 ~]# init 6 #重启后使关闭生效
[[email protected]-6 ~]# vim /etc/hosts
[[email protected]-6 ~]# df -h #df -h 查看挂载情况
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 20G 4.5G 15G 24% /
tmpfs 2.0G 0 2.0G 0% /dev/shm
/dev/sda1 194M 34M 150M 19% /boot
/dev/sr0 3.6G 3.6G 0 100% /mnt
[[email protected]-6 ~]# echo "/dev/sr0 /mnt iso9660 defaults 0 0" >> /etc/fstab #在/etc/fstab 配置文件添加echo ""的内容
[[email protected]-6 ~]# cat /etc/yum.repos.d/rhel-source.repo
[rhel6-source] #yum名称 随便取
name=rhel-source #yum名称2 随便取
baseurl=file:///mnt #yum源路径,/mnt 是光盘挂载点
enabled=1 #=1 表示启用此源
gpgcheck=0 #=0表示不检查
[[email protected]-6 ~]# yum clean all #清空yum缓存
[[email protected]-6 ~]# yum list #生成新缓存
- #配置网络源
[[email protected] ~]# yum list [[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo #阿里云的源 [[email protected] ~]# sed -i ‘s/$releasever/6.8/g‘ /etc/yum.repos.d/CentOS-Base.repo
- [[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo #163的源
- [[email protected] ~]# sed -i ‘s/$releasever/6.8/g‘ /etc/yum.repos.d/CentOS-Base.repo
- [[email protected] ~]# yum clean all
- [[email protected] ~]# yum list
[[email protected]-6 ~]# setup #setup进入图形配置界面
[[email protected]-6 ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0 #修改网卡配置文件
[[email protected]-6 ~]# vim /etc/sysconfig/network #RHEL6版本修改主机名
[[email protected] ~]# hostnamectl set-hostname rhel7-14.com #RHEL7版本修改主机名 后面接新主机名 [[email protected] ~]# hostnamectl status #RHEL7 查看主机名信息 Static hostname: rhel7-14.com Icon name: computer-vm Chassis: vm Machine ID: 5ed0276bb5324c97bdbcd0ec2bf59834 Boot ID: c5ea02318bbe4137a2558b4420a266a6 Virtualization: vmware Operating System: Red Hat Enterprise Linux Server 7.2 (Maipo) CPE OS Name: cpe:/o:redhat:enterprise_linux:7.2:GA:server Kernel: Linux 3.10.0-327.el7.x86_64 Architecture: x86-64
[[email protected]-6 ~]# rm /etc/udev/rules.d/70-persistent-net.rules #删除此网络缓存文件。里面有MAC记录
时间: 2024-10-16 07:18:41