LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   trying to unzip .gz file on server??? how to (https://www.linuxquestions.org/questions/linux-newbie-8/trying-to-unzip-gz-file-on-server-how-to-490333/)

[Paul Ferrie] 10-07-2006 09:45 AM

trying to unzip .gz file on server??? how to
 
ok i am trying to install Flash media server on linux system.
How on earth do i install it???
I have the FlashMediaServer2.tar.gz on the server but i read that i have to unzip and install on the server. How do i do that with a linux server.

Thanks
Paul

boredandblogging 10-07-2006 11:40 AM

assuming the file is in the directory you want to the unzipped files to be, do a 'tar -zxf FlashMediaServer2.tar.gz' and it should be done. The flash file is gzipped and tarred. The tar command will let you gunzip a file as well with the '-z' argument.

If a file has the .gz extension, you usually need to use the gunzip command.

Mara 10-07-2006 02:34 PM

Moved: This thread is more suitable in Linux-Newbie and has been moved accordingly to help your thread/question get the exposure it deserves.

It will be unpacked to a directory (probably FlashPlayer). Inside that dir you should find README, INSTALL or other file with instructions (should be easily distinguishable when looking at file name).

[Paul Ferrie] 10-08-2006 02:31 AM

Hi guys
What i need is s step by step as to how to unzip and install this. I was able to install it on win2003 server without a problem but i have never tried to accomplish the same on a linux system.

Mara 10-08-2006 12:59 PM

boredandblogging gave you the first command you need. The rest should be easy to find when you unpack it. The standard way is
tar -zxf program.tar.gz
cd program
./configure
make
make install
But it may be a bit different. Consult program's documentation. It should be stated clearly.

[Paul Ferrie] 10-09-2006 01:33 AM

Quote:

tar -zxf program.tar.gz
cd program
./configure
make
make install
Do i put this code in via ftp?


All times are GMT -5. The time now is 03:10 PM.