Installer Scratch 2 sur Solidr’net / Ubuntu / Mint

Scratch_Cat-croppedScratch 2 à besoin de Adobe AIR pour fonctionner, un nouveau Flash qui va encore poser des problèmes sur GNU/Linux. Voici les instructions pour installer tout ce petit monde sur un système 32 bits, tiré de cet article.

 

– Télécharger Adobe Air 2.6 en cliquant ici.

– Ouvrir un terminal et y copier chacunes des lignes suivantes  en les validant avec la touche « Entrée ». Aller dans le dossier où vous avez téléchargé, « Téléchargements » par défaut .
cd Téléchargements/

– Exécuter ces commandes en les copiant dans le terminal et en les valider avec la touche « Entrée »(source):

sudo chmod +x AdobeAIRInstaller.bin

suivi de votre mot de passe (pour toutes les commande commençant par sudo).

locate libgnome-keyring.so

affiche un truc de ce genre :

/usr/lib/i386-linux-gnu/libgnome-keyring.so.0
/usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0

En fonction du résultat, lancer la commande suivante en ajustant le chemin en gras si nécessaire:
sudo LD_LIBRARY_PATH=/usr/lib/i386-linux-gnu ./AdobeAIRInstaller.bin

Adobe Air 2.6 s’installe dans /opt/Adobe AIR/Versions/1.0.

– Télécharger Scratch 2.0 Offline Editor via ce lien (dans la colonne n°2, cliquer sur le lien de la version linux : « Linux – Download« ).

– Exécuter cette commande pour installer Scratch 2.0 Offline Editor en remplaçant solidrnet par votre nom d’utilisateur:
/opt/Adobe\ AIR/Versions/1.0/Adobe\ AIR\ Application\ Installer /home/solidrnet/Téléchargements/Scratch*.air

Scratch 2.0 Offline Editor est maintenant dans le menu

Scratch 2 installé sur Solidr'net V4

Scratch 2 installé sur Solidr’net V4

 

Lien Permanent pour cet article : https://informatiquemauleonais.centres-sociaux.fr/installer-scratch-2-sur-solidrnet-ubuntu-mint/

7 Commentaires

