デスクトップ環境インストール.
デスクトップ環境をインストールします。
[root@www ~]# dnf -y group install "Basic Desktop" GNOME
[root@www ~]# startx
[root@www ~]# systemctl set-default graphical.target
[root@www ~]# systemctl set-default
[root@www ~]# ll /etc/systemd/system/default.target
[root@www ~]# reboot
VNCサーバーの設定.
VNCサーバーをインストールします。
root@www:~# dnf -y install tigervnc-server
root@www:~# vncpasswd Password: Verify: Would you like to enter a view-only password (y/n)? n
root@www:~# vi ~/.vnc/config session=gnome securitytypes=vncauth,tlsvnc geometry=800x600
root@www:~# vi /etc/tigervnc/vncserver.users # TigerVNC User assignment # # This file assigns users to specific VNC display numbers. # The syntax is <display>=<username>. E.g.: # # :2=andrew # :3=lisa :1=root :2=webmaster
root@www:~# systemctl enable --now vncserver@:1 vncserver@:2
root@www:~# reboot
Xrdpサーバーの設定.
Windows のリモートデスクトップ機能で接続できるようにXrdpサーバーをインストールして設定します。
[root@www ~]# dnf -y install xrdp tigervnc-server
[root@www ~]# systemctl enable --now xrdp
日本語環境の設定.
日本語環境のパッケージをインストールします。
[root@www ~]# dnf -y install ibus-kkc vlgothic-*
[root@www ~]# localectl set-locale LANG=ja_JP.UTF-8 [root@www ~]# source /etc/locale.conf
[root@www ~]# echo $LANG ja_JP.UTF-8
コメント