最近、セキュアブートに問題があり、Live CD/USBを起動できませんでしたが、セキュアブートを無効にした後、「Ubuntuを試す」ことができました。私の現在の問題は、Windows 8から行っているUbuntu 12.04または12.10 Live CD/USBからWIFIまたはLANにアクセスできないことです。また、ワイヤレスボタンはワイヤレスLEDをオン/オフできますが、見つかりません。利用可能なWIFI。 Toshiba qosmio x870を使用して、UbuntuでWIFIとLANの両方を動作させるにはどうすればよいですか?
更新:
Lspciの出力は次のとおりです。
ubuntu @ ubuntu:〜$ lspci
00:00.0ホストブリッジ:Intel Corporation 3rd Gen CoreプロセッサーDRAM Controller(rev 09)
00:01.0 PCIブリッジ:Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port(rev 09)
00:02.0 VGA互換コントローラー:Intel Corporation 3rd Gen CoreプロセッサーGraphics Controller(rev 09)
00:14.0 USBコントローラー:Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller(rev 04)
00:16.0通信コントローラー:Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller#1(rev 04)
00:1a.0 USBコントローラー:Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller#2(rev 04)
00:1b.0オーディオデバイス:Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller(rev 04)
00:1c.0 PCIブリッジ:Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1(rev c4)
00:1c.1 PCIブリッジ:Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2(rev c4)
00:1c.4 PCIブリッジ:Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 5(rev c4)
00:1d.0 USBコントローラー:Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller#1(rev 04)
00:1f.0 ISAブリッジ:Intel Corporation HM76 ExpressチップセットLPCコントローラー(rev 04)
00:1f.2 SATAコントローラー: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互換コントローラー:NVIDIA Corporation Device 1213(rev a1)
07:00.0イーサネットコントローラー:Atheros Communications Inc. AR8161 Gigabit Ethernet(rev 10)
08:00.0ネットワークコントローラー:Realtek Semiconductor Co.、Ltd. Device 8723
09:00.0未割り当てクラス[ff00]:Realtek Semiconductor Co.、Ltd. RTS5229 PCI Express Card Reader(rev 01)
このリンクで提供されているソリューション 東芝用Realtekワイヤレスモジュールのドライバー by @ izx ワイヤレスの問題を解決しました。これで自宅のワイヤレスに接続できるようになり、Ubuntu Live CD/USBから他のワイヤレスを見ることができます。
必要なのは、ターミナルを開いて、次のように一度に1行ずつ入力/貼り付けするだけです。
須藤apt-getアップデート
Sudo apt-get install 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 | tar -xz
cd rtl_92ce_92se_92de_8723ae_linux_mac80211_0006.0514.2012
make
Sudo make install
須藤modprobe rtl8723e
更新:Atheros AR8161(LAN)を機能させるために、次のことを行いました。
apt-get update
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 | tar -xz
cd rtl_92ce_92se_92de_8723ae_linux_mac80211_0007.0809.2012
make
Sudo make install
須藤modprobe rtl8723e
動作しない場合は、rtlwifiを削除する必要があります。これは、下位のカーネルに付属しているバージョンが、新しいrtl8723eがコンパイルされているバージョンと異なるためです。そうすれば、新しいものが機能します!
したがって、以下を実行します。
rmmod rtl8192seおよび以前のカーネルでコンパイルされた他のrtl。
rmmod rtlwifi
最後に、実行
須藤modprobe rtl8723e
ワイヤレスが起動し、周囲のすべてのワイヤレスを見つけられるはずです。
OK、最初の答え:)あなたはAtheros 8161を持っています-以下を試してください! (元の投稿は http://ubuntuforums.org/showthread.php?t=2088179 )
(x870内のUSBスティックとUbuntu CDにドライバーを取得するには、オンラインマシンが必要です)
インターネットが稼働しているマシンで:
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
お役に立てれば。