Passer au formulaire de commentaire

    • lozano sur 11 février 2016 à 15 h 13 min
    • Répondre

    Bonjour à tous,
    un petit script bash pour automatiser tout ça :


    #!/bin/bash
    #script pour installation Scratch2 et Air sous Debian
    #définition des couleurs d'affichage
    neutre='\e[0;m'
    vertclair='\e[1;32m'

    #Fonction qui affiche [OK] en vert clair
    function okzed
    {
    echo -e "${vertclair}[OK]${neutre}"
    }

    echo -e "INSTALLATION DE SCRATCH2 SOUS DEBIAN\n Téléchargement des dernières versions\n de Adobe Air et de Scratch2 dans un dossier temporaire créé sur le Bureau\n puis installation et nettoyage au choix !"
    sudo mkdir $HOME/Bureau/installScratch2
    sudo wget -P $HOME/Bureau/installScratch2 http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
    echo -n "Téléchargement AdobeAir ... "
    okzed
    cd $HOME/Bureau/installScratch2
    sudo chmod +x AdobeAIRInstaller.bin
    dirlib=$(readlink -f $(dirname $(locate libgnome-keyring.so.0.2.0)))
    #echo $dirlib
    echo "Lancement de l'installation soyez patient ... "
    sudo LD_LIBRARY_PATH=$dirlib ./AdobeAIRInstaller.bin
    echo -n "Installation AdobeAir ... "
    okzed
    sudo wget -P $HOME/Bureau/installScratch2 https://scratch.mit.edu/scratchr2/static/sa/Scratch-443.air
    echo -n "Téléchargement Scratch2 version 443 ... "
    okzed
    echo "Lancement de l'installation soyez patient ... "
    sudo /opt/Adobe\ AIR/Versions/1.0/Adobe\ AIR\ Application\ Installer $HOME/Bureau/installScratch2/Scratch-443.air
    echo -n "Installation Scratch2 version 443 ... "
    okzed
    read -p "suppression de tous les fichiers d'installation?(o/n) : " reponse
    if [ $reponse = "o" ]
    then
    echo "on supprime BANZAÏ !"
    sudo rm -r $HOME/Bureau/installScratch2
    echo -n "suppression ... "
    okzed
    else
    echo "On garde les fichiers -- pas de nettoyage ! "
    fi
    echo "Appuyer sur Entrée pour quitter!"
    read

    si vous testez, je veux bien des retours…constructifs évidemment!
    Portez vous bien
    Sébastien LOZANO

    1. Merci pour votre script. Il doit fonctionner mais il y a un problème avec le fichier AdobeAIRInstaller.bin qui ne veut pas s’exécuter avec ou sans script.

        • lozano sur 12 février 2016 à 20 h 21 min

        Je n’ai testé que sur une machine virtuelle sous ubuntu Trusty thar.
        Le lancement est un peu long mais il démarre.
        Peut être que ma ligne qui récupère le chemin absolu contenant le fichier libgnome-keyring.so.0.2.0
        ne fonctionne pas sous toutes les distributions, il faudrait que je teste.
        Toutefois c’est curieux que l’installation d’AdobeAIR ne se lance pas sans script.
        Il arrive parfois que le fichier binaire soit incomplet si le téléchargement est perturbé pour une raison x ou y.

        Merci de votre retour.
        Sébastien LOZANO

        • lozano sur 13 février 2016 à 16 h 20 min

        Ma machine virtuelle est une 32bits, est-ce bien le cas de la machine sur laquelle l’installation de AdobeAIR ne se lance pas? Car pour les version 64bits il semble qu’il faille bricoler un peu davantage.
        Je vais modifier le script et faire des essais.

        Sébastien LOZANO

        • lozano sur 13 février 2016 à 23 h 13 min

        Le problème semble surgir lorsque l’on essaye d’installer AdobeAir en éxécutant ces commandes sur une version 64bit d’ubuntu.
        J’ai trouvé une documentation et un script qui fonctionne pour l’installation sur dirverses distributions.
        Je l’ai testé sous ubuntu 14.04-3 Trusty 32 bit, ubuntu 14.04-3 Trusty 64bit et Linux Mint 17.3 Rosa.
        J’ai donc un peu modifié mon script et traduit quelques lignes en anglais.

        ATTENTION LE SCRIPT UNE FOIS ENREGISTRE EST A LANCER EN ROOT AVEC LA COMMANDE SUDO DANS UN TERMINAL.

        Voici la source:


        #!/bin/bash
        #Script written by Sébastien LOZANO sat, 13 feb 2016
        #Installation of Air and Scratch2 under Ubuntu, Mint,...

        #définition des couleurs d'affichage
        neutre='\e[0;m'
        vertclair='\e[1;32m'

        #Fonction qui affiche [OK] en vert clair
        function okzed
        {
        echo -e "${vertclair}[OK]${neutre}"
        }
        #Run under sudo privilege
        if [ $EUID -ne 0 ]; then
        echo "AdobeAir installation script must be run as root."
        echo "Press enter and run this script as root. (Hint: use sudo)" 1>&2
        read
        exit 1
        fi

        echo "
        This script is only for Ubuntu `printf "\e[32m14.04 Trusty"``echo -e "\033[0m"`/`printf "\e[32m14.10 Utopic"``echo -e "\033[0m"`/`printf "\e[32m12.04 Precise"`\n
        `echo -e "\033[0m"` and Linux Mint `printf "\e[32m17 Qiana"``echo -e "\033[0m"`/`printf "\e[32m13 Maya"``echo -e "\033[0m"`/`printf "\e[32m17.3 Rosa"``echo -e "\033[0m"`
        "
        CHKVer=`/usr/bin/lsb_release -rs`
        echo $CHKVer
        TVer=`/usr/bin/lsb_release -rs`
        echo $TVer
        echo "Checking your OS version..."
        CHKArch=`uname -m`
        echo $CHKArch
        echo "Checking your system architecture"
        sleep1
        echo ""
        #Adobe AIR Installation
        if [ $CHKVer = "14.04" ] || [ $CHKVer = "17" ]; then
        #For Ubuntu 14.04 64bit
        if [ $CHKArch = "x86_64" ]; then
        if [ $TVer = "14.04" ]; then
        echo "You are running Ubuntu `printf "\e[32m14.04 Trusty"``echo -e "\033[0m"`"
        elif [ $TVer = "17" ]; then
        echo "You are running Linux Mint `printf "\e[32m17 Qiana"``echo -e "\033[0m"`"
        fi
        echo "Installing dependencies..."
        sleep 1
        apt-get install libxt6:i386 libnspr4-0d:i386 libgtk2.0-0:i386 libstdc++6:i386 libnss3-1d:i386 lib32nss-mdns libxml2:i386 libxslt1.1:i386 libcanberra-gtk-module:i386 gtk2-engines-murrine:i386 libgnome-keyring0:i386 libxaw7
        echo "Linking files..."
        echo "."
        ln -sf /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
        echo ".."
        ln -sf /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
        #Ubuntu 14.04 32bit
        elif [ $CHKArch = "i686" ]; then
        if [ $TVer = "14.04" ]; then
        echo "You are running Ubuntu `printf "\e[32m14.04 Trusty"``echo -e "\033[0m"`"
        elif [ $TVer = "17" ]; then
        echo "You are running Linux Mint `printf "\e[32m17 Qiana"``echo -e "\033[0m"`"
        fi
        echo "Installing dependencies..."
        sleep 1
        apt-get install libgtk2.0-0 libxslt1.1 libxml2 libnss3 libxaw7 libgnome-keyring0
        echo "Linking files..."
        echo "."
        ln -sf /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
        echo ".."
        ln -sf /usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
        fi

        elif [ $CHKVer = "14.10" ]; then
        #For Ubuntu 14.10 64bit
        if [ $CHKArch = "x86_64" ]; then
        echo "You are running Ubuntu `printf "\e[32m14.10 Utopic"``echo -e "\033[0m"`"
        echo "Installing dependencies..."
        sleep 1
        apt-get install libxt6:i386 libnspr4-0d:i386 libgtk2.0-0:i386 libstdc++6:i386 libnss3-1d:i386 lib32nss-mdns libxml2:i386 libxslt1.1:i386 libcanberra-gtk-module:i386 gtk2-engines-murrine:i386 libgnome-keyring0:i386 libxaw7
        echo "Linking files..."
        echo "."
        ln -sf /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
        echo ".."
        ln -sf /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
        #Ubuntu 14.10 32bit
        elif [ $CHKArch = "i686" ]; then
        echo "You are running Ubuntu `printf "\e[32m14.10 Utopic"``echo -e "\033[0m"`"
        echo "Installing dependencies..."
        sleep 1
        apt-get install libgtk2.0-0 libxslt1.1 libxml2 libnss3 libxaw7 libgnome-keyring0
        echo "Linking files..."
        echo "."
        ln -sf /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
        echo ".."
        ln -sf /usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
        fi

        elif [ $CHKVer = "12.04" ] || [ $CHKVer = "13" ]; then
        #Ubuntu 12.04 32bit
        if [ $CHKArch = "i686" ]; then
        if [ $TVer = "12.04" ]; then
        echo "You are running Ubuntu `printf "\e[32m12.04 Precise"``echo -e "\033[0m"`"
        elif [ $TVer = "13" ]; then
        echo "You are running Linux Mint `printf "\e[32m13 Maya"``echo -e "\033[0m"`"
        fi
        echo "Installing dependencies..."
        sleep 1
        apt-get install libhal-storage1 libgnome-keyring0 libgnome-keyring0 libgtk2.0-0 libxslt1.1 libxml2
        echo "Linking files..."
        echo "."
        ln -sf /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
        echo ".."
        ln -sf /usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
        #Ubuntu 12.04 64bit
        elif [ $CHKArch = "x86_64" ]; then
        if [ $TVer = "12.04" ]; then
        echo "You are running Ubuntu `printf "\e[32m12.04 Precise"``echo -e "\033[0m"`"
        elif [ $TVer = "13" ]; then
        echo "You are running Linux Mint `printf "\e[32m13 Maya"``echo -e "\033[0m"`"
        fi
        echo "Installing dependencies..."
        sleep 1
        apt-get install ia32-libs lib32nss-mdns libhal-storage1 libgnome-keyring0 libgnome-keyring0 libgtk2.0-0 libxslt1.1 libxml2
        echo "Symbolic linking files..."
        echo "."
        ln -sf /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
        echo ".."
        ln -sf /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
        fi
        elif [ $CHKVer = "17.3" ]; then
        #For Linux Mint 17.3 64bit
        if [ $CHKArch = "x86_64" ]; then
        echo "You are running Linux Mint `printf "\e[32m17.3 Rosa"``echo -e "\033[0m"`"
        fi
        else
        echo "You are not running Ubuntu `printf "\e[32m14.04 Trusty"``echo -e "\033[0m"`/`printf "\e[32m14.10 Utopic"``echo -e "\033[0m"`/`printf "\e[32m12.04 Precise"`\n
        `echo -e "\033[0m"` and Linux Mint `printf "\e[32m17 Qiana"``echo -e "\033[0m"`/`printf "\e[32m13 Maya"``echo -e "\033[0m"`/`printf "\e[32m17.3 Rosa"``echo -e "\033[0m"`"
        sleep 1
        echo "Exiting..."
        exit 1
        fi
        mkdir $HOME/Bureau/installScratch2
        echo "Downloading AdobeAir Installer from Adobe site"
        sleep 1
        wget -P $HOME/Bureau/installScratch2 http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
        echo -n "AdobeAir Download ... "
        okzed
        echo -n "Making installer executable ... "
        okzed
        sleep 1
        chmod +x $HOME/Bureau/installScratch2/AdobeAIRInstaller.bin
        if [ $CHKVer = "17.3" ]; then
        #For Linux Mint 17.3 64bit
        if [ $CHKArch = "x86_64" ]; then
        echo "You are running Linux Mint `printf "\e[32m17.3 Rosa"``echo -e "\033[0m"`"
        dirlib=$(readlink -f $(dirname $(locate libgnome-keyring.so.0.2.0)))
        echo "Running Adobe Air installer be patient ... "
        LD_LIBRARY_PATH=$dirlib $HOME/Bureau/installScratch2/AdobeAIRInstaller.bin
        echo -n "Adobe Air Installation ... "
        okzed
        fi
        else

        echo "Running Adobe Air installer be patient ... "
        $HOME/Bureau/installScratch2/AdobeAIRInstaller.bin
        echo -n "Adobe Air Installation ... "
        okzed
        echo -n "Removing installer file and unlinking symbolic files ..."
        rm $HOME/Bureau/installScratch2/AdobeAIRInstaller.bin
        rm /usr/lib/libgnome-keyring.so.0
        rm /usr/lib/libgnome-keyring.so.0.2.0
        okzed
        fi
        echo ""
        #Scratch2 Installation
        echo "Downloading Scratch2 ver.443 from Adobe site"
        sleep 1
        wget -P $HOME/Bureau/installScratch2 https://scratch.mit.edu/scratchr2/static/sa/Scratch-443.air
        echo -n "Scratch2 ver.443 Download... "
        okzed
        echo "Running Scratch2 installer be patient ... "
        /opt/Adobe\ AIR/Versions/1.0/Adobe\ AIR\ Application\ Installer $HOME/Bureau/installScratch2/Scratch-443.air
        echo -n "Scratch2 ver.443 Installation ... "
        okzed
        read -p "Removing installer files?(o/n) : " rep
        if [ $rep = "o" ]
        then
        echo "Removing ... BANZAÏ !"
        sudo rm -r $HOME/Bureau/installScratch2
        echo -n "Removing ... "
        okzed
        else
        echo "Keeping files -- no cleaning ! "
        fi
        echo "Press Enter to quit!"
        read

        Sébastien LOZANO

    • Jobar sur 8 novembre 2015 à 13 h 12 min
    • Répondre

    Au moment de l’installation Adobe AIR me dit Désolé une erreur s'est produite.

    L'application n'a pas pu être installée, car le fichier d'installation est endommagé. Essayez d'obtenir un nouveau fichier d'installation auprès de l'éditeur de l'application.

    !?

    • Gilles Baufreton sur 8 avril 2015 à 15 h 25 min
    • Répondre

    Bonjour,
    Installation réalisée avec succès sur mon pc distribution Linux Mint 17.1 Rebecca
    nb: pour mettre Scratch 2 en français, dans la barre de menu cliquer sur le globe et choisir sa langue
    Gilles

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée.

Aller au contenu principal