Removing i386 architechture from debian
I decided I was going to start using skype in a docker container, so I don’t need any of the i386 packages anymore.
Going back to a pure 64bit OS is quite simple:
apt-get purge ".*:i386"
dpkg --remove-architecture i386
The purge command is similar to remove, but it also deletes any configuration file.