The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > Linux
Google UNIX.COM
Home Forums Register Rules & FAQ Members List Arcade Search Today's Posts Mark Forums Read


Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here!


Other UNIX.COM Threads You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
xml value chnage, need help jkl_jkl Shell Programming and Scripting 2 02-07-2008 09:41 PM
Solaris 10 - dtlogin port chnage? kungpow SUN Solaris 5 02-05-2007 04:50 PM
Can not login unrecognised Forum Support Area for Unregistered Users & Account Problems 1 02-07-2006 11:34 AM
cannot login after changing login shell hardesh HP-UX 4 09-13-2005 09:21 PM
why i have local.profile, local.cshrc,local.login instead of .profile, .login ? abidmalik UNIX for Dummies Questions & Answers 5 08-26-2002 10:47 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-08-2008
Registered User
 

Join Date: Mar 2007
Posts: 14
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
Chnage direcortory upon login

Hi,

I am using Redhat 4AS and I'm planning to change the default directory (/home/psuser) upon login to /opt/directory/.

This is my .bash_profile entry:
Code:
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
. ~/test
This is the entry of my test file:
Code:
cd /opt/some directory/
However when i logged in using psuser account, im still directed to /home/psuser. Can anyone know what am i doing wrong?

Thanks!
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 04-09-2008
sysgate's Avatar
Unix based
 

Join Date: Nov 2006
Location: /root
Posts: 1,069
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
Why do you have " . ~/test " I have in my test .bashrc file :
Code:
[test@host]$ cat ~/.bashrc
# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

cd /opt/
and it works OK.
Reply With Quote
  #3 (permalink)  
Old 04-09-2008
Registered User
 

Join Date: Mar 2007
Posts: 14
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
Do you mean that i should put the cd /opt/some directory/ to the .bashrc instead of the .bash_profile?

I thought that the .bash_profile is the same as the .profile of some unix machine..
Reply With Quote
  #4 (permalink)  
Old 04-09-2008
era era is offline
Herder of Useless Cats
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 2,203
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
It's not exactly the same. bash executes .bash_profile when you first log in, but if you are in an X session and open a new terminal window, that doesn't necessarily count as a login. Can you add some simple debug statement to your .bash_profile to see when it is actually executed?

Code:
echo '## .bash_profile' >&2
Reply With Quote
  #5 (permalink)  
Old 04-09-2008
Registered User
 

Join Date: Mar 2007
Posts: 14
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
The .bash_profile is not being executed.
I'm actually doing a telnet session from a remote machine.

I also tried to add the "cd /opt/some directory" to my .bashrc but still its not wroking. I don't know what's wrong with our linux machine.
Reply With Quote
Google UNIX.COM
Reply



Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 03:57 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger

Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102