我最近从 Microsoft WIndows 8 迁移到 Ubuntu 12.04。我有 Dell Inspiron 3521,但无线或 wifi 无法使用。我尝试了其他驱动程序,但系统提示“专有驱动程序不可用或不支持”。请检查 var/log/jockey。请帮助我解决这个问题,因为我需要很多东西来解决这个问题。谢谢。
的输出为lspci
:
00:00.0 Host bridge: Intel Corporation Ivy Bridge DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Ivy Bridge Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation Panther Point USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation Panther Point MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 2 (rev c4)
00:1d.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Panther Point LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Panther Point 6 port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation Panther Point SMBus Controller (rev 04)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
02:00.0 Network controller: Broadcom Corporation Device 4365 (rev 01)
的输出为sudo lshw -c network
:
*-network
description: Ethernet interface
product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:01:00.0
logical name: eth0
version: 05
serial: e0:db:55:da:b4:2c
size: 100Mbit/s
capacity: 100Mbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8105e-1.fw ip=192.168.1.2 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:41 ioport:2000(size=256) memory:c0404000-c0404fff memory:c0400000-c0403fff
*-network UNCLAIMED
description: Network controller
product: Broadcom Corporation
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:02:00.0
version: 01
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:c0500000-c0507fff
的输出为rfkill list all
:
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
答案1
我发现了一些有趣的东西,Ubuntu 为您的笔记本电脑开发了 ISO,其中包含所有驱动程序。我的意思是,您可以随 Ubuntu 一起安装驱动程序。
http://www.ubuntu.com/certification/hardware/201208-11539/
Dell Inspiron 3521 便携式电脑已获得 Ubuntu 认证。请注意,对于预装的系统:
该系统在某些地区可用,制造商预装了 Ubuntu 的特殊映像。它利用了该系统的硬件功能,可能包含附加软件。购买系统时,您应该检查这是否是一个选项。
尽管 Canonical 和计算机制造商将尝试使用 Ubuntu 未来的标准版本对系统进行认证,但 Ubuntu 的标准映像可能根本无法在系统上运行,或者无法很好地运行。
是的,你可以在这里检查
http://www.ubuntu.com/certification/catalog/component/pci/8086:0887/
ISO 也有驱动程序。
答案2
我认为这会对你有所帮助。我喜欢使用 WICD,因为它是一个简单易用的网络管理器。它是 Ubuntu 中网络管理器的一个非常好的替代品,当网络管理器不起作用时,它似乎总是能工作。要安装它,只需打开终端。现在下载最新的 NetworkManager,以防 WICD 不起作用时你需要重新安装它
sudo apt-get install -d --reinstall network-manager network-manager-gnome
然后安装它
sudo apt-get install wicd-gtk
现在您需要卸载 NetworkManager:
sudo apt-get remove --purge network-manager-gnome network-manager
现在您可以在菜单中找到 WICD 启动 WICD,找到要使用的网络并输入所需信息、密码、加密等,然后选择自动连接到此网络。一切就绪!
WICD 可能也可以在 Ubuntu 更新管理器中使用,因此您可以先在那里查看,但重要的是完全卸载网络管理器以防止冲突!