컴퓨터활용/리눅스
리눅스 서버 리모트 접근하기 (xrdp) 에러 해결 방법도
굳라이프
2023. 4. 23. 06:59
오픈소스로 개발 되어 있는 툴이 있네요. VNC 대신에 사용할 수 있습니다. 라즈베리 파이에서 사용할려고 알아보다가 설치해서 사용하게 되었습니다.
GitHub - neutrinolabs/xrdp: xrdp: an open source RDP server
위에 있는 깃헙에 잘 나와 있지만, 우분투/데미안 리눅스의 경우 아래 명령어 사용하면 설치가 됩니다.
apt install xrdp
아래 스크린 샷에서 보신느 것처럼, 윈도우즈 컴에서 mstsc 사용하는 것과 같은 방법입니다.
혹시 Jetson 에서 xrdp 설치후에 로그인이 되는 듯 하다가 바로 로그아웃 되는 경우, 아래 방법으로 해결이 가능합니다.
I encountered this issue today. It turns out it was caused by gnome (more specifically, the MESA GL library). Didn’t want to waste more time on this. So I installed xfce4 and used it instead. That solved the problem. 이 문제가 gnome 때문에 발생했다고 합니다.
Here are the steps:
Install xfce4 with
gnome 대신에 xfce4 설치하면 된다고 합니다. 아래 명령어 실행 하시면 됩니다!
sudo apt install xfce4
Comment out the last two lines in "/etc/xrdp/startwm.sh"
위 파일 vim 이나 nano 에디터로 들어가서 마지막 두 줄 앞에 # 달아서 주석 처리합니다.
Give permission to file with
sudo chmod 777 /etc/xrdp/startwm.sh
Add the following line to this file "/etc/xrdp/startwm.sh" in the end
위 파일 마지막 줄에 아래 명령어 추가 합니다.
startxfce4
Restart xrdp with
아래 명령어로 xrdp 새로 시작 합니다.
sudo service xrdp restart