centos6系统初始化
Posted fcing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6系统初始化相关的知识,希望对你有一定的参考价值。
系统:centos6
作用:配置ip、yum源、ntp、关闭selinux、iptables
#!/bin/bash # configure network cat >/etc/sysconfig/network-scripts/ifcfg-eth0<<EOF DEVICE=eth0 NAME="eth0" TYPE=Ethernet ONBOOT=yes BOOTPROTO=static IPADDR=192.168.126.10 PREFIX=24 GATEWAY=192.168.126.2 DNS1=114.114.114.114 EOF # configure yum [ -e /yum ]|| mkdir /yum [ -e /dev/cdrom ]&& mount /dev/cdrom /yum echo "/dev/cdrom /yum iso9660 defaults 0 0" >>/etc/fstab mkdir /etc/yum.repos.d/bak mv /etc/yum.repos.d/Cen* /etc/yum.repos.d/bak/ cat > /etc/yum.repos.d/local.repo <<EOF [local] name=local baseurl=file:///yum enabled=1 gpgcheck=0 EOF yum clean all yum makecache yum -y install lsof wget sysstat vim lftp man ntp xorg-x11-xauth # configure ssh sed -i ‘s/^GSSAPIAuthentication yes/GSSAPIAuthentication no/‘ /etc/ssh/sshd_config sed -i ‘/UseDNS/cUseDNS no‘ /etc/ssh/sshd_config # configure iptables selinux sed -i ‘/^SELINUX=/cSELINUX=disabled‘ /etc/selinux/config chkconfig iptables off chkconfig ip6tables off # configure ntp sed -i ‘s/^server/#server/‘ /etc/ntp.conf echo "server time1.aliyun.com iburst" >> /etc/ntp.conf echo "server time2.aliyun.com iburst" >> /etc/ntp.conf chkconfig ntpd on reboot
以上是关于centos6系统初始化的主要内容,如果未能解决你的问题,请参考以下文章
LINUX PID 1和SYSTEMD PID 0 是内核的一部分,主要用于内进换页,内核初始化的最后一步就是启动 init 进程。这个进程是系统的第一个进程,PID 为 1,又叫超级进程(代码片段