그래서 UEFI를 활성화하는 데 문제가 있었기 때문에 레거시 지원으로 Ubuntu 18.04.03을 설치했습니다. 이제 WiFi나 터치패드를 사용할 수 없습니다. 커널을 최신 버전으로 업데이트했지만 여전히 성공하지 못했습니다. 이 문제를 어떻게 해결할 수 있는지에 대한 아이디어가 있는 사람이 있나요? 나는 그들의 방법을 시도하면서 서너 개의 다른 스레드를 시도했지만 지금까지 운이 없었습니다.
xinput
:
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ PixArt Dell MS116 USB Optical Mouse id=9 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Power Button id=8 [slave keyboard (3)]
↳ Integrated Camera: Integrated C id=10 [slave keyboard (3)]
↳ Ideapad extra buttons id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
sudo dmesg -xt | grep -ai input
:
kern :info : input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
kern :info : input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
kern :info : input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
kern :info : input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
kern :info : input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08/LNXVIDEO:00/input/input4
kern :info : input: PixArt Dell MS116 USB Optical Mouse as /devices/pci0000:00/0000:00:08.1/0000:03:00.3/usb1/1-3/1-3:1.0/0003:413C:301A.0001/input/input5
kern :info : hid-generic 0003:413C:301A.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-0000:03:00.3-3/input0
kern :info : input: Ideapad extra buttons as /devices/pci0000:00/0000:00:14.3/PNP0C09:00/VPC2004:00/input/input6
kern :info : input: Integrated Camera: Integrated C as /devices/pci0000:00/0000:00:08.1/0000:03:00.4/usb3/3-1/3-1:1.0/input/input7
kern :info : input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:03:00.1/sound/card0/input8
kern :info : snd_hda_codec_realtek hdaudioC1D0: inputs:
kern :info : input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:03:00.6/sound/card1/input9
kern :info : input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:03:00.6/sound/card1/input10
kern :debug : rfkill: input handler disabled
grep "GRUB_CMDLINE_LINUX_DEFAULT" /etc/default/grub
:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
awk 'BEGIN {IGNORECASE = 1; RS="\n\n"; FS="\n"; } /touch|mouse|synap/{print $0,"\n" }' /proc/bus/input/devices
:
I: Bus=0003 Vendor=413c Product=301a Version=0111
N: Name="PixArt Dell MS116 USB Optical Mouse"
P: Phys=usb-0000:03:00.3-3/input0
S: Sysfs=/devices/pci0000:00/0000:00:08.1/0000:03:00.3/usb1/1-3/1-3:1.0<br/>/0003:413C:301A.0001/input/input5
U: Uniq=
H: Handlers=mouse0 event5
B: PROP=0
B: EV=17
B: KEY=70000 0 0 0 0
B: REL=903
B: MSC=10
답변1
글쎄, 로그 출력에 따르면 Ubuntu가 이 경우 터미널에서 실행되는 터치패드를 감지하지 못하는 것 같습니다.
$ sudo apt install xserver-xorg-input-synaptics xserver-xorg-input-libinput
$ sudo modprobe i2c_hid
$ sudo modprobe psmouse
`
재부팅이 필요할 수 있습니다. 이후 변경 사항이 표시되지 않으면(재부팅 후 sudo modprobe
위의 두 명령을 다시 실행) 터미널에서 실행하세요.
$ grep "GRUB_CMDLINE_LINUX_DEFAULT" /etc/default/grub
그리고
$ awk 'BEGIN {IGNORECASE = 1; RS="\n\n"; FS="\n"; } /touch|mouse|synap/{print $0,"\n" }' /proc/bus/input/devices
그리고 그 결과물을 공개합니다.