The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > SUN Solaris
Google UNIX.COM



Thread: Help with $path
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 04-25-2008
jlliagre jlliagre is offline
Registered User
 

Join Date: Dec 2007
Location: Paris
Posts: 303
Quote:
Originally Posted by Lpauia View Post
I just installed solaris last night after never using any linux based system in my life.
Solaris isn't Linux.
Quote:
So after i soon find out that I have no gcc compiler and make is not installed.
Both of these statements are incorrect. You have gcc installed and two versions of make are installed by default with Solaris.
Quote:
So i followed someones online instructions and figured out how to install gcc and make.
That wasn't necessary. You now have two versions of gcc and three make ...
Quote:
Tried to install nano again and got the same error.
But still none is in your PATH, which is the real issue you have.
Quote:
So i found out about this "echo $root command and tried that and I get a blank line.
I don't know where you find this "echo $root" command but it is irrelevant. A blank line is to be expected.
Quote:
I don't know what to do now. I understand that I need to have these directories as my $root, but I can't seem to figure out how. If anyone can help it would be greatly appreciated. Thanks.
You are confusing root/path with PATH

just do:
Code:
PATH=$PATH:/usr/sfw/bin:/usr/gnu/bin:/usr/ccs/bin
export PATH
./configure
Alternatively, you can just install a nano binary package instead of compiling it yourself.

Freeware List for Intel and Solaris 10
Reply With Quote