Default folder from which commands execute

1

Once I upgraded to Maverick Ubuntu, bash shell in gnome-terminal starts by default at root rather than my home directory, this was easily fixable by adding a cd command in .bashrc. However, this is undesirable for two reasons:

  • when new tabs are created in gnome-terminal, .bashrc executes, and the folder is set to the home directory, rather than the folder I was working in previously.
  • more importantly, some (not all) applications other than the terminal are also starting at root. The Emacs open file feature and the open file dialog of my programming IDE look for files at root by default.

Is there some environment variable that is the cause of all this?

Harshavardhan

Posted 2011-04-12T15:41:20.847

Reputation: 81

Answers

0

Is your home directory set correctly in /etc/passwd? It should read something like:

christi:x:1000:1000:christi,,,:/home/christi:/bin/bash

So the field before the last colon should point to your home dir.

Christi

Posted 2011-04-12T15:41:20.847

Reputation: 915

Yes, that's exactly what I have – Harshavardhan – 2011-04-12T21:07:35.433