Arch-Linux

VirtualBox 上的 Arch Linux VirtualBox 上的 Internet 連接問題

  • January 13, 2019

我已經在 VirtualBox 上成功安裝了 Arch Linux,但網際網路無法在其中執行。安裝過程中網際網路連接沒有問題,但是當我從虛擬硬碟驅動器(使用 syslinux 引導載入程序)啟動時,我無法連接到網際網路。

當我從安裝 CD 啟動並掛載根分區,然後使用從# arch-chrootInternet 安裝的系統執行良好時,根本不做任何事情,並# ip link顯示兩個界面loeth0

當我嘗試使用# systemctl enable dhcpcd@enp3s0.service命令時,它會給出錯誤“操作失敗:沒有這樣的文件或目錄,但是# ip link說有兩個介面loenp3s0.

我想知道為什麼同一個乙太網埠有兩個不同的名稱?更重要的是我該如何解決這個問題?

在 Virtualbox 上以訪客身份安裝 Archlinux

2013 年 3 月 15 日晚上 11:54

本質上,您可以按照本指南進行操作,但還需要採取幾個額外的步驟。 https://wiki.archlinux.org/index.php/Installation_guide#Installation

修復網路:

/usr/sbin/dhcpcd enp0s3 to check that you can load the dhcp client.
ln -s '/usr/lib/systemd/system/dhcpcd@.service' '/etc/systemd/system/multi-user.target.wants/dhcpcd@enp0s3.service'
change the references to eth0 in /etc/ifplugd/ifplugd.conf
create a profile for enp0s3 in /etc/network.d/interfaces by copying the example (this seems to be overwritten by the netcfg-auto-wired).
start and enable the auto service with systemctl

請記住,如果沒有網路,您將無法從網路獲取包:(

相關連結

初學者指南:https
://wiki.archlinux.org/index.php/Beginners%27_guide#Installation 修復網路:https ://bbs.archlinux.org/viewtopic.php?pid=1243601

引用自:https://unix.stackexchange.com/questions/88081