I'm unable to get my Ubuntu Desktop GUI. I tried from recovery mode but able to accessing GRUB and file system mounting in root mode. How do I backup data?
Asked
Active
Viewed 33 times
1 Answers
0
Okay, here goes: How to get your home folder backed up all safe and sound. So, your home folder is always located at
/home/yourusername
What you are going to want to do is exactly this:
cp -R /home/yourusername /your/target/goes/here
The -R
here tells the cp
command to be recursive. It will copy the folder itself, and the subfolders. This will back up your whole home folder.

muru
- 197,895
- 55
- 485
- 740