普通情况下最小化安装就可以,如需要安装Oracle、WebLogic之类的,则选择“GNOME桌面”,否则很难安装。
默认网卡是未激活的。
修改文件/etc/sysconfig/network-scripts/ifcfg-ens33
(其中ens33
是随机的,但都是以en
开头),将ONBOOT=no
,改为ONBOOT=yes
。
# 修改此项即可上网
#ONBOOT=no
ONBOOT=yes
DNS1=202.101.224.68
DNS2=202.101.224.69
# 如需指定IP还需修改或增加以下配置,并将虚拟机的网络改为桥接方式。
#BOOTPROTO=dhcp
BOOTPROTO=static
GATEWAY=192.168.0.1
IPADDR=192.168.0.240
NETMASK=255.255.255.0
然后运行systemctl restart network
重启网卡,就可以上网了。可以使用ping
命令检查。
还可以使用ip addr
查看网卡配置情况。由于是最小化安装,此时ifconfig
命令无法使用。
使用163的yum源。http://mirrors.163.com/
最小化安装没有wget
命令,使用curl
命令代替。
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
#wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
yum clean all
yum makecache
# 下载软件
yum install wget
# 编辑器
yum install vim
# 网络工具,如ifconfig
yum install net-tools
查看SELinux是否开启:
getenforce
关闭SELinux:
打开SELinux配置文件
vim /etc/selinux/config
修改以下内容,该配置文件会在下次重启时生效
SELINUX=disabled
临时关闭SELinux
setenforce 0
设置可以同时打开的文件数量。如果这个值太小的话,会影响服务器性能,比如打开一个数据库连接就需要打开一个文件。
Centos7 默认值为1024。腾讯云CentOS7服务器默认设置为100001。
执行
ulimit -a
其中open files (-n) 1024就是文件句柄最大值。
执行
vi /etc/security/limits.conf
修改
* - nofile 100001
或
@users soft nofile 100001
@users hard nofile 100002
@root soft nofile 100001
@root hard nofile 100002
修改后重启系统,查看修改是否生效。
CentOS7 启动时,会出现一个选择界面,第一个选项是正常启动,第二个选项是安全模式启动,默认等待时间为5秒。很浪费时间,可以改成1秒。
vi /boot/grub2/grub.cfg
将 5 改成 1
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
# 此处将 5 改成 1
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
# 此处将 5 改成 1
set timeout=5
fi
将系统更新到最新版本。
yum update
现在虚拟机菜单上点击虚拟机 - 重新安装VMware Tools
,并设置好共享目录。
mkdir /mnt/cdrom
mount -t iso9660 /dev/cdrom /mnt/cdrom
cd /mnt/cdrom
tar -zxvf VMwareTools-*.tar.gz -C /tmp
cd /tmp/vmware-tools-distrib
umount /mnt/cdrom
rm -rf /mnt/cdrom
yum update kernel
yum install perl gcc kernel-devel
./vmware-install.pl
一直默认按回车即可。完成后可进入共享目录。
cd /mnt/hgfs/
Ctrl + Alt + F1
到 Ctrl + Alt + F6
可以切换不同终端。
重启:shutdwon -r now
或 reboot
关机:shutdwon -h now
或 halt