versie van Linux opvragen
Type in de terminal:
lsb_release -a
Geinstalleerde software opvragen :
dpkg --get-selections
dpkg --get-selections | grep flash
Software extra geinstalleerd door mij
Wil niet zeggen dat u dat ook moet doen
amor : AMOR, or Amusing Misuse Of Resources
geany
gftp
gnome-commander
gparted
gwenview
imagemagick
jhead
pdksh
vuze
xfburn
Downloader met bittorents : Vuze. Zit niet meer standaard bij Mint 18.
Handmatig installleren via https://wiki.vuze.com/w/Initial_Setup_Guide#Manual_install_from_Vuze_website
Om van 17 naar 17.1 te upgraden heb ik deze handleiding moeten toepassen :
http://linuxg.net/how-to-properly-upgrade-from-linux-mint-17-qiana-to-linux-mint-17-1-rebecca-via-command-line/
Hieronder de instructie :
$ sudo cp /etc/apt/sources.list.d/official-package-repositories.list{,.bak}
OR, if you are not familiar with wildcards, do:
$ sudo cp /etc/apt/sources.list.d/official-package-repositories.list /etc/apt/sources.list.d/official-package-repositories.list.bak
Next, we have to replace qiana with rebecca, in the sources file.
Instead of doing this by hand, taking the lines one by one, I will be using this sed oneliner:
$ sudo sed -i 's/qiana/rebecca/g' /etc/apt/sources.list.d/official-package-repositories.list
Now, in order to finish the upgrade process, we have to update the local repository index and perform a regular system upgrade:
$ sudo apt-get update
$ sudo apt-get dist-upgrade
Revert the changes, only if the upgrade process does not finalize successfully:
Replace the modified sources list with the backup:
$ sudo rm /etc/apt/sources.list.d/official-package-repositories.list
$ sudo mv /etc/apt/sources.list.d/official-package-repositories.list.bak /etc/apt/sources.list.d/official-package-repositories.list
Upgrade the repository index and perform a system upgrade:
$ sudo apt-get update
$ sudo apt-get dist-upgrade