Hello, I am wondering if it would be good idea to try KDE Neon based on Ubuntu LTS rather than Debian. The reason is to have latest KDE because current one has some issues and also if possible to utilize BTRFS filesystem rather than EXT4, + to use larger SSD drive than current one.
https://lumo.proton.me suggested me backup (on Debian):
dpkg --get-selections > ~/pkglist.txt && \
sudo tar czpf ~/backup.tgz /etc /var/lib/dpkg $HOME/.config $HOME/.local
Restore (on Neon):
sudo dpkg --set-selections < ~/pkglist.txt && sudo apt-get dselect-upgrade
sudo tar xzpf ~/backup.tgz -C /
(-p is for preserving permissions from archive)
I should likely snapshot (using timeshift) the system before restore and for simplicity backup /etc/apt/ or whole /etc using "cp" or "rsync"..
Do you have any feedback to this approach? Ideally if you can share better or additional commands or steps.
https://lumo.proton.me suggested me backup (on Debian):
dpkg --get-selections > ~/pkglist.txt && \
sudo tar czpf ~/backup.tgz /etc /var/lib/dpkg $HOME/.config $HOME/.local
Restore (on Neon):
sudo dpkg --set-selections < ~/pkglist.txt && sudo apt-get dselect-upgrade
sudo tar xzpf ~/backup.tgz -C /
(-p is for preserving permissions from archive)
I should likely snapshot (using timeshift) the system before restore and for simplicity backup /etc/apt/ or whole /etc using "cp" or "rsync"..
Do you have any feedback to this approach? Ideally if you can share better or additional commands or steps.




Comment