OS関連
目次
*概要
Raspberry Pi OS(Debian GNU/Linux 13)を用いてSSH / RDP接続にて使用するリモートデスクトップ環境を構築する手順。
| HW | Raspberry Pi 3 Model B Plus Rev 1.3 |
| OS | Debian GNU/Linux 13 (trixie) |
リモート接続先のアドレスを固定化する。
# nmcli connection show NAME UUID TYPE DEVICE netplan-eth0 75a1216a-9d1a-30cd-8aca-ace5526ec021 ethernet eth0 netplan-wlan0-localnet 08328783-3ae1-3820-b4c8-88c3f93d8507 wifi wlan0 lo 51870a81-f9c6-4a4f-8162-85cde8846a8d loopback lo
# nmcli connection modify netplan-eth0 ipv4.method manual ipv4.addresses 172.16.1.1/24 ipv4.gateway 172.16.1.254 ipv4.dns "172.16.1.254 8.8.8.8"
# systemctl restart NetworkManager
以下の手順にてインストールを行う。
# apt install xrdp xfce4 xfce4-goodies
# systemctl enable xrdp # systemctl restart xrdp
$ echo "exec startxfce4" > ./.xsession $ chmod +x ./.xsession