centOS 7 简单设置(虚拟机)

Posted duzhaoqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centOS 7 简单设置(虚拟机)相关的知识,希望对你有一定的参考价值。

1.修改主机名

hostnamectl set-hostname 

2.ssh连接慢的问题解决

vim /etc/ssh/sshd_config
    UseDNS=no
    GSSAPIAuthentication 

重启sshd

systemctl restart sshd

 


3.安装系统要做的事情

关闭selinux

vim /etc/selinux/config 
    SELINUX=disabled

关闭防火墙

systemctl stop firewalld
systemctl disable firewalld

修改网卡名字

cd /etc/sysconfig/network-scripts/
mv ifcfg-enp0s3 ifcfg-eth0
mv ifcfg-enp0s8 ifcfg-eth1

并修改内容,定制静态IP

修改网卡配置文件中的 DEVICE=参数的关于 eth0 ,eth1

因 CentOS7 采用 grub2 引导,还需要对 grub2 进行修改,编辑/etc/default/grub 配置文件,在 GRUB_CMDLINE_LINUX这个参数后面加入 net.ifnames=0 biosdevname=0

[[email protected] network-scripts]# vi /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed ‘s, release .*$,,g‘ /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet net.ifnames=0 biosdevname=0"
GRUB_DISABLE_RECOVERY="true"

用 grub2-mkconfig 命令重新生成GRUB配置并更新内核

[[email protected] network-scripts]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.10.0-327.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-327.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-4dd6b54f74c94bff9e92c61d669fc195
Found initrd image: /boot/initramfs-0-rescue-4dd6b54f74c94bff9e92c61d669fc195.img
done

重启系统

reboot

 

以上是关于centOS 7 简单设置(虚拟机)的主要内容,如果未能解决你的问题,请参考以下文章

超简单五步实现Linux虚拟机CentOS 7系统Root密码忘记重置

kvm无人值守安装centos 7虚拟机

centos 7 虚拟机安装怎么设置硬盘

如何在VMware虚拟机中安装CentOS6.7系统(下篇)

VMware 虚拟机CentOS 7 网路连接配置 无eth0简单解决办法

虚拟机中CentOS 7下PHP环境配置