How can I determine the version of Adobe Flash currently installed?
I would like to find the version number of Adobe Flash currently installed on my Ubuntu system. Adobe's web site says the latest version for Linux is 26.0.0.131, but if I execute
apt show adobe-flashplugin
I get
Package: adobe-flashplugin
Version: 1:20170616.1-0ubuntu0.17.04.1
[...]
but nothing like 26.0.0.131
.
How can I see which Flash version I have installed?
flash versions adobe
add a comment |
I would like to find the version number of Adobe Flash currently installed on my Ubuntu system. Adobe's web site says the latest version for Linux is 26.0.0.131, but if I execute
apt show adobe-flashplugin
I get
Package: adobe-flashplugin
Version: 1:20170616.1-0ubuntu0.17.04.1
[...]
but nothing like 26.0.0.131
.
How can I see which Flash version I have installed?
flash versions adobe
add a comment |
I would like to find the version number of Adobe Flash currently installed on my Ubuntu system. Adobe's web site says the latest version for Linux is 26.0.0.131, but if I execute
apt show adobe-flashplugin
I get
Package: adobe-flashplugin
Version: 1:20170616.1-0ubuntu0.17.04.1
[...]
but nothing like 26.0.0.131
.
How can I see which Flash version I have installed?
flash versions adobe
I would like to find the version number of Adobe Flash currently installed on my Ubuntu system. Adobe's web site says the latest version for Linux is 26.0.0.131, but if I execute
apt show adobe-flashplugin
I get
Package: adobe-flashplugin
Version: 1:20170616.1-0ubuntu0.17.04.1
[...]
but nothing like 26.0.0.131
.
How can I see which Flash version I have installed?
flash versions adobe
flash versions adobe
asked Jun 22 '17 at 21:23
Alexey
326519
326519
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You can visit Adobe's homepage in your browser and use their little Flash version check widget.
http://get.adobe.com/flashplayer/about/
Alternatively try the Check Now button at https://helpx.adobe.com/flash-player.html
I experienced that this is probably the most accurate and reliable way to check the exact version.
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
add a comment |
Start Firefox and open the Add-Ons manager from the menu, then select the Plugins tab in there. It lists all installed plugins, including Flash, with their version.
This is probably correct if one uses theadobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through thepepperflash
packages. See my old question askubuntu.com/q/695569/367990
– Byte Commander
Jun 22 '17 at 21:38
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
add a comment |
You could extract the version number directly from the adobe-flashplugin
library, using a command line syntax like that: strings | grep | awk
strings /usr/lib/adobe-flashplugin/libflashplayer.so|grep LNX|awk '{print $2}'
This will give you e.g.:
26,0,0,151
What version of Ubuntu are you using that you are findinglibflashplayer.so
in/usr/lib/adobe-flashplugin
?
– Elder Geek
Aug 28 '17 at 16:21
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f928228%2fhow-can-i-determine-the-version-of-adobe-flash-currently-installed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can visit Adobe's homepage in your browser and use their little Flash version check widget.
http://get.adobe.com/flashplayer/about/
Alternatively try the Check Now button at https://helpx.adobe.com/flash-player.html
I experienced that this is probably the most accurate and reliable way to check the exact version.
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
add a comment |
You can visit Adobe's homepage in your browser and use their little Flash version check widget.
http://get.adobe.com/flashplayer/about/
Alternatively try the Check Now button at https://helpx.adobe.com/flash-player.html
I experienced that this is probably the most accurate and reliable way to check the exact version.
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
add a comment |
You can visit Adobe's homepage in your browser and use their little Flash version check widget.
http://get.adobe.com/flashplayer/about/
Alternatively try the Check Now button at https://helpx.adobe.com/flash-player.html
I experienced that this is probably the most accurate and reliable way to check the exact version.
You can visit Adobe's homepage in your browser and use their little Flash version check widget.
http://get.adobe.com/flashplayer/about/
Alternatively try the Check Now button at https://helpx.adobe.com/flash-player.html
I experienced that this is probably the most accurate and reliable way to check the exact version.
edited Aug 27 '17 at 13:38
answered Jun 22 '17 at 21:34
Byte Commander
63.1k26171287
63.1k26171287
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
add a comment |
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
It looks like Adobe moved that tool to helpx.adobe.com/flash-player.html
– Elder Geek
Aug 26 '17 at 22:48
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
@ElderGeek Moved? My old link still works as well. Yours seems to do the job too though, so I'm adding it to the answer if you don't mind.
– Byte Commander
Aug 27 '17 at 13:37
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
Feel free. I must have missed that widget.
– Elder Geek
Aug 27 '17 at 16:06
add a comment |
Start Firefox and open the Add-Ons manager from the menu, then select the Plugins tab in there. It lists all installed plugins, including Flash, with their version.
This is probably correct if one uses theadobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through thepepperflash
packages. See my old question askubuntu.com/q/695569/367990
– Byte Commander
Jun 22 '17 at 21:38
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
add a comment |
Start Firefox and open the Add-Ons manager from the menu, then select the Plugins tab in there. It lists all installed plugins, including Flash, with their version.
This is probably correct if one uses theadobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through thepepperflash
packages. See my old question askubuntu.com/q/695569/367990
– Byte Commander
Jun 22 '17 at 21:38
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
add a comment |
Start Firefox and open the Add-Ons manager from the menu, then select the Plugins tab in there. It lists all installed plugins, including Flash, with their version.
Start Firefox and open the Add-Ons manager from the menu, then select the Plugins tab in there. It lists all installed plugins, including Flash, with their version.
edited Jun 22 '17 at 21:36
Byte Commander
63.1k26171287
63.1k26171287
answered Jun 22 '17 at 21:25
ravery
5,43351132
5,43351132
This is probably correct if one uses theadobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through thepepperflash
packages. See my old question askubuntu.com/q/695569/367990
– Byte Commander
Jun 22 '17 at 21:38
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
add a comment |
This is probably correct if one uses theadobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through thepepperflash
packages. See my old question askubuntu.com/q/695569/367990
– Byte Commander
Jun 22 '17 at 21:38
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
This is probably correct if one uses the
adobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through the pepperflash
packages. See my old question askubuntu.com/q/695569/367990– Byte Commander
Jun 22 '17 at 21:38
This is probably correct if one uses the
adobe-flashplugin
package, but it is e.g. known to not always be accurate if you have Flash through the pepperflash
packages. See my old question askubuntu.com/q/695569/367990– Byte Commander
Jun 22 '17 at 21:38
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
if using pepperflash t give perrers vers, minde says ver 26
– ravery
Jun 22 '17 at 21:40
add a comment |
You could extract the version number directly from the adobe-flashplugin
library, using a command line syntax like that: strings | grep | awk
strings /usr/lib/adobe-flashplugin/libflashplayer.so|grep LNX|awk '{print $2}'
This will give you e.g.:
26,0,0,151
What version of Ubuntu are you using that you are findinglibflashplayer.so
in/usr/lib/adobe-flashplugin
?
– Elder Geek
Aug 28 '17 at 16:21
add a comment |
You could extract the version number directly from the adobe-flashplugin
library, using a command line syntax like that: strings | grep | awk
strings /usr/lib/adobe-flashplugin/libflashplayer.so|grep LNX|awk '{print $2}'
This will give you e.g.:
26,0,0,151
What version of Ubuntu are you using that you are findinglibflashplayer.so
in/usr/lib/adobe-flashplugin
?
– Elder Geek
Aug 28 '17 at 16:21
add a comment |
You could extract the version number directly from the adobe-flashplugin
library, using a command line syntax like that: strings | grep | awk
strings /usr/lib/adobe-flashplugin/libflashplayer.so|grep LNX|awk '{print $2}'
This will give you e.g.:
26,0,0,151
You could extract the version number directly from the adobe-flashplugin
library, using a command line syntax like that: strings | grep | awk
strings /usr/lib/adobe-flashplugin/libflashplayer.so|grep LNX|awk '{print $2}'
This will give you e.g.:
26,0,0,151
edited Dec 4 '18 at 11:08
Melebius
4,45751838
4,45751838
answered Aug 26 '17 at 22:16
Christian DELAIR
11
11
What version of Ubuntu are you using that you are findinglibflashplayer.so
in/usr/lib/adobe-flashplugin
?
– Elder Geek
Aug 28 '17 at 16:21
add a comment |
What version of Ubuntu are you using that you are findinglibflashplayer.so
in/usr/lib/adobe-flashplugin
?
– Elder Geek
Aug 28 '17 at 16:21
What version of Ubuntu are you using that you are finding
libflashplayer.so
in /usr/lib/adobe-flashplugin
?– Elder Geek
Aug 28 '17 at 16:21
What version of Ubuntu are you using that you are finding
libflashplayer.so
in /usr/lib/adobe-flashplugin
?– Elder Geek
Aug 28 '17 at 16:21
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f928228%2fhow-can-i-determine-the-version-of-adobe-flash-currently-installed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown