Post History
Don't try to move to 64 bit if your system isn't using 64 bit kernel. The solution is pretty is for Debian-based linux. sudo dpkg --add-architecture amd64 sudo apt-get update sudo apt-get -f ins...
Answer
#1: Initial revision
**Don't try to move to 64 bit if your system isn't using 64 bit kernel.** The solution is pretty is for Debian-based linux. ```bash sudo dpkg --add-architecture amd64 sudo apt-get update sudo apt-get -f install sudo apt-get install libexif12:amd64 libpulse0:amd64 ``` [Cross-grading][1] an `i386` userspace to `amd64` is also possible, but it's far more complicated and risky. [1]: https://wiki.debian.org/CrossGrading [Reference](https://unix.stackexchange.com/a/271505)