AVR

RaspberryPI4 원격 데스크톱 연결하기

작성자 임베디드코리아 작성일25-11-01 17:46 조회43회 댓글0건
1. 업데이트와 업그레이드
    $ sudo apt update
    $ sudo apt upgrade

2. 원격 테스크톱 연결을 위한 xrdp 설치하기
    $ sudo apt remove xrdp
    $ sudo apt install xrdp -y

4. 접속은 되지만 검은 화면(black screen)만 보이는 경우가 많다.
    이 경우, xrdp X session start script에 아래 세 줄을 추가해서 해결할 수  있다.
    unset DBUS_SESSION_BUS_ADDRESS
    unset XDG_RUNTIME_DIR
    . $HOME/.profile
    -------------------------------------------------------------------------------
    $ sudo vi /etc/xrdp/startwm.sh
#!/bin/sh
# xrdp X session start script (c) 2015, 2017, 2021 mirabilos
# published under The MirOS Licence

# Rely on /etc/pam.d/xrdp-sesman using pam_env to load both
# /etc/environment and /etc/default/locale to initialise the
# locale and the user environment properly.

if test -r /etc/profile; then
        . /etc/profile
fi

if test -r ~/.profile; then
        . ~/.profile
fi

<다음 3줄을 추가한다>
unset DBUS_SESSION_BUS_ADDRESS
unset XDG_RUNTIME_DIR
. $HOME/.profile

test -x /etc/X11/Xsession && exec /etc/X11/Xsession
exec /bin/sh /etc/X11/Xsession

5. xrdp  재실행하기
    $ sudo service xrdp restart

6. 원격 데스크톱 연결을 위한  IP 확인하기
    $ ifconfig
    무선 인터넷인 경우
    wlen0 : inet 192.168.45.11

7. Windows 에서 원격 데스크톱 연결을 한다.
    1) IP 를 입력하고 '연결'을 클릭한다.
    2) username는 RaspBerryPI 의 계정이름을 입력하고,
        password는 계정의 패스워드을 입력하고, 'OK'를 클릭한다.