一、啓動、關閉、重置服務 (rhel7 爲 systemctl)
linux
[root@rhel-6 ~]# service atd status #關閉atd服務 atd 已停[root@rhel-6 ~]# service atd start #啓動atd服務正在啓動 atd: [肯定][root@rhel-6 ~]# service atd stop #中止atd服務中止 atd: [肯定][root@rhel-6 ~]# service atd restart #重啓atd服務中止 atd: [失敗]正在啓動 atd: [肯定][root@rhel-6 ~]# service atd reload #重置atd服務 中止 atd: [肯定]正在啓動 atd: [肯定]
[root@rhel-6 ~]# chkconfig atd on #設置atd服務開機自啓[root@rhel-6 ~]# chkconfig --list atd #查看atd服務各啓動級別開機啓動狀況atd 0:關閉 1:關閉 2:啓用 3:啓用 4:啓用 5:啓用 6:關閉[root@rhel-6 ~]# chkconfig atd off #設置atd服務不開機自啓[root@rhel-6 ~]# chkconfig --list atd #查看atd服務各啓動級別開機啓動狀況atd 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉
三、清空iptables (關閉防火牆)
windows
[root@rhel-6 ~]# iptables -F #清空防火牆配置[root@rhel-6 ~]# service iptables save #保存防火牆配置iptables:將防火牆規則保存到 /etc/sysconfig/iptables: [肯定][root@rhel-6 ~]# chkconfig iptables off #關閉防火牆自啓[root@rhel-6 ~]# chkconfig --list iptables #檢查自啓狀況iptables 0:關閉 1:關閉 2:關閉 3:關閉 4:關閉 5:關閉 6:關閉
[root@rhel-6 ~]# getenforce #檢查selinux狀態Enforcing #Enforcing 啓動狀態[root@rhel-6 ~]# vim /etc/selinux/config #修改selinux配置文件# disabled - No SELinux policy is loaded.SELINUX=Disabled #修改成Disabled 並保存# SELINUXTYPE= can take one of these two values:[root@rhel-6 ~]# init 6 #重啓後使關閉生效
五、主機名配置
網絡
[root@rhel-6 ~]# vim /etc/hosts
六、光盤自動掛載
阿里雲
[root@rhel-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[root@rhel-6 ~]# echo "/dev/sr0 /mnt iso9660 defaults 0 0" >> /etc/fstab #在/etc/fstab 配置文件添加echo ""的內容
七、YUM本地源和網絡源
url
[root@rhel-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表示不檢查[root@rhel-6 ~]# yum clean all #清空yum緩存[root@rhel-6 ~]# yum list #生成新緩存
- #配置網絡源
[root@xuegod63 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo #163的源 [root@xuegod63 ~]# sed -i 's/$releasever/6.8/g' /etc/yum.repos.d/CentOS-Base.repo [root@xuegod63 ~]# yum clean all [root@xuegod63 ~]# yum list
[root@xuegod63 ~]# yum list[root@xuegod63 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo #阿里雲的源[root@xuegod63 ~]# sed -i 's/$releasever/6.8/g' /etc/yum.repos.d/CentOS-Base.repo
八、網絡配置
spa
[root@rhel-6 ~]# setup #setup進入圖形配置界面[root@rhel-6 ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0 #修改網卡配置文件
九、克隆後工做--修改主機名
rest
[root@rhel-6 ~]# vim /etc/sysconfig/network #RHEL6版本修改主機名[root@rhel7-14 ~]# hostnamectl set-hostname rhel7-14.com #RHEL7版本修改主機名 後面接新主機名 [root@rhel7-14 ~]# 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[root@rhel-6 ~]# rm /etc/udev/rules.d/70-persistent-net.rules #刪除此網絡緩存文件。裏面有MAC記錄