Posts

Showing posts with the label APT

Convert Debian amd64 to multi-arch

Do following steps... sudo dpkg --add-architecture i386 sudo sed -i 's/deb\ /deb\ [arch=amd64,i386]\ /g' /etc/apt/sources.list sudo apt-get clean; sudo apt-get autoclean; sudo apt-get update After that you can install the packages that only support i386 such like skype. Enjoy it!

Upgrade Your Debian to testing after System installed

Do following steps to upgrade your system when you first time login: Edit your /etc/apt/sources.lst Replace lenny with testing (besides violatile package) Save & exit # apt-get autoclean # apt-get clean # apt-get update # apt-get -t testing upgrade # apt-get -t testing dist-upgrade After that, you're in testing environment now.