質問 :xinetd デーモンが VNC サーバー プロセスを開始するのを停止するにはどうすればよいですか?
1. xinetd 設定ファイル /etc/xinetd.d/vnc-server に移動します .ファイルを変更して disable =no の行を探します 値を yes に設定します。
# vi /etc/xinetd.d/vnc-server
service vnc-server-1
{
disable = no
socket_type = stream
protocol = tcp
wait = yes
user = nobody
server = /usr/bin/Xvnc
server_args = -inetd -query localhost -geometry 1440x900 -depth 24 -once -securitytypes=none
} 2. xinetd サービスを再起動して、変更を有効にします。
# systemctl restart xinetd.service