Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
How to back up with cp ?
Answer
# cp -aR /home/* /srv/home/

Question
How to back up with cp ?
Answer
?

Question
How to back up with cp ?
Answer
# cp -aR /home/* /srv/home/
If you want to change selection, open document below and click on "Move attachment"

How to Move Home Directory to New Partition or Disk in Linux
# mount /dev/sdb1 /srv/home Then move the content of /home into /srv/home (so they will be practically stored in /dev/sdb1) using rsync command or cp command . # rsync -av /home/* /srv/home/ OR <span># cp -aR /home/* /srv/home/ After that, we will find the difference between the two directories using the diff tool , if all is well, continue to the next step. # diff -r /home /srv/home Afterwards, delete all the

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.