Mailinglist Archive: opensuse (3378 mails)
| < Previous | Next > |
Re: [SLE] Where's my Path?? cont.
- From: Sjoerd Hiemstra <shiems@xxxxxxx>
- Date: Mon, 1 Apr 2002 10:48:17 +0200
- Message-id: <02040110444201.00441@earth>
On Sunday 31 March 21:24, Tom Nielsen wrote:
> OK, I have Suse 7.3. I can't find profile.local. I need to put
> "path=/opt/kde/bin" in somewhere to get my new theme working.
>
> Where's profile.local??
Just create /etc/profile.local.
These lines in /etc/profile check to see whether /etc/profile.local
exists, and execute it if it does:
# and now let's look if there is a local profile (for stuff not
# defined by SuSE Linux, but your friendly admin)
#
test -e /etc/profile.local && . /etc/profile.local
The line you put in /etc/profile.local should be:
export PATH=$PATH:/opt/kde2/bin
But are you sure you need to add this line?
/opt/kde2/bin is already in my PATH by default.
Try echo $PATH
SH
> OK, I have Suse 7.3. I can't find profile.local. I need to put
> "path=/opt/kde/bin" in somewhere to get my new theme working.
>
> Where's profile.local??
Just create /etc/profile.local.
These lines in /etc/profile check to see whether /etc/profile.local
exists, and execute it if it does:
# and now let's look if there is a local profile (for stuff not
# defined by SuSE Linux, but your friendly admin)
#
test -e /etc/profile.local && . /etc/profile.local
The line you put in /etc/profile.local should be:
export PATH=$PATH:/opt/kde2/bin
But are you sure you need to add this line?
/opt/kde2/bin is already in my PATH by default.
Try echo $PATH
SH
| < Previous | Next > |