Jump to content

Hi all so I have grown quite bored of vanilla arch Linux and I really like Linux mint since it just works. Now the only thing keeping me back from doing so is that I don't wanna lose all my files etc. I have heard ppl say I can backup my /home folder and copy it or something like that but I have no clue how to do that. Any help regarding this will appreciated thanks in advance 馃檪

Link to comment
Share on other sites

Link to post
Share on other sites

Shit I just checked a stack exchange question and I realized my home and root partition are both on the same partition... I can't do the migration...聽

Link to comment
Share on other sites

Link to post
Share on other sites

Btw if I use LMDE instead of normal LM will I be having older packages or no?聽

Link to comment
Share on other sites

Link to post
Share on other sites

34 minutes ago, goatedpenguin said:

Hi all so I have grown quite bored of vanilla arch Linux and I really like Linux mint since it just works. Now the only thing keeping me back from doing so is that I don't wanna lose all my files etc. I have heard ppl say I can backup my /home folder and copy it or something like that but I have no clue how to do that. Any help regarding this will appreciated thanks in advance 馃檪

You can use a terminal program called rsync to help you migrate. But you'll need an EXT4 formatted 2nd drive.

rsync -avxs <source> <destination>

Use rsync to copy your home directory to a 2nd drive, and then use rsync to copy from your 2nd drive to your newly installed Linux Mint home.

Here's an example if I were to do it on my own system.

# this will copy "lloyd" into "2ndDrive" (resulting in /mnt/2ndDrive/lloyd)
rsync -avxs /home/lloyd /mnt/2ndDrive/

# and copy back to the new OS:
rsync -avxs /mnt/2ndDrive/lloyd /home/

Pay attention to where you put forward slashes, rsync might act differently than you expect if you don't.

The reason we use rsync is because with the "-avxs" flags it will retain permissions and all the other stuff to keep it a faithful copy of data.

41 minutes ago, goatedpenguin said:

Btw if I use LMDE instead of normal LM will I be having older packages or no?聽

Yes or no. Depends on which version of Debian (LMDE) or Ubuntu (normal LM) that it's based on.

This table should help you figure it out. https://linuxmint.com/download_all.php

Quote my reply or I won't see your reply. It's the single overturning left arrow under every message.

Link to comment
Share on other sites

Link to post
Share on other sites

You are losing your "I use Arch by the way" privileges

My Main rig: i7-4790, Asus z97c, Radeon HD 7850 (2gig), Fractal Design Focus G.

My Laptop: Dell Latitude e5410, Tiny 11, 8gb ram, i5-450m 120 gig SSD.

Beware Yankees I'm a Louisianan聽聽*Rebel Yell*

Link to comment
Share on other sites

Link to post
Share on other sites

20 minutes ago, Drvulcanlord said:

You are losing your "I use Arch by the way" privileges

Noooooooooo

I use mint btw.

Link to comment
Share on other sites

Link to post
Share on other sites

1 hour ago, LloydLynx said:

You can use a terminal program called rsync to help you migrate. But you'll need an EXT4 formatted 2nd drive.

rsync -avxs <source> <destination>

Use rsync to copy your home directory to a 2nd drive, and then use rsync to copy from your 2nd drive to your newly installed Linux Mint home.

Here's an example if I were to do it on my own system.

# this will copy "lloyd" into "2ndDrive" (resulting in /mnt/2ndDrive/lloyd)
rsync -avxs /home/lloyd /mnt/2ndDrive/

# and copy back to the new OS:
rsync -avxs /mnt/2ndDrive/lloyd /home/

Pay attention to where you put forward slashes, rsync might act differently than you expect if you don't.

The reason we use rsync is because with the "-avxs" flags it will retain permissions and all the other stuff to keep it a faithful copy of data.

Yes or no. Depends on which version of Debian (LMDE) or Ubuntu (normal LM) that it's based on.

This table should help you figure it out. https://linuxmint.com/download_all.php

Thanks I will try it out ASAP! Will I run into any compatibility issues etc.?聽

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, goatedpenguin said:

Thanks I will try it out ASAP! Will I run into any compatibility issues etc.?聽

Maybe, maybe not. You'll probably be able to fix whatever kinks you run into along the way. It's just the user directory, not system files.

Quote my reply or I won't see your reply. It's the single overturning left arrow under every message.

Link to comment
Share on other sites

Link to post
Share on other sites

9 minutes ago, goatedpenguin said:

Thanks I will try it out ASAP! Will I run into any compatibility issues etc.?聽

I think this is the guide I used to move multiple directories to their own dedicated partitions in the past, including Home but also directories for Docker.

https://help.ubuntu.com/community/Partitioning/Home/Moving

No compatibility issues, just make sure you have nothing running while you move stuff that is writing to the directories in question.

Best run rsync more than once to make sure it doesn't copy anything the second time, meaning everything is in sync.

Remember to either quote or @mention others, so they are notified of your reply

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now