Debian This forum is for the discussion of Debian Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
12-23-2009, 07:16 AM
|
#1
|
|
Member
Registered: May 2006
Location: Italy
Distribution: Ubuntu, ArchLinux, Debian, SL, OpenBSD
Posts: 272
Rep:
|
How install Flash 64 on Debian Squeeze 64 bit?
I have installed the testing version of Debian (and for the moment i have mantain even the 32 bit stable version ).
As usual when i want tried a 64 bit OS flash at 64 bit don't function.
(I have had the same problem on Sabayon and on OpenSuse).
I have tried to copy the file on:
/.mozilla/plugins/libflashplayer.so
without success.
I have tried to copy the file on:
/usr/lib/iceweasel/plugins/libflashplayer.so
without success.
There is a way to use flash 64 bit or, as usual, i must use nspluginwrapper with the 32 bit version?
|
|
|
|
12-23-2009, 09:07 AM
|
#2
|
|
Senior Member
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 4,474
|
apt-get install flashplugin-nonfree
|
|
|
|
12-23-2009, 09:12 AM
|
#3
|
|
Senior Member
Registered: Jul 2008
Location: /dev/null
Posts: 1,173
Rep: 
|
Indeed that is the best method. If it exists in your repo, don't try anything else.
|
|
|
|
12-24-2009, 01:36 AM
|
#4
|
|
Member
Registered: May 2006
Location: Italy
Distribution: Ubuntu, ArchLinux, Debian, SL, OpenBSD
Posts: 272
Original Poster
Rep:
|
Thanks.
/etc/apt/sources.list
....
deb http://mi.mirror.garr.it/mirrors/debian/ squeeze contrib
sudo apt-get update
sudo apt-get upgrade
|
|
|
|
12-24-2009, 06:18 PM
|
#5
|
|
Member
Registered: Jun 2004
Location: Ireland
Distribution: Ubunutu 11.04, Ubuntu 12.04
Posts: 587
Rep:
|
Hmmm, I am in the same boat. Just upgraded to Lenny 5.0.3 64 bit. I need flash and something that will work with BBC radio's iPlayer. I have used Realplayer 10 in the past. According to previous post I added
Code:
deb http://mi.mirror.garr.it/mirrors/debian/ squeeze contrib
To my sources.list. So now I need the name of the file I should ask apt to look for.
In the meantime Happy Christmas to all.
|
|
|
|
12-24-2009, 06:28 PM
|
#6
|
|
Senior Member
Registered: Jun 2006
Location: England
Distribution: Debian Testing/Unstable Amd64
Posts: 1,467
Rep: 
|
Quote:
|
Just upgraded to Lenny 5.0.3 64 bit.
|
If you are using Lenny,you can get flashplugin-nonfree from Backports:
http://backports.org/dokuwiki/doku.php
http://packages.debian.org/lenny-bac...plugin-nonfree
Add Backports to your sources.list,install the keyring and install with:
Code:
aptitude -t lenny-backports install flashplugin-nonfree
I'd also remove the entry for Squeeze from your sources.list.
|
|
|
|
12-24-2009, 06:40 PM
|
#7
|
|
Member
Registered: Jun 2004
Location: Ireland
Distribution: Ubunutu 11.04, Ubuntu 12.04
Posts: 587
Rep:
|
Hello, I did as you suggest, now this is how my sources.list looks like
Code:
# deb cdrom:[Debian GNU/Linux 5.0.3 _Lenny_ - Official amd64 DVD Binary-1 20090905-11:36]/ lenny contrib main
deb cdrom:[Debian GNU/Linux 5.0.3 _Lenny_ - Official amd64 DVD Binary-1 20090905-11:36]/ lenny contrib main
deb http://ftp.ie.debian.org/debian/ lenny main
deb-src http://ftp.ie.debian.org/debian/ lenny main
deb http://security.debian.org/ lenny/updates main contrib
deb-src http://security.debian.org/ lenny/updates main contrib
deb http://volatile.debian.org/debian-volatile lenny/volatile main contrib
deb-src http://volatile.debian.org/debian-volatile lenny/volatile main contrib
http://backports.org/dokuwiki/doku.php
http://packages.debian.org/lenny-bac...plugin-nonfree
This is what happened when I ran aptitude -t lenny-backports install flashplugin-nonfree
Code:
debian:/home/siawacsh# aptitude -t lenny-backports install flashplugin-nonfree
E: Type 'http://backports.org/dokuwiki/doku.php' is not known on line 16 in source list /etc/apt/sources.list
E: Type 'http://backports.org/dokuwiki/doku.php' is not known on line 16 in source list /etc/apt/sources.list
E: The list of sources could not be read.
E: Type 'http://backports.org/dokuwiki/doku.php' is not known on line 16 in source list /etc/apt/sources.list
E: The list of sources could not be read.
debian:/home/siawacsh#
|
|
|
|
12-24-2009, 06:47 PM
|
#8
|
|
Senior Member
Registered: Jun 2006
Location: England
Distribution: Debian Testing/Unstable Amd64
Posts: 1,467
Rep: 
|
No,the two links i posted were for your information.
So remove those and add the following to your sources.list:
Code:
deb http://www.backports.org/debian lenny-backports main contrib non-free
Then run aptitude update,you'll then get an error regarding the 'key'.
Install the key with:
Code:
aptitude install debian-backports-keyring
Then run aptitude update again,you should now have no errors.
Install the plugin with:
Code:
aptitude -t lenny-backports install flashplugin-nonfree
|
|
|
|
12-24-2009, 06:48 PM
|
#9
|
|
Member
Registered: Jun 2004
Location: Ireland
Distribution: Ubunutu 11.04, Ubuntu 12.04
Posts: 587
Rep:
|
If you could also help with realplayer it would be most appreciated
|
|
|
|
12-24-2009, 07:00 PM
|
#10
|
|
Member
Registered: Jun 2004
Location: Ireland
Distribution: Ubunutu 11.04, Ubuntu 12.04
Posts: 587
Rep:
|
the trooper, you are a gentleman and a scholar. That worked a treat. Now if you can give me some hints to get BBC's iPlayer to work on my iceweasel. Is RealPlayer the only way? As it never aesthetically fitted the browser screen as well as other distros even with the 32 bit Lenny.
I would love to find some reading material dedicated to Debian packages and how to work with sources.list
|
|
|
|
12-24-2009, 07:04 PM
|
#11
|
|
Senior Member
Registered: Jun 2006
Location: England
Distribution: Debian Testing/Unstable Amd64
Posts: 1,467
Rep: 
|
I think BBC's iplayer uses flash??.
|
|
|
|
12-24-2009, 07:11 PM
|
#12
|
|
Member
Registered: Jun 2004
Location: Ireland
Distribution: Ubunutu 11.04, Ubuntu 12.04
Posts: 587
Rep:
|
Yes, your are correct. BBC iPlayer is working!
Once again, thanks a lot and Happy Christmas!
|
|
|
|
12-24-2009, 07:17 PM
|
#13
|
|
Senior Member
Registered: Jun 2006
Location: England
Distribution: Debian Testing/Unstable Amd64
Posts: 1,467
Rep: 
|
Glad to hear it worked.
|
|
|
|
12-27-2009, 10:02 PM
|
#14
|
|
Member
Registered: Jun 2004
Location: Ireland
Distribution: Ubunutu 11.04, Ubuntu 12.04
Posts: 587
Rep:
|
Hi, just thought I ask. I am noticing when playing flash movies I cannot get a full screen which I could with other distros. Do you think this has more to do with iceweasel or the flash player?
|
|
|
|
12-28-2009, 03:27 AM
|
#15
|
|
Senior Member
Registered: Jun 2006
Location: England
Distribution: Debian Testing/Unstable Amd64
Posts: 1,467
Rep: 
|
I use Iceweasel myself and it seems to work,try the link i used:
http://www.youtube.com/watch?v=6O9zMnwD65Q
Double click the play window for full screen mode.
Ps,This link rocks!!.
Last edited by the trooper; 12-28-2009 at 04:10 AM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:01 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|