首頁 > 軟體

VirtualBox虛擬機器Ubuntu下如何設定無線上網

2020-06-16 17:38:02

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 無線上網設定  http://www.linuxidc.com/Linux/2011-12/48704.htm


IT145.com E-mail:sddin#qq.com