2016-05-18

Additional stuff to install on Windows

This time we use a apt-get similar tool to install (and update) programs on windows.

First you have to install Chocolatey as a package manager. Therefore You have to open cmd.exe as Administrator and type the following:

@powershell -NoProfile -ExecutionPolicy Bypass -Command "[System.Net.WebRequest]::DefaultWebProxy.Credentials = [System.Net.CredentialCache]::DefaultCredentials; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET PATH="%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

The next step is to install the programs you want, here is a suggestion from me:

all:
choco install -y 7zip.install adobereader audacity avidemux blender ccleaner ChocolateyGUI chromium dropbox ext2fsd filezilla Firefox freeplane ganttproject Ghostscript.app gimp googledrive InfraRecorder InkScape jre8 keepass keystore-explorer.portable libreoffice lyx miktex notepadplusplus.install openvpn pidgin putty scribus skype speccy teamviewer texniccenter thunderbird veracrypt vlc winscp

just free software:
choco install -y 7zip.install audacity avidemux blender ChocolateyGUI chromium ext2fsd filezilla Firefox freeplane ganttproject Ghostscript.app gimp InfraRecorder InkScape keepass keystore-explorer.portable libreoffice lyx miktex notepadplusplus.install openvpn  pidgin putty scribus texniccenter thunderbird veracrypt vlc winscp

I hope this makes it easier for you to install this on a fresh system.

2016-04-26

Problems when upgrade Ubuntu 10.10 to 11.04

If you want to upgrade Ubuntu 10.10 to Ubuntu 11.04 you might get stuck with the following problem:

Could not calculate the upgrade

An unresolvable problem occurred while calculating the upgrade:

E:Error, pkgProblemResolver::Resolve generated breaks, caused by held packages.

This can be caused by:
* Upgrading to a pre-release version of Ubuntu
* Running the current pre-release version of Ubuntu
* Unofficial software packages not provided by Ubuntu

If none of this applies, then please report this bug against the 'update-manager' package and include the files in /var/log/dist-upgrade/ in the bug report.


There is a Bug on Launchpad
( https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/775289 ) which describes the problem and helped me to find a solution.

The problem had to do with Ubuntu 10.04 and newer versions of files there which made it impossible for the update-manager ( or do-release-upgrade in terminal ) to find a valid state because of broken dependencies.

So if you look at /var/log/dist-upgrade/apt.log and search for 10.04 you will find the packages which make troubles.

I had to manually download the following packages from
http://old-releases.ubuntu.com/ubuntu/pool/main/n/nspr/libnspr4-0d_4.8.6-0ubuntu1_i386.deb
http://old-releases.ubuntu.com/ubuntu/pool/main/n/nss/libnss3-1d_3.12.9+ckbi-1.82-0ubuntu0.10.10.3_i386.deb
http://old-releases.ubuntu.com/ubuntu/pool/main/o/openjdk-6/openjdk-6-jre-headless_6b20-1.9.13-0ubuntu1~10.10.1_i386.deb
http://old-releases.ubuntu.com/ubuntu/pool/main/o/openjdk-6/openjdk-6-jre-lib_6b20-1.9.13-0ubuntu1~10.10.1_all.deb

In terminal in the directory where you downloaded the files you can install them with:

sudo dpkg -i filename1 filename2 ...

After that the upgrade went smooth!