Results 1 to 10 of 10
I'm a complete noob to Linux, but am glad to say that I have wiped Windows and have loved the Mandriva experience this far.
How does one go about installing ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 01-13-2009 #1Just Joined!
- Join Date
- Jan 2009
- Posts
- 4
How to install tarbal.gz files?
I'm a complete noob to Linux, but am glad to say that I have wiped Windows and have loved the Mandriva experience this far.
How does one go about installing tarball.gz files? I figure one day I'm going to need to learn how to do this stuff, but don't understand the basic concepts.
Can anyone guide me here? I understand that for each package you download it's essential to read the install read me, but I don't understand where I'm supposed to begin running the commands to extract the package and so forth.
- 01-13-2009 #2
Hi and Welcome !
There are tons of packages available in sources and if your machine has internet access, there is no need to download/install tar.bz package.
Anyways, check this tutorial on how to install softwares in Linux.It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 01-13-2009 #3Just Joined!
- Join Date
- Jan 2009
- Posts
- 4
Thanks for the welcome!
Okay: According to the instructions from the link,
You'll probably want to operate from inside your home directory. If your user is (for example) username, your home directory will be /home/username/. For the rest of this section we will assume you have downloaded your zip file to /home/username/src. If you do not have a src directory, you can create it with the following "mkdir" (make directory) command:
Code:
mkdir /home/username/src/
Where do you type "mkdir," and where do you input the code?
- 01-13-2009 #4forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
You'll input your commands in the Terminal (Gnome), or Konsole (KDE), or you can use a virtual console.
Check here for some quick and easy lessons on using the command line under Linux:
LinuxCommand.org: Learn the Linux command line. Write shell scripts.
UNIX / Linux Tutorial for Beginnersoz
- 01-13-2009 #5
Once you've got your files dl'd to the correct directory, you'll want to cd to it in a terminal/konsole window and run the following command:
tar -xvzf file.tar.gz
(the z flag is what tells it to filter through gunzip)
Then more than likely you'll want to run
./configure
make
su
(enter root password)
make install
See the man page for tar for more information. (in a terminal/konsole window type:
man tar)
- 01-13-2009 #6Just Joined!
- Join Date
- Jan 2009
- Posts
- 4
- 01-13-2009 #7Just Joined!
- Join Date
- Jan 2009
- Posts
- 4
- 01-13-2009 #8forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
...changing the "file_name" part to equal your file.Code:tar -xvzf file_name.tar.gz
You also need to change to the directory holding the tarball to run the command.
More info on using the command line under Linux can be found in the links I posted for you above.
Have fun with it.oz
- 01-13-2009 #9
- 01-22-2009 #10Just Joined!
- Join Date
- Jan 2009
- Posts
- 2
I was trying to install a file using this and it worked up until "make", it then returned
make: *** No targets specified and no makefile found. Stop.
If it makes any difference I'm using Ubuntu and I'm trying to install the vlc audio player version 0.8.6c


Reply With Quote

