Results 1 to 7 of 7
I'm new to linux, and I'm using Fedora core 5. I downloaded a program called sleuthkit, and it dosen't automatically install it's man pages. When I type "export MANPATH=" in ...
- 12-09-2006 #1Just Joined!
- Join Date
- Dec 2006
- Posts
- 10
Can't add manpage path
I'm new to linux, and I'm using Fedora core 5. I downloaded a program called sleuthkit, and it dosen't automatically install it's man pages. When I type "export MANPATH=" in the bash shell and add the directory they are in, I can pull up the man pages. When I log out and log back in, the path is gone, and I can't pull up man pages for sleuthkit, but all the regular man pages are there. What am I doing wrong?
- 12-09-2006 #2
add "export MANPATH=" in .bashrc file.
Code:nano ~/.bashrc
casperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-09-2006 #3Just Joined!
- Join Date
- Dec 2006
- Posts
- 10
Still couldn't get this to work. I'm not sure how to change that file. I got it open but I'm not sure if I'm putting in the right code in the right place. I've gotta type this out cause I don't know how to copy from emacs to here
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
export MANPATH=/home/sleuthkit-2.06/man
Is this right?
- 12-09-2006 #4open .bashrc file in any editor you like.Code:
MANPATH=MANPATH:/home/sleuthkit-2.06/man export MANPATH
casperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-09-2006 #5Just Joined!
- Join Date
- Dec 2006
- Posts
- 10
Thanks so much! That did the trick. If I need to add more paths later, I just do it by seperating it with commas and resave the .bashrc file, right?
Again, thanks so much for the help. I have a very long way to go before I get the hang of this.
- 12-09-2006 #6
you are Welcome angryzen !
yes !If I need to add more paths later, I just do it by seperating it with commas and resave the .bashrc file, right?
MANPATH=MANPATH:/home/sleuthkit-2.06/man:<new path>
casperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 12-09-2006 #7Just Joined!
- Join Date
- Dec 2006
- Posts
- 10
Thanks so much man, I think I feel my headache going away now!


Reply With Quote