3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntu 24.04/20.04 にリモートデスクトップで接続する

3
Last updated at Posted at 2020-06-14

Ubuntu 24.04/20.04 にリモートデスクトップで接続する

リモートデスクトップ用のソフトのインストール

sudo apt -y install xrdp tigervnc-standalone-server
sudo systemctl enable xrdp
sudo systemctl start xrdp

リモートデスクトップを許可する

firewalld による方法

sudo apt install -y firewalld
sudo firewall-cmd --add-port=3389/tcp  --permanent
sudo firewall-cmd --reload

ufw による方法

sudo apt install -y ufw
sudo ufw allow 3389/tcp
sudo ufw enable
sudo ufw status

参考にしたリンク

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?