LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-17-2007, 02:06 AM   #16
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58

Quote:
Originally Posted by EternalDecoy View Post
You are my HERO! lol.

Okay, so you would open the terminal, go to the directory with the tar/gz/bz2 file, and execute the right command for that file type to decompress it? and then if it's the source code, you compile it/install it, or if it's then just an RPM, you double-click it to install? or run the command: rpm -ivh <filename>.rpm ?

When compiling the source code for a program, do you open the terminal, go to the directory with the decompressed source code, and just type the commands:

./configure
make
make install

? or do you have to specify the source code? Asking just to be sure :-P.



Tib
you go to the directory with the source code
 
Old 11-17-2007, 06:46 AM   #17
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,906
Blog Entries: 43

Rep: Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142
Hi,

A lot of good questions with great response! To the OP, I would suggest that you read some online reference to get some background.

Linux Documentation Project is a good place to start. You will find just about everything but the kitchen sink covered at this site. Well maintained and informative!

I maintain the reference 'Slackware-Links' formerly 'Slackware LQ Suggestions Links!'. These are for good online reference repository of links for the Linux community.

Sure there are a lot of Slackware links but far more general Linux Links to assist the users.
 
Old 11-17-2007, 10:12 PM   #18
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,329

Rep: Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745
Aslo, (though this may be a bit late for you) this comparison (Linux is not Windows) is a worthwhile read: http://linux.oneandoneis2.org/LNW.htm
 
Old 11-18-2007, 01:37 AM   #19
EternalDecoy
Member
 
Registered: Aug 2005
Location: Virginia, U.S.A
Distribution: Ubuntu 7.10/Ubuntu Ultimate Gamers Edition 1.54/Fedora Core 8
Posts: 31

Original Poster
Rep: Reputation: 15
Again, thank you very much! you guys are the best .

@Ace - Thanks for the clarification, really helps s like me .

@Elf - Had a couple questions,
1. What is $PATH? and what is a "man page"?
2. Do you mean I should type "./configure --prefix=/usr" to tell it where to be installed? and did I understand how to type the command correctly?

@OneBuck - Thanks! I greatly appreciate the links and help .

@Chris - Wasn't too late at all, was a good read, and probably would've scared me off if I'd read it when I first began dabbling in Linux .

Thanks again!


Tib
 
Old 11-18-2007, 02:39 AM   #20
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58
a man page, is a manual page, for example if you type
man cd
it will tell you how to use the command cd, they are very helpful and if you have any questions about commands you should check with them first
 
Old 11-18-2007, 05:38 AM   #21
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
The best way of locating applications on your system is using whereis or which followed by the name of the application.

The path is a series of directories that the system can search for commands/executables without the user needing to specify anything. In other words, if you path includes /usr/bin, the system will automatically detect the applications that are stored or linked there. If the launcher for application is stored outside the path, the user has to specify the full path on the command line. For example, if you install firefox in /opt, you'll need to specify /opt/firefox/firefox.

Listing the contents of the path goes: echo $PATH

.configure --prefix =/usr is something that you'll rarely need. It is something of a standard that compiled source gets moved to /usr/local with a link in /usr/local/bin. And the latter is included in the path of most distributions so no problem there.

What does .configure do? It checks whether you have all the required libraries to compile your application. If you haven't, it will abort and print a message indicating what is missing. Then it's up to you to figure out what it means, install the library yourself and re-run configure. On a system that has hardly been used to compile anything, you should expect this to happen a lot. Best option: always read the README and INSTALL files in the source directory as they usually detail what is required to compile.
 
Old 11-19-2007, 11:11 PM   #22
EternalDecoy
Member
 
Registered: Aug 2005
Location: Virginia, U.S.A
Distribution: Ubuntu 7.10/Ubuntu Ultimate Gamers Edition 1.54/Fedora Core 8
Posts: 31

Original Poster
Rep: Reputation: 15
Awesome! thank you again .

@Jay - Do you mean I can type "whereis ProgramName", and it will list the location of it? and then to run it, rather than just typing the program name, I have to place the folder string before the name, so that it knows to open the folders all the way to it, and then it?
Also, don't quite understand your explanation of the ".configure --prefix =/usr" command.


Tib
 
Old 11-19-2007, 11:23 PM   #23
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58
you will only need to type the path to the program if the program isn't in your path, which doesn't happen very often
 
Old 11-20-2007, 12:15 AM   #24
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,329

Rep: Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745Reputation: 2745
You can also try
which prog
or
locate prog
As said, the shell var $PATH contains a list of known directorires that your cmd shell will search if you try to run a cmd without giving it the full path to the program. In most cases, that'll be fine.
 
Old 11-20-2007, 04:01 AM   #25
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
Quote:
Do you mean I can type "whereis ProgramName", and it will list the location of it?
Yes. http://linuxlab.dk/learnlinux/exerci.../commandline2/

Quote:
and then to run it, rather than just typing the program name, I have to place the folder string before the name, so that it knows to open the folders all the way to it, and then it?
That is something you can do, yes. For example, you can simply type firefox or you can type the full path /usr/bin/firefox. As pointed out by others, if the path to an application is in your $PATH, just the name will do. As I pointed out in my previous post, type
echo $PATH
and it will list all the directories it can search automatically.
Things outside the $PATH are unknown territory, so your system can't find anything there unless you either show it the way by explicitly passing the full path on the command line or you add it to $PATH. For example, if you have an application in /opt/bin that your system can't find because /opt is not in the $PATH, you do this:
export PATH = $PATH:/opt/bin
This will include /opt/bin in the path environment variable. Now you can start apps located in /opt/bin by simply typing their name. Do bear in mind that your changes to $PATH last only as long as your session - log out and the changes are lost. If you need them to be permanent, you have to add the export PATH = entry in /etc/profile or the user's (bash_)profile.

Quote:
Also, don't quite understand your explanation of the ".configure --prefix =/usr" command.
In short, don't use it unless you know what you are doing.

Last edited by jay73; 11-20-2007 at 04:08 AM.
 
Old 11-20-2007, 07:02 AM   #26
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,906
Blog Entries: 43

Rep: Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142Reputation: 3142
Hi,

To the OP!

You should look at the Linux Shortcuts and Commands: and LINUX NEWBIE ADMINISTRATOR GUIDE guides. These guides will give a good understanding of the commands and usage. Along with the 'man' pages, you should get valuable experience with the commands.

These links are referenced in 'Slackware-Links' formerly 'Slackware LQ Suggestions Links!' for good online reference.
 
Old 11-28-2007, 06:36 PM   #27
EternalDecoy
Member
 
Registered: Aug 2005
Location: Virginia, U.S.A
Distribution: Ubuntu 7.10/Ubuntu Ultimate Gamers Edition 1.54/Fedora Core 8
Posts: 31

Original Poster
Rep: Reputation: 15
Awesome, thanks a ton guys! .


Tib
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
security newbie, but not Linux newbie. advice on secure delete tools mattie_linux Linux - Security 19 08-15-2005 02:50 AM
Linux semi-newbie and Wine vary newbie geovolt_os1 Linux - Software 4 04-19-2005 12:03 PM
newbie;I am a linux newbie who has installed slackware and have run into a few proble MollyJolly Slackware - Installation 6 06-01-2004 12:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:27 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration