在 virtualbox 中使用 CentOs 6 & CentOS 7

1. 安装 增强功能 virtualbox Additions工具包

1.1. 安装步骤

  • “增强功能”要编译安装,so先安装 build essential : yum groupinstall "Development Tools"
  • 菜单: 设备 》安装增强功能,会挂载安装光盘
  • 执行光盘下的 /media/VBOXADDITIONS_5.1.2_108956/VBoxLinuxAdditions.run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
yum groupinstall "Development Tools"
yum -y install kernel-devel kernel-headers binutils
yum update kernel

# 注意 `uname -r` 不一定是正确路径名, 直接去 /usr/src/kernels 看看
KERN_DIR=/usr/src/kernels/`uname -r`

# 检查下 kernel-devel 目录是否存在
ll $KERN_DIR
# 如果不存在,重新检查下
ll /usr/src/kernels/

export KERN_DIR

cd /media/VirtualBoxGuestAdditions
./VBoxLinuxAdditions.run


# 安装过程报错:vboxadd + "modprobe vboxguest failed"
# 不用管,重启之后再执行 ./VBoxLinuxAdditions.run
  • 正确安装的提示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[root@localhost VBOXADDITIONS_5.1.18_114002]# ./VBoxLinuxAdditions.run 
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.1.18 Guest Additions for Linux...........
VirtualBox Guest Additions installer
Removing installed version 5.1.18 of VirtualBox Guest Additions...
vboxadd.sh: Stopping VirtualBox Additions.
Copying additional installer modules ...
Installing additional modules ...
vboxadd.sh: Building Guest Additions kernel modules.
Failed to set up service vboxadd, please check the log file
/var/log/VBoxGuestAdditions.log for details.

[root@localhost VBOXADDITIONS_5.1.18_114002]# rpm -ql kernel-devel-2.6.32-696.el6.i686 | less

[root@localhost VBOXADDITIONS_5.1.18_114002]# export KERN_DIR

[root@localhost VBOXADDITIONS_5.1.18_114002]# ./VBoxLinuxAdditions.run 
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.1.18 Guest Additions for Linux...........
VirtualBox Guest Additions installer
Removing installed version 5.1.18 of VirtualBox Guest Additions...
vboxadd.sh: Stopping VirtualBox Additions.
Copying additional installer modules ...
Installing additional modules ...
vboxadd.sh: Building Guest Additions kernel modules.
vboxadd.sh: Starting the VirtualBox Guest Additions.

You may need to restart the Window System (or just restart the guest system)
to enable the Guest Additions.

1.2. Trouble shooting

1.2.1. 日志位置

/var/log/VBoxGuestAdditions/
/var/log/vboxadd-install.log

1.2.2. yum 无法使用:Anthor app is currently holding the yum lock
  • 错误关键字
    1
    2
    Existing lock /var/run/yum.pid
    Anthor app is currently holding the yum lock
    
  • 解决办法

    这个问题在 CentOS7 会出现,由 PackageKit 引起。

    1
    2
    3
    4
    systemctl stop packagekit
    systemctl disable packagekit
    
    yum remove PackageKit
    
1.2.3. 问题:找不到 kernel source

不知道为啥找不到,按照错误日志的提示,设置 KERN_DIR 变量,告诉它哪儿有

编辑 /etc/profile (见如下代码块)后,重启。

1
2
3
## ADD KERN_DIR to help vboxadd find kernel source
KERN_DIR=/usr/src/kernels/2.6.32-642.6.1.el6.i686
export KERN_DIR

重新执行 VBoxLinuxAdditions.run

2. 设置 host 和 vm 之间剪贴板共享

设置 》常规 》 高级 》 共享粘贴板:双向

3. 设置网卡

3.1. CentOS 7 启动后网络默认关闭

  • 手动打开
    通过图形界面 Applications - System Tools - Network 打开 Network Manager

  • 设置开机自动打开

    1. 修改配置文件
      1
      2
       vim /etc/sysconfig/network-scripts/ifcfg-enp0s3
       # enp0s3 是通过  ifconfig -a 获得虚拟网卡接口的名称
      
    2. 改为 ONBOOT=yes
    3. 重启

3.2. 双网卡模式

即能访问网络、又能固定IP连接VM 的sshd。需要设置2个网卡。

3.2.1. VirutalBox 启用2个网卡 (设置 - 网络)
  • 【网卡1】网络地址转换NAT:VM通过该网卡访问外网。
  • 【网卡2】仅主机(host-only)网络 : 设置固定IP,来进行ssh连接。
    1. 界面名称:VirtualBox Host-Only Ehternet Adapter
    2. 控制芯片:Intel PRO/1000 MT 桌面(82540EM)
    3. 混杂模式:全部允许
    4. MAC 地址,刷新一下
3.2.2. CentOS中设置

图形界面方式进入CentOS。ifconfig -a 查看对应的网卡名称和信息。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[root@localhost ~]# ifconfig -a
eth1      Link encap:Ethernet  HWaddr 08:00:27:04:40:74  
          inet addr:192.168.56.102  Bcast:192.168.56.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe04:4074/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:80 errors:0 dropped:0 overruns:0 frame:0
          TX packets:86 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:26530 (25.9 KiB)  TX bytes:16830 (16.4 KiB)

eth2      Link encap:Ethernet  HWaddr 08:00:27:48:07:46  
          inet addr:10.0.3.15  Bcast:10.0.3.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe48:746/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:322 errors:0 dropped:0 overruns:0 frame:0
          TX packets:356 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:147746 (144.2 KiB)  TX bytes:36617 (35.7 KiB)
在 host-only 网卡上 设置固定IP
  1. 进入图形界面
  2. 系统菜单: System > Preferences > Network Connections
  3. 对 host-only 网卡例如 Auto eth1 进行修改,选择 Edit…
  4. 选择tab页:IPv4 Settings
  5. Method: Manual
  6. 添加 Address
    • Address : 192.168.56.101
    • Netmask : 255.255.255.0
    • Geteway : 0.0.0.0
    • 注意:网关必须写 0.0.0.0 。写 host地址(例如,196.168.56.1 )时,ssh客户端连上VM会很慢,VM也可能使用这个网卡访问外网,导致不能上网。
  7. 保存后,重启。

4. ssh 连接很慢

参考: http://ask.xmodulo.com/fix-slow-ssh-login-issue-linux.html

1
2
3
4
5
6
7
vi /etc/ssh/sshd_config

# To disable GSSAPI authentication on an SSH server
GSSAPIAuthentication no

# add this line
UseDNS no

5. CentOS - 7

5.1. 设置启动模式(runlevel)

CentOS7 不在使用 inittab ,改为 systemd

1
2
3
4
5
6
7
8
9
10
11
12
# To view current default target, run:
systemctl get-default

# multi-user.target: analogous to runlevel 3
# graphical.target: analogous to runlevel 5

# 图形界面
systemctl set-default graphical.target

# 多用户文字界面
systemctl set-default multi-user.target

5.2. systemctl 启动/关闭服务

1
2
3
4
systemctl status sshd.service
systemctl start sshd.service
systemctl stop sshd.service
systemctl restart sshd.service

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值