PDA

View Full Version : How to install Flash, Simple steps!



charonsecurity
2013-03-18, 12:09
If you built your own custom iso / distribution, it is possible that Flash was left out. To install flash, first insure your sources.list is correct. http://wiki.debian.org/Derivatives/Census/Kali apt-get update.

** Edit, please use only the official repos, as the above will likely break your installation.
http://docs.kali.org/general-use/kali-linux-sources-list-repositories

To install flash issue these commands:

apt-get install flashplugin-nonfree

Optionally to update flash:

update-flashplugin-nonfree --install

Enjoy!

jerichodotm
2013-03-21, 06:23
Best solution ever to this continual annoyance..

Sunkist
2013-03-25, 05:09
I keep getting this error.

E: Unable to locate package flashplugin-nonfree

sickn3ss
2013-03-26, 03:27
Sunkist, make sure you got all the right repos set in your source.list than do an:


apt-get update

Afterwards see if it works.

hackajar
2013-03-26, 20:44
Sorry, but I need to put this here (OCD) to help people like me that enjoy explicit and consistent instructions.

1.) Check that your repositories are correct

vi /etc/apt/sources.list
File should look like this

deb http://http.kali.org/kali kali main non-free contrib
deb-src http://http.kali.org/kali kali main non-free contrib
deb http://security.kali.org/kali-security kali/updates main contrib non-free
2.) Update everything first - insures any dependencies are cleared before install

apt-get update

apt-get upgrade

apt-get dist-upgrade
3.) Get your Flash on

apt-get install flashplugin-nonfree

update-flashplugin-nonfree --install

testingresults
2013-03-30, 04:31
Sorry, but I need to put this here (OCD) to help people like me that enjoy explicit and consistent instructions.

***

2.) Update everything first - insures any dependencies are cleared before install

apt-get update
apt-get upgrade
apt-get dist-upgrade

***




For the sake of your OCD ;)

hackajar
2013-04-02, 00:17
@testingreults done!

isaac
2013-04-12, 11:02
This worked great for me, thanks.

undersc0re
2013-07-01, 01:47
I get the E: error as well

tried vi /etc/apt/sources.list and get the following

#deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot i386 LIVE/INSTALL Binary 20130327-18:35]/ kali contrib main non-free

tried apt-get update and get this:

root@kali:~# apt-get update
Reading package lists... Done
root@kali:~# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

I don't think I have it pointing to the internet location, I am totally new to linux so I am not sure which simple step I am missing, something to do with pointing updates to an online location I assume.

charonsecurity
2013-07-01, 06:40
I get the E: error as well
tried vi /etc/apt/sources.list and get the following
#deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot i386 LIVE/INSTALL Binary 20130327-18:35]/ kali contrib main non-free


Add these to your sources.list
nano /etc/apt/sources.list

deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali-dev main contrib non-free
deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali-dev main/debian-installer
deb-src http://http.kali.org/kali kali-dev main contrib non-free

deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali main contrib non-free
deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali main/debian-installer
deb-src http://http.kali.org/kali kali main contrib non-free

deb [arch=i386,amd64,armel,armhf] http://security.kali.org/kali-security kali/updates main contrib non-free
deb-src http://security.kali.org/kali-security kali/updates main contrib non-free

then apt-get update

leevai
2013-07-02, 09:30
worked well for me! thanx

venom
2013-07-29, 21:49
Add these to your sources.list
nano /etc/apt/sources.list

deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali-dev main contrib non-free
deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali-dev main/debian-installer
deb-src http://http.kali.org/kali kali-dev main contrib non-free

deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali main contrib non-free
deb [arch=i386,amd64,armel,armhf] http://http.kali.org/kali kali main/debian-installer
deb-src http://http.kali.org/kali kali main contrib non-free

deb [arch=i386,amd64,armel,armhf] http://security.kali.org/kali-security kali/updates main contrib non-free
deb-src http://security.kali.org/kali-security kali/updates main contrib non-free

then apt-get update
as a nood may i ask you how to add these sources plz

charonsecurity
2013-08-01, 12:47
open a terminal, using the command: nano /etc/apt/sources.list

Then simply copy and paste all the lines with deb in front of them.

Hit control and O key to save the file. Control x to exit, then issue the command: apt-get update.

Vicer
2013-10-02, 12:03
Thanks a lot for this!

~N3ONPONY
2013-10-07, 09:35
Thanks so much
I try find how to install flash to kali linux.
Now i hav installed flash to iceweasel browser.
Thanks so Much:)

Zuhayer Tahir
2014-04-12, 06:04
Thanks, this helped me.