Adobe Flashplayer 11.1.102.55(noticed 11 Nov 2011)

Browsers, email, chat, etc.
Message
Author
nooby
Posts: 10369
Joined: Sun 29 Jun 2008, 19:05
Location: SwedenEurope

#21 Post by nooby »

Semme you are right. Now that you remind me that was how easy
it really was. I needed your words to remind me how I did it.
I only remembered that it was super easy and not how one did it. :)

playdayz says
Slacko and Lucid/3HD have the GetFlash utility by 01micko that downloads and installs the latest flashplayer. It doesn't use any extra space--it just overwrites the old libflashplayer.so. It can be used when one hears of a new flashplayer version or just every week to be safe
I use Google Search on Puppy Forum
not an ideal solution though

User avatar
Tman
Posts: 808
Joined: Sat 22 Jan 2011, 21:39
Location: Toronto

#22 Post by Tman »

Here is a script to get flashplayer from the smokey01.com. I will be updating regularly. When I get behind on the news of new releases, you can just pm me.

Code: Select all

#!/bin/sh
# Tman
# START -------
LOCATION="http://www.smokey01.com/Tman/apps/"
PACKAGE="current-Flashplayer.pet"
ABOUT_FILE="About_current-Flashplayer.txt"
set -x
clear
# check if the /tmp/pet folder exists; if not, then create it
if [ -d /tmp/pet ];then
  cd /tmp/pet
else
  mkdir /tmp/pet
  cd /tmp/pet
  sleep 1
fi
#
# download the about_file
wget $LOCATION$ABOUT_FILE
DESCRIPTION="`cat /tmp/pet/$ABOUT_FILE`"
# if about_file got downloaded then contiunue; else abort
if [ -f /tmp/pet/$ABOUT_FILE ];then
  # Ask user if he/she wished to download the package
  Xdialog --center --title "Get-Package" --icon "/usr/share/doc/flashlogo.gif" --yesno $DESCRIPTION"\n\nDo you wish to download this package?" 0 0
  if [ $? -eq 0 ];then
    rm -f /tmp/pet/*.pet 2>/dev/null #tidy-up; in case of duplicate files
    rm -f /tmp/pet/$ABOUT_FILE 2>/dev/null
    rm -f /tmp/pet/wget-log* 2>/dev/null
    sleep 1
    #get the package_file
    rxvt -e wget $LOCATION$PACKAGE
    #make sure the file downloaded
    sleep 1
    if [ -f /tmp/pet/$PACKAGE ];then
      # if wget error message exists
      if [ -f /tmp/pet/wget-log ]; then
        Xdialog --title Abort --beep --msgbox " The download has been cancelled." 0 0
        # tidy-up after user cancels wget download
        rm -f /tmp/pet/$PACKAGE 2>/dev/null
        rm -f /tmp/pet/$ABOUT_FILE 2>/dev/null
        rm /tmp/pet/wget-log* 2>/dev/null
      # if download wasn't cancelled, continue with install
      else
        cp /tmp/pet/$PACKAGE /tmp/pet/package.pet
        /usr/local/petget/installpkg.sh /tmp/pet/package.pet
        yaf-splash -bg orange -text "Refreshing menus, please wait..." &
        fixmenus
        Xdialog --title Success! --beep --msgbox "If you want to keep a copy of the downloaded file,
        please move it from the /tmp/pet folder to your desired location." 0 0
        rox /tmp/pet
      fi
    #if file didn't download
    else
    Xdialog --title Notice --beep --msgbox " An error occured while trying to download the package." 0 0
    fi
  # when user says no to downloading the package, remove the about_file
  else
    rm -f /tmp/pet/$ABOUT_FILE 2>/dev/null
  fi
# if the about file isn't downloaded, abort
else
Xdialog --center --title "Abort" --msgbox "The location of the target file was not found.\n\nEither the file is missing, or you are not connected to the internet." 0 0
fi
# END ---
I will make a pet at a later time, but I'm feeling lazy today as I did quite a few hours of work on my new pup yesterday.

The script gets the 'current-Flashplayer.pet' from here.

EDIT: sorry the code I previously uploaded was an older version. I have corrected it and have tested to confirm it works.
Last edited by Tman on Tue 15 Nov 2011, 19:33, edited 1 time in total.

User avatar
Tman
Posts: 808
Joined: Sat 22 Jan 2011, 21:39
Location: Toronto

#23 Post by Tman »

As promised, here is the pet to install the adobe flashplayer plugin.
This one gets it from the smokey01 repo, so you not need to worry about Adobe changing the location or name of the target file. And I will keep it up to date.
Attachments
Get-currentFlashpayer.pet
(1.51 KiB) Downloaded 643 times

MoebusNet
Posts: 89
Joined: Sat 04 Jun 2011, 20:50

#24 Post by MoebusNet »

I hope this is the right thread...anyway I installed the Install Flashplayer pet from the 5.28 thread link. It worked great, but the wording of the GUI instructions don't quite match the selections on Adobe's website. It might be confusing for newbies who aren't sure of their Linux version, 32-bit vs 64-bit etc.

I've included a screenshot of the GUI vs the webpage wording for clarity.
Attachments
flashplayer_install.jpg
(69.26 KiB) Downloaded 489 times
Acer Aspire One D255-2301 (N450 Atom @ 1.6 Ghz, 1 Gb RAM, 160 Gb HDD w/WinXP, ENE SD card reader, Alps touchpad) 5.28/5.3.1 via manual-frugal ext4 USB flash drive (4Gb) using GRUB4DOS

Necrimah
Posts: 1
Joined: Sat 07 Jan 2012, 01:21

Flash player 11 pet

#25 Post by Necrimah »

I just wanted to give a proper thanks to "tman" for his flash player 11 installation pet. I was at my wits end, as far as installing flash and was on
the verge of pulling out all my hair. since my head is shaved clean, I was
almost entirely without hope. Thanks to you My problem is solved.

Thank you.

Post Reply