日期:2014-05-16 浏览次数:20815 次
1.安装增强功能包: 光驱选择文件:C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso #mkdir /mnt/cdrom #mount /dev/cdrom /mnt/cdrom #cd /mnt/cdrom #sh ./VBoxLinuxAdditions.run 执行出错的话(The headers for the current running kernel were not found. ),考虑先更新kernel: yum -y update kernel yum -y install kernel-devel kernel-headers dkms gcc gcc-c++ reboot 再安装 2. mkdir /mnt/share #share 是你决定在linux中的目录名 mount -t vboxsf youname /mnt/share (youname是你给共享文件夹的命名)#就是数据空间的名称啦 再在输入: cd /mnt/share 其它网络命令: ifconfig ifconfig eth0 up/down service network restart 环境变量设置: export a=b vi /etc/profile source /etc/profile #让修改生效 unset a 进程查看: # ps -ef |grep weinre [b]window 给虚拟机linux添加2个网卡:[/b] 一个NAT:保证虚拟机可以访问外网; 一个host-only:保证主机可以访问虚拟机(不过其它主机访问不到。) 直接给linux设置网络代理: export http_proxy http://proxy.company.com:8080 export https_proxy http://proxy.company.com:8080