install-centos
按界面导向即可。
配置
启动网络
sudo vi /etc/sysconfig/network-script/ifcfg-eth0
#ONBOOT, no 改为 yes
#ONBOOT=yes
#启动网卡
service network start
如果出现 is not in the sudoers file
出问题可以。把当前用户加入到 wheel 用户组。
usermod -G wheel your_user_name
使用 163 yum 镜像
首先备份/etc/yum.repos.d/CentOS-Base.repo
cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.backup
#通过 curl 下载
curl -O http://mirrors.163.com/.help/CentOS7-Base-163.repo
#运行以下命令生成缓存
yum clean all
yum makecache
使用 yum 安装软件
#最小安装 ifconfig 都没有
#用 yum provides ifconfig 查看 ifconfig 在那个包。
sudo yum install net-tools
#wget
sudo yum install wget
修改 hostname
hostnamectl set-hostname <your_hostname>
安装 ntp
sudo yum install ntp
#开启动 ntp
systemctl enable ntpd.service
systemctl start ntpd.service
#timedate 使用 ntp
timedatectl set-ntp yes
远程 sudo
sudo chmod u+w /etc/sudoers
sudo vi /etc/sudoers
#注释requiretty
#Defaults requiretty
sudo chmod u-w /etc/sudoers
安装 java
sudo rpm -ivh jdk-8u74-linux-x64.rpm