LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 06-01-2012, 02:39 PM   #1
Alyssumsnow
LQ Newbie
 
Registered: Jun 2012
Location: Texas
Posts: 2

Rep: Reputation: Disabled
Question Which File of Adobe Flash Player Do I Chose?


Alright, so I'm new here and to my new Dell Linux.

The problem I'm having is that I have to upgrade my Adobe Flash player, and I don't know which file to choose. It says .rpm and .tar.gz

Please respond as soon as possible!
 
Old 06-01-2012, 02:44 PM   #2
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,063

Rep: Reputation: Disabled
Better use your distribution's packages manager to do that. Which one is it?
 
Old 06-01-2012, 02:48 PM   #3
Alyssumsnow
LQ Newbie
 
Registered: Jun 2012
Location: Texas
Posts: 2

Original Poster
Rep: Reputation: Disabled
Question

Quote:
Originally Posted by Didier Spaier View Post
Better use your distribution's packages manager to do that. Which one is it?

What is the distribution's packages manager?
 
Old 06-01-2012, 02:57 PM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,063

Rep: Reputation: Disabled
It is a program that automate installation/upgrading/removal of application's packages.

Its name depend on the distribution used, that is why I asked for your distribution's name. Is it Ubuntu, Mint, another one?
 
Old 06-01-2012, 03:01 PM   #5
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Since you're likely new to Linux you may not know how to update software. You don't go to the vendors website. Your Ubuntu installation has a repository where all of the software installed on your system is "registered" (in a basic explanation). The repository also contains applications which you have not installed on your system but can install it optionally.

You can update your software in the Ubuntu Software Center. I recommend installing Synaptic to manage your software as it's more logical.

The name package you need to update for flash is flashplugin-installer.

So that you might relate it to Windows.
Repositories contain a list of packages (both installed on your system and available for download and install).
Packages contain software (similar to Windows setup.exe installers but better).

Installing software is as easy as two clicks: 1 to select the package, 2 to install. It will seem awkward and strange at first since you're used to jumping through hoops like going to the vendors website, searching through hundreds of the vendor website links, and downloading the vendor software through your web browser, and finally once you have it downloaded you need to install it and go through a setup process.

For a more thorough and in depth explanation on Installing software in Ubuntu, Packages, and Repositories see the Installing Software documentation on Ubuntu website.







------------------------------
You could also alternatively update your flash in the terminal.
Code:
sudo apt-get update
sudo apt-get upgrade flashplugin-installer
To see more information about the package you can run the following in the terminal.
Code:
sudo dpkg-query -p flashplugin-installer
You could also update all the software on your system at once with these two commands in the terminal.
Code:
 sudo apt-get update
sudo apt-get upgrade

Last edited by sag47; 06-01-2012 at 03:11 PM.
 
Old 06-01-2012, 03:13 PM   #6
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Just so you know there's a lot of software packages available in Ubuntu. I just counted them up and got 101,820 packages.

Here's how I did the counting in the Terminal.

Code:
cd /var/lib/apt
find . -type f -exec awk '$1 == "Package:" {print $2}' {} \; | wc -l
I currently have 2554 packages installed on my system (includes all packages required for the OS).

In the terminal,
Code:
dpkg-query --list | wc -l
Counting done in Kubuntu 12.04 (upgraded from Kubuntu 10.04).

*EDIT -- I just did another count excluding any duplicate package names across repositories.
Code:
find . -type f -exec awk '$1 == "Package:" {print $2}' {} \; | sort -u | wc -l
That counted up 43,253 software packages.

Still that's a lot of software which is easily found in one centralized place.

Last edited by sag47; 06-01-2012 at 03:18 PM.
 
Old 06-01-2012, 03:17 PM   #7
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,063

Rep: Reputation: Disabled
sag47, please allow the OP to take a few minutes to learn all the Linux commands

Last edited by Didier Spaier; 06-01-2012 at 03:21 PM. Reason: English grammar corrected (I hope)
 
Old 06-01-2012, 03:24 PM   #8
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
@Didier Spaier: true that. I'll try to refrain from getting too technical.

Also I did an apt-cache search and the package for flash is adobe-flashplugin. Appologies for the mistake. You'll find it if you search for flashplugin.
 
Old 06-01-2012, 05:27 PM   #9
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,887
Blog Entries: 28

Rep: Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534
Installing Flash on Ubuntu - http://www.psychocats.net/ubuntu/flash

Lots of helpful docs at:
Community Help Wiki - https://help.ubuntu.com/community
Repositories/Ubuntu - https://help.ubuntu.com/community/Repositories/Ubuntu
Ubuntu Software Centre - http://www.ubuntu.com/ubuntu/feature...oftware-centre
Installing software in Ubuntu - http://www.psychocats.net/ubuntu/installingsoftware
SynapticHowto - https://help.ubuntu.com/community/SynapticHowto
 
  


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
adobe flash player 10 wilkie89 Linux - Newbie 6 11-13-2011 01:28 PM
Adobe flash player help! Thestranger Linux - Newbie 8 05-10-2011 10:54 PM
LXer: Adobe Finally Releases A New Adobe Flash Player 64bit - Yes, For Linux Too! LXer Syndicated Linux News 3 09-16-2010 08:20 AM
Adobe Flash Player Shihabam Linux - Newbie 10 11-15-2009 11:34 AM
LXer: Adobe releases Adobe Flash Player 10 beta for Linux LXer Syndicated Linux News 0 05-16-2008 07:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

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