LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to install .tar.gz and .rpm pacakage in suse10 (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-tar-gz-and-rpm-pacakage-in-suse10-713593/)

nileshkumar 03-22-2009 01:40 PM

how to install .tar.gz and .rpm pacakage in suse10
 
hello friends,
i am new to linux and would like to know how to install .tar.gz and .rpm file in Suse linux10.
Also one thing i had downloaded Azureus4.1.0.4.tar.gz from sourceforge.net but after downloading it is showing only as "Azureus4.1.0.4.tar" and seconldy when i am giving command as "tar -zxvf <filename>.tar" or "tar -zxvf <filename>.tar.gz" this the reply i am getting

Slinux-9uh7:~/Desktop # tar -zxvf Azureus4.1.0.4.jar.gz
tar: Azureus4.1.0.4.jar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
Slinux-9uh7:~/Desktop # tar -zxvf Azureus4.1.0.4.jar
gzip: stdin has more than one entry--rest ignored
tar: Child returned status 2
tar: Error exit delayed from previous errors
Slinux-9uh7:~/Desktop #

kirukan 03-22-2009 02:06 PM

if your file with name.gz
#gunzip name.gz
if your file with name.tar
#tar -xvf name.tar
if your file with name.tar.gz
#tar -xzvf name.tar.gz

For rpm if you are installing fresh package
#rpm -ivh name.rpm
To upgrade existing one
#rpm -Uvh name.rpm

i think you are little bit confused about tar and gzip

AlucardZero 03-22-2009 02:32 PM

you misspelled "tar"

prashanthnsbhat 03-22-2009 02:49 PM

in RPM most of the time u get an error message saying that "failed dependencies" and you still want to force the installation then type --nodeps at the end of the command. that is
#rpm -i file.rpm --nodeps

rjlee 03-22-2009 04:09 PM

Quote:

Originally Posted by prashanthnsbhat (Post 3484212)
in RPM most of the time u get an error message saying that "failed dependencies" and you still want to force the installation then type --nodeps at the end of the command. that is
#rpm -i file.rpm --nodeps

You can also try
Code:

yum localinstall file.rpm
which will install the RPM, and use the SuSE repositories to resolve any dependencies.

In fact, if the program is in the SuSE repositories then you can download it and install it in one go:

Code:

yum install package
NB: no .rpm extension on that last one.

ps_sabu 03-22-2009 10:35 PM

Does suse use yum. I think it is zypper.

AlucardZero 03-23-2009 07:33 AM

SuSE uses yast2 preferably.

nileshkumar 04-01-2009 01:42 PM

basically i am trying to install flash player plugin for Firefox, where i have downloaded "install_flash_player_10_linux.tar.gz" file then i have unziped the file using command "tar -zxvf" cammond, after then going into "install_flash_player_10_linux" directory using command "cd install_flash_player_10_linux" but after that when giving "./configure" i am getting error message "bash: ./configure: No such file or directory" as given below,

Slinux-9uh7:~/Desktop/install_flash_player_10_linux # ./configure
bash: ./configure: No such file or directory
Slinux-9uh7:~/Desktop/install_flash_player_10_linux #

and the following file are present in the directory,

Slinux-9uh7:~/Desktop/install_flash_player_10_linux # l
total 9930
drwxr-xr-x 2 nilesh 1000 128 Feb 3 07:36 ./
drwxr-xr-x 3 root root 528 Apr 2 00:05 ../
-r-xr-xr-x 1 nilesh 1000 21701 Feb 3 07:36 flashplayer-installer*
-rwxr-xr-x 1 nilesh 1000 10131640 Feb 3 07:36 libflashplayer.so*
Slinux-9uh7:~/Desktop/install_flash_player_10_linux #

so kinldy suggest me what to do to install this software.
I am using Suse Linux Enterprise Desktop 10 edition.

rjlee 04-01-2009 05:41 PM

nileshkumar, you can find instructions on this here:

http://www.susegeek.com/multimedia/i...pensuse-linux/

It suggests that there should be a command named ./flashplayer-installer rather than going through the usual configure/make/make-install cycle.

If that doesn't work, run ls and you should see which files are available.

Hope that helps,

—Robert J Lee


All times are GMT -5. The time now is 03:24 AM.