Linux – How to check the version of vncserver on Redhat

linuxredhat-enterprise-linuxvncvncserver

I want to check which version of vncserver I am using in my linux box. What is the command for that?

When I run

which vncserver 

I get

/usr/bin/vncserver

P.S: I am running Red Hat Enterprise Linux Server release 5.8 (Tikanga)

Best Answer

Use this command

rpm -qa | grep tigervnc-server 
Related Question