如何使华硕 PCE-N53 wifi 卡与 Ubuntu 16 一起使用?

Con*_*ice 5 wireless asus drivers

我真的需要 wifi,因为以太网对我来说不是一个选择。我刚刚切换到 Ubuntu,之前没有使用过。(从 Windows 切换)如果有人能告诉我如何让它与 Ubuntu 16.04 一起工作,我将不胜感激。我在网上环顾四周并尝试安装它,但我无法让它工作。谢谢

小智 5

我现在已经取得了一些成果。我有Ubuntu 16.04 LTSAsus PCE-N53 card

我使用这里的说明构建了一个驱动程序:

https://github.com/mareksuscak/asus-pce-n53-linux

我不得不修复 2 个编译错误,改变了这个

pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, offset, &Configuration);
Run Code Online (Sandbox Code Playgroud)

对此

pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, offset, (u16*)&Configuration);
Run Code Online (Sandbox Code Playgroud)

在文件的 2 个地方 rtmp_mcu.c

安装驱动程序后,我运行以下命令:

sudo lshw -C network
Run Code Online (Sandbox Code Playgroud)

我看到了,那RT5592 PCIe Wireless Network Adapter是禁用的。

我这样做了(enp3s0是来自 previouse 命令的逻辑名称)

sudo ifconfig enp3s0 up
Run Code Online (Sandbox Code Playgroud)

所以在那之后我可以扫描wifi

sudo iwlist scan
Run Code Online (Sandbox Code Playgroud)

结果有WiFi点。

所以,最后一步是:

sudo service network-manager restart
Run Code Online (Sandbox Code Playgroud)

我有网络连接中的所有 WiFi 点。