联网:修订间差异
来自Ubuntu中文
跳到导航跳到搜索
第59行: | 第59行: | ||
用来自动获取IP地址、网关之类信息的工具 | 用来自动获取IP地址、网关之类信息的工具 | ||
<pre>sudo dhclient 网卡名</pre> | <pre>sudo dhclient 网卡名</pre> | ||
===查看网卡设备信息=== | |||
查看网卡生产商,型号。 | |||
<pre>lspci</pre> | |||
举例来说,最底部,这样的格式,这里第一行是Realtek的RTL8111/8168B有线网卡,第二行是Atheros的AR9285无线网卡。 | |||
<pre>03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01) | |||
04:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01) | |||
</pre> | |||
==有线网络== | ==有线网络== |
2010年8月1日 (日) 11:55的版本
基础知识
Ubuntu 中,通常有线网卡为eth0,无线网卡则为wlan0,后续增加的以此类推(可能某些无线网卡型号命名为eth1,而非wlan0)。
DNS解析
root@ubuntu:~# cat /etc/resolv.conf nameserver 8.8.8.8 nameserver 8.8.4.4 domain domain search domain
8.8.8.8 8.8.4.4
这是 Google 公共 DNS。
hosts
root@ubuntu:~# cat /etc/hosts 127.0.0.1 localhost 127.0.1.1 ubuntu.ubuntu-domain ubuntu 192.168.0.251 web1.example.com web1 192.168.0.252 web2.example.com web2 # The following lines are desirable for IPv6 capable hosts ::1 localhost ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts
用于本地解析域名,比前面那个优先级更高。
ifconfig简介
ifconfig 是一个用来查看、配置、启用或禁用网络接口的工具,这个工具极为常用的(说的是喜欢动命令的人……)。
查看系统网卡信息
ifconfig
激活/禁用网卡
激活网卡
sudo ifconfig 网卡设备名 up
查看网卡信息
ifconfig 网卡设备名
启用/禁用网络
sudo service networking start
iwconfig
用于查看无线连接情况
qii@ubuntu:~$ iwconfig lo no wireless extensions. eth0 no wireless extensions. wlan0 IEEE 802.11bgn ESSID:off/any Mode:Managed Access Point: Not-Associated Tx-Power=20 dBm Retry long limit:7 RTS thr:off Fragment thr:off Power Management:off
dhclient
用来自动获取IP地址、网关之类信息的工具
sudo dhclient 网卡名
查看网卡设备信息
查看网卡生产商,型号。
lspci
举例来说,最底部,这样的格式,这里第一行是Realtek的RTL8111/8168B有线网卡,第二行是Atheros的AR9285无线网卡。
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01) 04:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
有线网络
局域网
如果电脑连接到 Modern,Modern自动拨号,那只需要(假定你第一块网卡名是eth0)
sudo ifconfig eth0 up #激活网卡
sudo dhclient eth0 #自动分配地址
其实这部分桌面用户不怎么需要,这是最简单的联网功能,随后提到的工具点点鼠标都可以完成。
pppoeconf
命令行工具,只适用于ADSL拨号。
sudo pppoeconf
通吃有线、无线
Network Manager(GNOME)
Ubuntu 预设的网络管理工具。
sudo apt-get install network-manager-gnome
随后只要将下列命令放到自动启动便可,--sm-disable option 选项用于防止多个nm-applet同时运行。
nm-applet --sm-disable
Wicd
sudo apt-get install wicd
wicd-gtk
只吃无线网络
WiFi Rader
sudo apt-get install wifi-radar
sudo wifi-radar