<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
On 28/04/10 14:00, Chris Martin wrote:
<blockquote
 cite="mid:l2zad2a7a4a1004272100v85dca174s9a830c88b21dce9c@mail.gmail.com"
 type="cite">
  <meta http-equiv="Context-Type"
 content="text/html; charset=ISO-8859-1">
Peter.<br>
  <br>
This the short version...<br>
Contact me if you need more specific instructions<br>
</blockquote>
<br>
A few suggestions, given that this was the short version.&nbsp; :-)<br>
<br>
<blockquote
 cite="mid:l2zad2a7a4a1004272100v85dca174s9a830c88b21dce9c@mail.gmail.com"
 type="cite"><br>
Once you have the drive installed.<br>
  <br>
use "gparted" - this is a GUI tool that will partition and format the
new disk<br>
</blockquote>
<br>
I'm not sure if gparted allows you to specify a label for the
filesystem.&nbsp; If it doesn't, then you can add one later (with e2label),
but i would strongly recommend adding a label, since then it makes no
difference where the disk is connected.&nbsp; I would suggest a label of
something like "/home".<br>
<br>
<blockquote
 cite="mid:l2zad2a7a4a1004272100v85dca174s9a830c88b21dce9c@mail.gmail.com"
 type="cite"> The mount it in a convenient location (say /mnt)<br>
  <br>
Copy your existing /home to /mnt - takeing care to preserve permissions
and ownership<br>
</blockquote>
<br>
rsync is probably the best way to do this: you would run "rsync -SHavx
/home/ /mnt/" (don't miss the trailing slashes).<br>
<br>
<blockquote
 cite="mid:l2zad2a7a4a1004272100v85dca174s9a830c88b21dce9c@mail.gmail.com"
 type="cite"> umount /mnt,<br>
  <br>
mount your drive as /home - this will replace the directory /home with
the content of the drive (however the original data in /home will still
be preserved, just not accessible while the drive is mounted)<br>
  <br>
test..&nbsp; test.. test..<br>
  <br>
if all goes well, unmount /home,<br>
double check it is unmounted ...&nbsp; and check again<br>
  <br>
delete the origional /home contents<br>
  <br>
mount the drive as /home (again)<br>
</blockquote>
<br>
Great advice there - mounting over the contents allows an absolutely
painless recovery method if it doesn't work: just unmount the
filesystem and you're back exactly where you were.<br>
<br>
<blockquote
 cite="mid:l2zad2a7a4a1004272100v85dca174s9a830c88b21dce9c@mail.gmail.com"
 type="cite">edit /etc/fstab to make the change persistant across
reboot and have /home mounted automatically on reboot<br>
</blockquote>
<br>
When you edit fstab, use LABEL=/home for the device instead of
/dev/sdb1 or whatever you've been using so far.&nbsp; That way, you can move
the drive around without any issues.<br>
<br>
Paul<br>
</body>
</html>