Så som et lille tip .. hvis du vil afprøve GIMP 2.9 så kan du anvende følgende script til at installere det (afinstallere 2.8 ... og 2.9). Begge scripts er testet og afprøvet på min 16.04 LTS installation, og leveres selvfølgelig med alle de forbehold der nu engang hører til at .
Kode: Vælg alt
#Afinstaller GIMP 2.8 og installer 2.9
sudo apt purge gimp -y
sudo apt autoremove -y
sudo rm /etc/apt/sources.list.d/otto-kesselgulasch*
sudo add-apt-repository ppa:otto-kesselgulasch/gimp-edge -y
sudo apt update
sudo apt install -y gimp gimp-lensfun gimp-plugin-registry gimp-texturize
Hvis du vil gendanne GIMP 2.8 kan du bruge følgende script
Kode: Vælg alt
## Gendan GIMP 2.8
sudo apt purge gimp gimp-lensfun gimp-plugin-registry gimp-texturize -y
sudo apt purge libgimp2.0 -y
sudo apt autoremove -y
sudo rm /etc/apt/sources.list.d/otto-kesselgulasch*
sudo add-apt-repository ppa:otto-kesselgulasch/gimp -y
sudo apt update
sudo apt install -y gimp gimp-lensfun gimp-plugin-registry gimp-texturize
Du kan finde en mini guide til GIMP'en her, som er anvendt til undervisningsbrug: http://www.vidas.dk/foto/guide_gimp.html