Skip to main content
Topic: install artix over an old distro (Read 470 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

install artix over an old distro

Hi
I have Manjaro and I want to install Artix.
I want to keep my HOME directory and I don't know how to do that.
please help.

is there anyway to use GUI installer with base-artix iso?

Re: install artix over an old distro

Reply #1
0. The base ISO is console only.

1. Connect an external hard disk and create a tar archive of your home dir (the paths below are examples):
Code: [Select]
tar cvf /path/to/disk/home.tar /home/USER
If you don't have one, you can use rsync backup to a remote box:
Code: [Select]
rsync -aP /home/USER user@host:/location/of/backup

2. Make sure the backup is created and in good condition before you continue!

3. Install Artix, use "Erase disk" in the calamares partition setup tab. Boot into the new installation and untar the backup. This is basic UNIX knowledge, search the web for how to untar. If you untar directly on your new home dir, you'll overwrite the nice default settings and theme of Artix and your desktop and apps will look ugly. Selectively copy your files and directories, especially avoiding ~/.config, ~/.local and most files/dirs beginning with a dot (.) -- or you can copy everything and then use the contents of /etc/skel into your homedir to restore the theme. Keep the backup until you confirm all your settings (passwords, keys and such) are transferred.

4. Profit. It's not the most comprehensive how-to, but Artix is geared towards more advanced users.