하루의 쉼터

[ubuntu] 원격 데스크톱 마우스 키보드 미작동 해결 방안 본문

프로그래밍/Linux

[ubuntu] 원격 데스크톱 마우스 키보드 미작동 해결 방안

Changun An 2022. 11. 16. 16:50
반응형

Nvidia Drive 설치 및 업데이트 중 Windows->Linux로 원격 접속 시, 마우스 키보드가 작동이 안되는 경우가 발생하였다.

아예 멈춘 것은 아니고 시간은 갱신 되는 것으로 보아 마우스와 키보드만 안되는 것으로 확인 되었다.

필자 환경

접속 PC : Windows10 

원격 PC : Ubuntu 20.04

1. 구글 드라이브에는 아래와 같은 명령어를 사용하여 해결했다는 글이 많았다.

sudo apt-get install xserver-xorg-input-all

2. 입력장치 옵션 추가

여기서는 이것으로 해결 되지 않아 해결 방안을 찾아보았다.

sudo vi /etc/X11/xrdp/xorg.conf

내부 내용

Section "InputDevice"
    Identifier "xrdpKeyboard"
    Driver "xrdpkeyb"
    Option "CoreKeyboard"
EndSection

Section "InputDevice"
    Identifier "xrdpMouse"
    Driver "xrdpmouse"
    Option "CorePointer"
EndSection

이후 정상 작동을 잘 확인하였다.

Reference Site : 

https://askubuntu.com/questions/1347943/mouse-and-keyboard-not-working-on-ubuntu-20-04-remote-desktop-after-login

 

mouse and keyboard not working on Ubuntu 20.04 remote desktop after login

I was trying to control Ubuntu 20.04 remotely via windows 10. I installed xrdp with the scripts from https://c-nergy.be/. After logging in on windows, the screen was refreshing but the mouse and ke...

askubuntu.com

 

반응형
Comments