2

I have Ubuntu 14.04 64-bit with a bunch of apps and configurations.

I want to move all that to another computer with a fresh install of Ubuntu 14.04 32-bit.

Is this possible? Can I simply use TimeShift?

Fiksdal
  • 2,121

1 Answers1

2

Backup your current apps and config file

 dpkg --get-selections "*" > app   # or use \*
 debconf-get-selections > appconfig.txt

Install your app in new system.

 dselect update
 debconf-set-selections < appconfig.txt
 dpkg --set-selections < app
 apt-get -u dselect-upgrade    # or dselect install
sohel4r
  • 464