vote up 0 vote down star

Hi, Whenever I start my console gnome-terminal in Ubuntu, it starts in the home directory. How can I make its start in a different directory say ~/myfolder? I tried to write cd ~/myfolder in ~/.profile but nothing happens.

flag

4 Answers

vote up 1 vote down check

if you start gnome-terminal like "gnome-terminal --working-directory=myfolder" it will start with the working directory at ~/myfolder. so you could add a new entry to your menu to use that command instead of the other one.

link|flag
Didn't really think about it! thanks. – Vikrant Chaudhary May 10 at 4:53
Also see another (better) solution - stackoverflow.com/questions/844677/… – Vikrant Chaudhary May 10 at 5:12
vote up 0 vote down

From GNOME Terminal - Getting Started:

You can also specify a command that runs automatically when you start GNOME Terminal in the profile.

link|flag
Well that's what i did. Wrote cd ~/myfolder in ./.profile. It didn't work though. – Vikrant Chaudhary May 10 at 4:45
.profile is for the shell, not the terminal. – lothar May 10 at 7:23
vote up 3 vote down

Add the following to your ~/.bashrc

cd ~/myfolder

link|flag
It worked too along with this (link below), but this one is a better solution I guess. stackoverflow.com/questions/844677/… – Vikrant Chaudhary May 10 at 5:10
from "this is a better solution", I mean adding to ~/.bashrc – Vikrant Chaudhary May 10 at 5:11
There is a caveat with ~/.bashrc i.e., if you open a new tab in terminal, you go back to ~/myfolder, which is usually undesirable. so now I think gnome-terminal --working-directory=myfolder is rather a better solution. – Vikrant Chaudhary May 13 at 7:23
vote up 0 vote down

I did this way - with script: open 3 tabs in same window size 170x40, each "tab" start in different directory.

gnome-terminal --geometry=170x40 --working-directory=myfolder1 \

--tab --working-directory=myfolder2 \

--tab --working-directory=myfolder3

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.