우분투 및 페도라에서 무선 카드가 감지되지 않음

우분투 및 페도라에서 무선 카드가 감지되지 않음

저는 현재 Acer Aspire Switch One SW1-011(https://www.notebookcheck.info/Acer-Aspire-Switch-One-10-SW1-011-11AN.231024.0.html)

해당 링크에 따르면 Realtek RTL8723BS입니다.

 

uname -a:

Linux localhost.localdomain 4.15.12-301.fc27.x86_64 #1 SMP Thu Mar 22 19:25:27 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

 

실행하면 lshw -C networkUSB 이더넷 어댑터만 반환됩니다.

  description: Ethernet interface

   physical id: 1
   bus info: usb@1:3.1.2
   logical name: enp0s20u3u1u2
   serial: 00:e0:4c:36:0d:e4
   size: 100Mbit/s
   capacity: 100Mbit/s
   capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8152 driverversion=v1.09.9 duplex=full ip=192.168.0.102 link=yes multicast=yes port=MII speed=100Mbit/s`

 

lspci반품:

00:00.0 Host bridge: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SoC Transaction Register (rev 22) 

00:02.0 VGA compatible controller: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers (rev 22)

00:03.0 Multimedia controller: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Imaging Unit (rev 22)

00:0b.0 Signal processing controller: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Power Management Controller (rev 22)

00:14.0 USB controller: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series USB xHCI Controller (rev 22)

00:1a.0 Encryption controller: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Trusted Execution Engine (rev 22)

00:1f.0 ISA bridge: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCU (rev 22)

 

lsmod | grep 8723반품:

r8723bs               704512  0

cfg80211              733184  1 r8723bs

mmc_core              172032  4 sdhci,mmc_block,sdhci_acpi,r8723bs

나는 또한 추가를 시도했지만 운이 없었습니다 blacklist acer_wmi./etc/modprobe.d/blacklist.conf

답변1

하드웨어는 완전히 독점적이거나 블록일 수 있습니다.

lspci -k

-k 옵션은 매뉴얼에 설명된 대로 각 장치를 처리하는 커널 드라이버를 표시합니다.

그 다음에

rfkill unblock all && rm -rf /dev/rfkill && reboot

rfkill을 사용하면 기본적으로 차단될 수 있는 모든 항목의 차단이 해제됩니다.

답변2

출력에서 r8723bswifi용 드라이버 모듈을 로드한 것으로 나타납니다 lsmod. 운전자가 출력에 문제가 있다고 말합니까 dmesg?

/lib/firmware/rtlwifi/rtl8723bs_nic.bin해당 펌웨어가 누락된 경우 rtl8723bu_nic.bin펌웨어의 이 부분은 둘 사이에서 상호 교환이 가능하므로 교체할 수 있으며, 펌웨어가 없는 경우 배포판에서 펌웨어를 제공하는 방식에서 구할 수 있습니다. 업스트림에서 가져옵니다. https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/rtlwifi

관련 정보