SSH config

If you are using special ports or different usernames on different ssh-hosts you can simplify your connect commands with a .ssh/config file like the one in the following example. Host test1 HostName 8.8.8.8 Port 12345 User myname Host test2 HostName fubuntu User horaz Host * User root ssh test1 equals ssh myname@8.8.8.8 -p 12345. The

SSH config Read More »

Gnome 3 Button Layout

in Ubuntu 11.10 all window buttons are aligned left and there seems no way to change this with a GUI tool. You can move the window buttons back to the right with the following command: gconftool-2 –set /apps/metacity/general/button_layout –type string “menu:minimize,maximize,close” After this your buttons are on the right side again. I didn’t have to

Gnome 3 Button Layout Read More »