使用 Toshiba qosmio x870 的 Ubuntu 12.04 或 12.10 Live CD/USB 上没有 WIFI 或 LAN

使用 Toshiba qosmio x870 的 Ubuntu 12.04 或 12.10 Live CD/USB 上没有 WIFI 或 LAN

我最近遇到了安全启动问题,无法启动 Live CD/USB,但在禁用安全启动后,我能够“尝试 UBUNTU”。我目前的问题是,我无法从 Ubuntu 12.04 或 12.10 Live CD/USB 访问 WIFI 或 LAN,而我可以从 Windows 8 访问。此外,无线按钮可以打开和关闭无线 LED,但找不到可用的 WIFI。请问我应该怎么做才能使用 Toshiba qosmio x870 在 Ubuntu 上同时使用 WIFI 和 LAN?

更新:

以下是 的输出lspci

ubuntu@ubuntu:~$ lspci
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1c.4 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 5 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation HM76 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
01:00.0 VGA compatible controller: NVIDIA Corporation Device 1213 (rev a1)
07:00.0 Ethernet controller: Atheros Communications Inc. AR8161 Gigabit Ethernet (rev 10)
08:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device 8723
09:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)

答案1

此链接提供的解决方案适用于 Toshiba 的 Realtek 无线模块驱动程序经过 @韋萊解决了无线问题。现在我可以连接到家里的无线网络,还可以从 Ubuntu Live CD/USB 看到周围的其他无线网络。

您需要做的就是打开一个终端,然后一次输入/粘贴以下内容:

sudo apt-get 更新

sudo apt-get 安装 build-essential linux-headers-generic linux-headers-uname -r

wget -O-http://dl.dropbox.com/u/57056576/DRIVERS/REALTEK/rtl_92ce_92se_92de_8723ae_linux_mac80211_0006.0514.2012.tar.gz| 焦油-xz

光盘rtl_92ce_92se_92de_8723ae_linux_mac80211_0006.0514.2012

制作

安装

sudo modprobe rtl8723e

更新:为了使我的 Atheros AR8161 (LAN) 正常工作,我执行以下操作:

apt-get 更新
apt-get 安装 linux-generic-lts-quantal

更新内核后,我的 WIFI 停止工作了。下面是我让它启动并运行的方法。

对于内核 3.5 及以上版本,请使用较新的驱动程序版本:

wget -O-http://www.liteon.com/UserFiles/driver/Module/Network/WLAN/RTL/rtl_92ce_92se_92de_8723ae_linux_mac80211_0007.0809.2012.tar.gz| 焦油-xz

复制代码

制作

安装

sudo modprobe rtl8723e

如果不起作用,则需要删除 rtlwifi,因为较低内核附带的版本与较新的 rtl8723e 编译所针对的版本不同。这样,新的版本就可以正常工作!

因此,请执行以下操作:

rmmod rtl8192se 以及使用以前的内核编译的任何其他 rtl。

rmmod rtlwifi

最后执行

sudo modprobe rtl8723e

你的无线网络应该已经启动,并且可以搜索到周围的所有无线网络。

答案2

好的,第一个答案:)您有一台 Atheros 8161 - 请尝试以下操作!(原始帖子是http://ubuntuforums.org/showthread.php?t=2088179

(您需要一台在线机器来将驱动程序放到 USB 记忆棒上,并将 ubuntu CD 放到 x870 内)

在有互联网的工作机器上:

wget -O- http://linuxwireless.org/download/compat-wireless-2.6/compat-wireless-2012-07-03-pc.tar.bz2或者直接用浏览器获取文件。

然后将 compat-wireless*.tar.bz2 复制到 USB 驱动器

将安装 CD 和 USB 插入需要驱动程序的机器并在终端中运行(使用拇指驱动器代替 USBTHUMB):

sudo apt-get install build-essential

cd /media/USBTHUMB/

tar -xvf compat-wireless-2012-07-03-pc.tar.bz2

cd compat-wireless-2012-07-03-pc

./scripts/driver-select alx

make

sudo make install

希望这可以帮助。

相关内容