Posts

Showing posts from May, 2012

Resolving Dual Display problem with ATI Cards in ubuntu

Open AMD Catalyst Control Center using this command $sudo amdcccle Go to Display manager > There you can see your monitors Click on the monitor you wish to setup dual display to Go to Multiple Screen Tab Change the display mode to your choice Apply this and restart

Passing password to ssh connection on the commmand line

~$sudo apt-get install sshpass Now use the sshpass to pass the password on command line as ~$ sshpass -p 'mypasswd' ssh user_name@myserver.com -p 1600 where -p 1600 means ssh connection will be made on 1600 port of the server.