LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
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 12-28-2005, 10:06 PM   #1
Pup
LQ Newbie
 
Registered: Dec 2005
Posts: 16

Rep: Reputation: 0
installing flash player


how do you uncompress a file? I downloaded the Flash Player 7 to install on my Mandriva Linux system and the ReadMe files says to Uncompress the file. Can you tell I am new yet? many thanks!
 
Old 12-28-2005, 10:13 PM   #2
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
If the file ends in .tar.gz, run this[code]tar zxvf <filename>.tar.gz/code]and the file will uncompress.

Welcome to LQ
 
Old 12-28-2005, 10:14 PM   #3
kvnband
Member
 
Registered: Jan 2004
Distribution: Suse 10.2
Posts: 107

Rep: Reputation: 15
What is the file extension? (If I remember right, it's tar.gz, right?)

So cd to the directory where your file is at (in console) and issue a

tar -xvf filename.tar.gz That will create a directory. CD into that directory and run the installer. If I'm not mistaken, macromedia has some great instructions on how to install.
Kevin
 
Old 12-28-2005, 10:26 PM   #4
xine_luo
LQ Newbie
 
Registered: Nov 2005
Posts: 10

Rep: Reputation: 0
Of course,If the file ends in .zip, run this
Code:
unzip <filename>.zip
and the file will uncompress
 
Old 12-28-2005, 10:43 PM   #5
Pup
LQ Newbie
 
Registered: Dec 2005
Posts: 16

Original Poster
Rep: Reputation: 0
Question thanks, but now what

kevin,and everyone else
appreciate the quick resposne and I was able to do everything but run the installation. I get a prompt telling me my architecture, \'x86_64\' is not supported by the macromedia flash player installer. what a wonderful world I just encountered. I will saty with it, but I have got a lot to learn with linux.
 
Old 12-28-2005, 10:46 PM   #6
kvnband
Member
 
Registered: Jan 2004
Distribution: Suse 10.2
Posts: 107

Rep: Reputation: 15
See posts below...

Last edited by kvnband; 12-28-2005 at 11:03 PM.
 
Old 12-28-2005, 10:53 PM   #7
kvnband
Member
 
Registered: Jan 2004
Distribution: Suse 10.2
Posts: 107

Rep: Reputation: 15
See post below......

Last edited by kvnband; 12-28-2005 at 11:03 PM.
 
Old 12-28-2005, 10:58 PM   #8
kvnband
Member
 
Registered: Jan 2004
Distribution: Suse 10.2
Posts: 107

Rep: Reputation: 15
After a bit of searching, I've found the following:

http://www.linuxquestions.org/questi...d.php?t=332366

According to the last post in the thread, the flash player plugin works fine on 64 bit, it's just the install script that doesn't work. According to that thread, you need to

Quote:
You have to do a manual install. Find the "flashplayer.xpt" and "libflashplayer.so" files from the "install_flash_player_7_linux" directory where you extracted the tarball. Copy these 2 files into your browser's /plugins/ directory and you'll be good to go!

this is just a fact of the install script only works on 32bit platforms, the plugin works fine.
My mandriva install installed firefox 1.0.6 to the following location

/usr/lib/mozilla-firefox-1.0.6/

So you should copy flashplayer.xpt and libflashplayer.so to
/usr/lib/mozilla-firefox-1.0.6/plugins

(This is assuming that your firefox is located in the same place mine is)

Last edited by kvnband; 12-28-2005 at 11:00 PM.
 
Old 12-29-2005, 06:55 AM   #9
Pup
LQ Newbie
 
Registered: Dec 2005
Posts: 16

Original Poster
Rep: Reputation: 0
copying the .xpt and .so fiels

I don't know the command prompts to copy and paste these files you mentioned. I am able to get to them and have found where my mozzilla firefox is at
/usr/bin/mozilla-firefox . This forum is great, but hence the newbie title.I'm learning
 
Old 12-29-2005, 09:25 AM   #10
kvnband
Member
 
Registered: Jan 2004
Distribution: Suse 10.2
Posts: 107

Rep: Reputation: 15
First off, you're looking for your mozilla-firefox directory, not the actual program. /usr/bin/mozilla-firefox would be the actual application. You should look to /usr/lib/ and look for firefox there.

Secondly,there are a couple of things you could do. First off, you could open up a new konqueror window and go your plugins directory. Then open up a new konqueror window and go to your flash directory. Then you could just drag the two files from flash directory to plugins directory

OR you could open up konsole and type
cp /home/user/Desktop/install_flash_player_7/flashplayer.xpt /usr/lib/mozilla-firefox/plugins
cp /home/user/Desktop/install_flash_player_7/libflashplayer.so /usr/lib/mozilla-firefox/plugins

Of course, you would substitute the first path for your flash path and the second path for your firefox plugins path.

Note: You may have to be root to write to /usr/lib. I'm not 100% sure. If you do have to be root, the use the second method of copying, but before typing the cp commands, issue a

su
password

Kevin
 
Old 12-31-2005, 11:25 AM   #11
Pup
LQ Newbie
 
Registered: Dec 2005
Posts: 16

Original Poster
Rep: Reputation: 0
Kvnband

Hey I appreciate your last on the the flashplayer. I found that my directory was /usr/lib64/mozilla-firefox-1.0.6/plugins

after following your previous, I literrally saw the files transfered on the konqueror, however, they flash player still didn't run. So I rebooted my computer, thinking that had something to do with it, but it still doesn't. what am I missing. I am on a 64bit computer and I did have to be root in order to cp the .xpt and .so files.

many thanks!
 
Old 12-31-2005, 11:28 AM   #12
kvnband
Member
 
Registered: Jan 2004
Distribution: Suse 10.2
Posts: 107

Rep: Reputation: 15
Well, you've tried everything I know of. I am not on a 64bit computer, so can't give you anymore insight. Perhaps go to that thread that I mentioned above and PM or email one of the posters and see if they can help you out a little more.

Sorry I can't get it totally solved for you.
Kevin
 
  


Reply



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
problems installing flash player on firefox1 amadkow Linux - Software 1 12-11-2004 05:31 AM
Installing Flash Player mikeCanada Linux - Newbie 8 07-25-2004 02:28 PM
Installing Flash Player on Fedora DB03 Linux - Newbie 5 04-17-2004 06:02 PM
Problems installing Flash player? New Solution! moisvon Linux - Software 0 10-29-2003 12:39 PM
Trouble installing flash player kdog97 Linux - Newbie 2 09-26-2003 07:02 AM

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

All times are GMT -5. The time now is 05:53 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