Tips/Ubuntu/リモートアクセス設定 のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Tips/Ubuntu/リモートアクセス設定 へ行く。
- 1 (2020-01-13 (月) 19:29:00)
- 2 (2020-01-13 (月) 20:45:52)
- 3 (2020-01-14 (火) 01:58:54)
- 4 (2020-02-11 (火) 06:09:44)
- 5 (2020-03-13 (金) 23:16:57)
前提条件
Ubuntu 18.04.3 LTS (Bionic Beaver)
ssh設定
- sshをインストールする
sudo apt-get install ssh
- sshdサービスを起動する
systemctl start sshd
vnc設定
vncを導入しgnome desktopに入れるようにする
- vncおよびgnome desktop関連パッケージをインストールする
sudo apt install xserver-xorg-core tigervnc-standalone-server tigervnc-xorg-extension tigervnc-viewer -y sudo apt install ubuntu-gnome-desktop -y
- gnome desktop managerサービスを起動する
sudo systemctl start gdm
RemoteDesktop設定
- xrdpインストール
sudo apt install -y xrdp
- new_cursorsを無効にする
sudo sed -e 's/^new_cursors=true/new_cursors=false/g' \ -i /etc/xrdp/xrdp.ini
- xrdpサービスを起動
sudo systemctl restart xrdp
- ubuntu向け設定をロードするよう設定
D=/usr/share/ubuntu:/usr/local/share:/usr/share:/var/lib/snapd/desktop cat <<EOF > ~/.xsessionrc export GNOME_SHELL_SESSION_MODE=ubuntu export XDG_CURRENT_DESKTOP=ubuntu:GNOME export XDG_DATA_DIRS=${D} export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg EOF
- Authentication Requiredダイアログの回避
cat <<EOF | \ sudo tee /etc/polkit-1/localauthority/50-local.d/xrdp-color-manager.pkla [Netowrkmanager] Identity=unix-user:* Action=org.freedesktop.color-manager.create-device ResultAny=no ResultInactive=no ResultActive=yes EOF
- polkitサービスの再起動
sudo systemctl restart polkit