0

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?

muru
  • 207,228
Ramesh
  • 1

1 Answers1

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
  • 207,228