华硕 X550C 无线网络

华硕 X550C 无线网络

类似的问题还有很多,但这个问题有点不同。我没有phy0:无线局域网

Ubuntu:14.04.1

sudo rfkill 列出全部

0: asus-wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
1: asus-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no

当我插入 TP-Link 的外部 wifi usb 适配器时,我也得到了

2: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

我的 wifi 可以正常工作。但是我不知道为什么没有这个适配器我的 wifi 就不能正常工作。

修改

Module                  Size  Used by
ctr                    13049  0 
ccm                    17773  0 
arc4                   12608  0 
ath9k_htc              95963  0 
ath9k_common           13551  1 ath9k_htc
ath9k_hw              453856  2 ath9k_common,ath9k_htc
ath                    28698  3 ath9k_common,ath9k_htc,ath9k_hw
mac80211              630653  1 ath9k_htc
cfg80211              484040  3 ath,mac80211,ath9k_htc
bnep                   19624  2 
rfcomm                 69160  0 
bluetooth             391136  10 bnep,rfcomm
snd_hda_codec_hdmi     46368  1 
snd_hda_codec_realtek    65580  1 
uvcvideo               80885  0 
videobuf2_vmalloc      13216  1 uvcvideo
videobuf2_memops       13362  1 videobuf2_vmalloc
videobuf2_core         40664  1 uvcvideo
videodev              134688  2 uvcvideo,videobuf2_core
asus_nb_wmi            16990  0 
asus_wmi               24191  1 asus_nb_wmi
sparse_keymap          13948  1 asus_wmi
intel_rapl             18773  0 
x86_pkg_temp_thermal    14205  0 
intel_powerclamp       14705  0 
coretemp               13435  0 
kvm_intel             143187  0 
kvm                   455835  1 kvm_intel
snd_hda_intel          56451  3 
snd_hda_codec         192906  3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
snd_hwdep              13602  1 snd_hda_codec
crct10dif_pclmul       14289  0 
crc32_pclmul           13113  0 
snd_pcm               102099  3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
snd_page_alloc         18710  2 snd_pcm,snd_hda_intel
ghash_clmulni_intel    13216  0 
cryptd                 20359  1 ghash_clmulni_intel
snd_seq_midi           13324  0 
snd_seq_midi_event     14899  1 snd_seq_midi
snd_rawmidi            30144  1 snd_seq_midi
snd_seq                61560  2 snd_seq_midi_event,snd_seq_midi
joydev                 17381  0 
serio_raw              13462  0 
snd_seq_device         14497  3 snd_seq,snd_rawmidi,snd_seq_midi
snd_timer              29482  2 snd_pcm,snd_seq
lpc_ich                21080  0 
snd                    69322  17 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_seq_midi
rtsx_pci_ms            18151  0 
memstick               16966  1 rtsx_pci_ms
soundcore              12680  1 snd
mei_me                 18627  0 
mei                    82276  1 mei_me
i915                  784207  4 
wmi                    19177  1 asus_wmi
drm_kms_helper         55071  1 i915
video                  19476  2 i915,asus_wmi
drm                   303102  5 i915,drm_kms_helper
i2c_algo_bit           13413  1 i915
mac_hid                13205  0 
parport_pc             32701  0 
ppdev                  17671  0 
lp                     17759  0 
parport                42348  3 lp,ppdev,parport_pc
nls_iso8859_1          12713  1 
hid_generic            12548  0 
usbhid                 52659  0 
hid                   106148  2 hid_generic,usbhid
rtsx_pci_sdmmc         23274  0 
r8169                  67581  0 
psmouse               106714  0 
rtsx_pci               46202  2 rtsx_pci_ms,rtsx_pci_sdmmc
ahci                   25819  3 
mii                    13934  1 r8169
libahci                32716  1 ahci

/etc/modprobe.d/asus.conf是空的

blacklist asus_nb_wmi

不起作用。

lspci-nn|复制代码

02:00.0 Network controller [0280]: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network Adapter [14c3:7630]

答案1

您的设备确实缺少驱动程序。请建立临时互联网连接并打开终端:

sudo apt-get update
sudo apt-get install linux-headers-generic build-essential git
git clone https://github.com/lwfinger/mt7630.git
cd mt7630
make
sudo make install
sudo modprobe rt2800pci

如果您遇到任何错误或遇到问题,请告知我们。我们可能会增加一个步骤。

不幸的是,在我的 Ubuntu 14.10 系统上,我也遇到了“模块中的未知符号或未知参数”错误。查阅 github 页面可以看到开发人员的以下评论:

由于我没有时间和硬件,所以请不要期待任何改进。

很遗憾,我目前不知道如何让此设备正常工作。目前,我建议您继续使用 USB。

相关内容