感谢支持
我们一直在努力

VirtualBox虚拟机Ubuntu下如何设置无线上网

VirtualBox虚拟机Ubuntu下如何设置无线上网

本机使用无线网,未插入网线

查看无线上网网卡

设置virtualbox网络>网卡

进入虚拟机
$cd /etc/network/
$ ls
if-down.d  if-post-down.d  if-pre-up.d  if-up.d  interfaces  interfaces.d
$ vim interfaces
interfaces文件内容如下
source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

auto enp0s3
iface enp0s3 inet dhcp
网卡是enp0s3或eth0无所谓,enp0s3是Ubuntu16.04的新属性。dhcp是动态获取IP地址
查看无线网所使用网段、网关等信息
打开物理机的CMD命令行,获取IP信息
ipconfig/all

红色勾勒区域需要写入interfaces文件
将interfaces文件修改如下
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp0s3
iface enp0s3 inet static
address 192.168.188.101
netmask 255.0.0.0
network 192.168.188.0
gateway 192.168.188.253
dns-nameservers 8.8.8.8
dns-nameservers 114.114.114.114
dns-nameservers 192.168.188.253
dhcp换成static,动态获取IP换成静态获取;网关可以设置多个;其它一一对应填写即可,照葫芦画瓢即可。
完成

Virtualbox虚拟机Ubuntu下如何设置无线上网

Virtualbox 虚拟机 Ubuntu 无线上网设置  http://www.linuxidc.com/Linux/2011-12/48704.htm

更多Ubuntu相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2

本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-07/133301.htm

赞(0) 打赏
转载请注明出处:服务器评测 » VirtualBox虚拟机Ubuntu下如何设置无线上网
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