25
4
When I run the following command in my remote linux
box that I connect to from my windows 7
laptop via VNC
I get the following :
[subhrcho@slc04lyo ~]$ ps -ef|grep vnc
subhrcho 20113 19804 0 21:40 pts/8 00:00:00 grep vnc
subhrcho 27486 1 0 Jan28 ? 00:05:35 Xvnc :1 -desktop slc04lyo:1 (subhrcho) -httpd /usr/share/vnc/classes -auth /home/subhrcho/.Xauthority -geometry 1680x1050 -depth 16 -rfbwait 30000 -rfbauth /home/subhrcho/.vnc/passwd -rfbport 5901 -pn
subhrcho 27493 1 0 Jan28 ? 00:00:00 vncconfig -iconic
How can I kill this session elegantly ? I know kill -9 <pid>
would do it but I think that is a forceful clean and might lead to corrupted files .
P.S: I also read from this source to use the kill option from vncserver but not sure how to figure out display#.
Script I wrote to auto-kill idle sessions: https://gist.github.com/mnebuerquo/e825530cf2bfd363b6c3cd82fe697d94
– Mnebuerquo – 2016-06-24T11:47:09.520