当前位置:Gxlcms > mysql > 用VirtualBox构建MySQL测试环境的笔记

用VirtualBox构建MySQL测试环境的笔记

时间:2021-07-01 10:21:17 帮助过:31人阅读

网络环境:

宿主机:Win7
VirtualBox 4.1.4 + Ubuntu 11.10 server 64bit
宿主机使用网线的时候,客户机在Bridged Adapter模式下,使用Atheros AR8131 PCI-E Gigabit Ethernet Controller上网没问题。
宿主机使用无线的时候,客户机在Bridged Adapter模式下,使用可选项里唯一一个WIFI选项,Microsoft Virtual Wifi Miniport Adapter也无法上网,故弃之。

安装时候server用dhcp来动态获取IP地址。


server环境:

代码如下:

sudo apt-get install tasksel
sudo tasksel install openssh-server


设定固定IP:

代码如下:

sudo vi /etc/network/interfaces
iface eth0 inet dhcp

iface eth0 inet static
address 192.168.1.78
netmask 255.255.255.0
gateway 192.168.1.1

sudo vi /etc/resolv.conf
nameserver 192.168.1.1

sudo /etc/init.d/networking restart

您可能感兴趣的文章:

  • virtualbox中ubuntu和windows共享文件夹设置教程
  • VirtualBox虚拟机使用技巧
  • VirtualBox 虚拟机中安装 Ubuntu 12.04(图文教程)
  • virtualbox不能安装64位系统的解决方法
  • 虚拟机VirtualBox中centos6.5网络设置图文详解
  • virtualbox虚拟机网络设置原理解析
  • VirtualBox详细安装使用教程(图文)
  • VirtualBox 共享文件夹权限设置及使用方法

人气教程排行