LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How Can I "file_name-gtk.tar.gz" file from console? (https://www.linuxquestions.org/questions/linux-newbie-8/how-can-i-file_name-gtk-tar-gz-file-from-console-464883/)

bluesky2_1986 07-17-2006 10:44 AM

How Can I "file_name-gtk.tar.gz" file from console?
 
Hi I am using Suse 10.0 version 2.6.13 and I have downloaded

eclipse-SDK-3.2-linux-gtk.tar.gz file from net. And I want to set up this program.

I think I need to unzip it first and I dont know how to do


THANKS :)

jstephens84 07-17-2006 10:50 AM

just run the following
Code:

tar -zxvf eclipse-SDK-3.2-linux-gtk.tar.gz

michapma 07-17-2006 10:56 AM

Quote:

Eclipse is an open source community whose projects are focused on providing an extensible development platform and application frameworks for building software.
:scratch:

If you don't know how to use tar and gzip, I'm not sure why you need to install this.

Here is something that might help:
http://yolinux.com/TUTORIALS/LinuxTu...++.html#CPPDEV

According to this oldish article, there should be a .rpm available:
http://www.novell.com/coolsolutions/feature/11215.html
(read from the beginning or scroll down to Installing Eclipse)

berbae 07-17-2006 10:58 AM

in a console run as user login:
cd <where you want the sources>
tar xzf <where the .tar.gz file is>/eclipse-SDK-3.2-linux-gtk.tar.gz
cd eclipse<use the TAB key to complete the name>

You should read the README, INSTALL and other informations files.
Then proceed with the compilation process.
Take care to check the config.log file after running the configure script, to see if something is missing to have a full compilation of the program.
Good luck.

bluesky2_1986 07-17-2006 11:07 AM

What does zxvf mean ?
 
Thanks it really worked now I can use the Eclipse Programme. But I wondered what does zxvf mean.

Be sure I can understand your explanations. I am a student in computer engineering....

Thanks for help :)))))

morrolan 07-17-2006 11:21 AM

At the console, type:

Code:

tar --help | less
This will print to the screen the help file for the "tar" program in a format you can easily read - the -zxvf options will be listed, and reading the help files is the best way to learn.

You can also type:

Code:

man tar
at the console, and this will display a MANual page for tar.

Remember these options:

PROGRAM --help
Displays the programs help menu 99% of the time.

man PROGRAM
where PROGRAM is the name of your desired program without the brackets, so you would type "man tar" as above.

Hope this is clear enough!

jstephens84 07-17-2006 11:26 AM

Tar is a type of archival backup for linux and unix.

z - to unzip if since it is in a gzip compression. if it said .bz2 then use -j.
v - is for verbose printing. Basically show everything in the output.
x - for extract or restore
f - file


All times are GMT -5. The time now is 11:28 AM.