我安装了基本的命令行系统,但在安装时没有配置网络。也就是说,我已从Lubuntu 14.04 备用 CD,按下F4并选择‘安装命令行系统’。
现在我只配置了环回接口:
$ ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:50121 errors:0 dropped:0 overruns:0 frame:0
TX packets:50121 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:4381349 (4.3 MB) TX bytes:4381349 (4.3 MB)
我知道如果我使用图形安装程序安装默认的 Ubuntu 映像,我的硬件(eth0
和接口)就可以正常工作。wlan0
安装基本命令行系统后,如何配置有线和无线网络接口?
答案1
cat /proc/net/dev
获取可用接口列表(很可能会有eth0
和wlan0
)。然后ifup
通过 访问接口。接口启动后,sudo ifconfig eth0 up
您可能需要运行以获取 IP 地址。sudo dhclient eth0
对于无线接口,之后ifup
您将需要网络管理器来配置它以连接到给定的 AP。
此外,如果需要静态 IP,那么我通常使用这些命令来设置接口:
sudo ifconfig eth0 192.168.0.118
sudo gedit /etc/resolv.conf
nameserver 192.168.0.1
# 然后在该文件中添加一行
sudo route add default gw 192.168.0.1
答案2
你需要读一下这个:https://wiki.debian.org/NetworkConfiguration
它可以帮助您了解需要做什么。