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 time being. # mkdir -p /srv/home # 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 . <span># rsync -av /home/* /srv/home/ OR # 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/
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.