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
status
not learned
measured difficulty
37% [default]
last interval [days]
repetition number in this series
0
memorised 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.