Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- topic
- C++
- MSG
- 오늘도 우라라 공략
- 반복문
- 마리아 DB
- mariaDB
- 오늘도 우라라 펫 공략
- 데이터 베이스
- 기초
- 토픽
- JungOl
- ubuntu
- 오늘도 우라라
- LeetCode
- install opencv-4.4.0 on ubuntu 22.04
- ros
- 우분투
- Subscribe
- mysql
- publish
- 환경설정
- 등차수열
- 그랑사가
- 프로그래밍
- 오늘도 우라라 펫
- Linux
- 리눅스
- C언어
- while
Archives
- Today
- Total
하루의 쉼터
[원격] Linux ubuntu 20.04 윈도우 환경에서 원격제어 본문
반응형
1. xrdp 설치
리눅스 환경을 윈도우 환경에서 원격하기 위해서는 xrdp 설치가 필요하다.
sudo apt install xrdp
2. xrdp 상태 확인
sudo systemctl status xrdp
3. 방화벽 설정
* 윈도우 원격 포트가 3389이므로 해제해줍니다.
sudo ufw allow from any to any port 3389 proto tcp
4. Xrdp SSL 인증서 그룹 추가
sudo adduser xrdp ssl-cert
5. Xrdp 다시 시작
service xrdp restart
5. 윈도우에서 원격 접속
원격 데스크톱 실행
윈도우키 + R mstsc
비고 1. 검은 화면 나올 시
sudo vim /etc/xrdp/startwm.sh
설정 파일에서 맨 마지막 줄에 DBUS 추가
unset DBUS_SESSION_BUS_ADDRESS
unset XDG_RUNTIME_DIR
systemctl restart xrdp
* 위 상황으로 해결이 안될 경우 세션 오류 확인
tail -f ~/.xsession-errors
dbus-launch를 못찾는 문제 발생
Dbus 설치
udo apt install dbus-x11
dbus-launch
systemctl restart xrdp
비고 2. connecting to sesman ip 127.0.0.1 port 3350 에러 발생 시
xrdp 삭제
sudo apt-get remove xrdp
ssh cui 컨트롤 하듯이 gpu 컨트롤 할 tightvnc를 설치
sudo apt-get install tightvncserver
xrdp 재설치
sudo apt-get install xrdp
반응형
'프로그래밍 > Linux' 카테고리의 다른 글
[Error] apt update gpg error (0) | 2024.02.01 |
---|---|
[Ubuntu] bash: lsusb: command not found (0) | 2023.09.27 |
[Linux] Webcam 해상도 변경 (0) | 2022.12.06 |
[ubuntu] 원격 데스크톱 마우스 키보드 미작동 해결 방안 (0) | 2022.11.16 |
[Error] Ubuntu dpkg was interrupted you must manually run 'sudo dpkg --configure -a' to correct the problem 해결 방안 (1) | 2022.11.16 |
Comments