Gnome Terminal Tips
Posted on September 5th, 2008
Is your first time on TechnoSNACK? Subscribe our feeds!
I often use the profiles feature in gnome terminal to organize all my remote shell accounts. Inside of gnome terminal, you can go to Edit->Profiles to manage your profiles. From there, you can either edit an existing profile or create a new one. Either action will take you to the "Editing Profile" window. Once inside, click on "Title and Command" tab and check the box that says "Run a custom command instead of my shell". You can put your ssh login info inside of the "Custom command" box. An example would be:
ssh -i /home/username/.ssh/id_rsa.1 -p 7822 myuser@myhost.com
That would invoke an ssh session using port 7822 and the identity file stored in your .ssh directory. It's particularly useful to setup sessions with shared keys so you can just go File->Open Terminal and point to the desired session. If you have certain ssh session you use a lot, it might be worth adding a launcher to your panel and specifying the desired profile like so:
gnome-terminal --window-with-profile...
[Read more →]
ssh -i /home/username/.ssh/id_rsa.1 -p 7822 myuser@myhost.com
That would invoke an ssh session using port 7822 and the identity file stored in your .ssh directory. It's particularly useful to setup sessions with shared keys so you can just go File->Open Terminal and point to the desired session. If you have certain ssh session you use a lot, it might be worth adding a launcher to your panel and specifying the desired profile like so:
gnome-terminal --window-with-profile...
[Read more →]
SOURCE: http://dailyvim.blogspot.com/


Discussion Area - Leave a Comment