<br><font size=2 face="sans-serif">I've realized that LVM is perhaps more
than I need to simply add a disk to my linux setup for &nbsp;use exclusively
by recordings. &nbsp;So I used fdisk to create the partition, mkfs to format
the drive partition, edited my /etc/fstab to add the drive partition and
mounted the drive. &nbsp;I then copied my recordings from where the were
to the new mount and went into mythtvsetup to drict future recordings to
be located in my new partition. &nbsp;I fired up the front end and went
to watch recordings and to my delight, my existing recordings were there
(thanks to the copy).</font>
<br>
<br><font size=2 face="sans-serif">For a linux newbie, this seemed like
a daunting task (what I would not sweat in Windows) but if you know what
to do, it's a piece of cake. &nbsp;I didn't write down my exact tasks,
but from memory, I've recaptured them here. &nbsp;Of course, this will
be obvious to most of you, but I wanted to note it for the newbie....please
add appropriate comments if I've noted something wrong or took the wrong
course of action.</font>
<br>
<br><font size=2 face="sans-serif">Assumes ide environment vs. scsi</font>
<br><font size=2 face="sans-serif">Note.....you will destroy all the data
on the new drive you want to add and if you screw up, you could even screw
up your Myth/Linux drive too, so make a backup first (which of course I
didn't)</font>
<br>
<br><font size=2 face="sans-serif">Create partition:</font>
<br><font size=2 face="sans-serif"># fdisk /dev/hdX (where X = my new drive:
&nbsp;hda is primary ide master, hdb is primary slave, hdc is secondary
master and hdd is secondary slave)</font>
<br><font size=2 face="sans-serif">option n to create &nbsp;a new partition</font>
<br><font size=2 face="sans-serif">primary partition (option n)</font>
<br><font size=2 face="sans-serif">Y (where Y is my partition selection
(I chose option 1 for the 1st partition)</font>
<br><font size=2 face="sans-serif">option w to write to disk (no turning
back here)</font>
<br>
<br><font size=2 face="sans-serif"># mkfs.ext3 -T largefile4 -m 0 /dev/hdXY
&nbsp; (where X = new drive and Y is partition number)</font>
<br><font size=2 face="sans-serif">(used the following site for help: &nbsp;http://www.mythtv.org/docs/mythtv-HOWTO-22.html#ss22.4</font>
<br>
<br><font size=2 face="sans-serif"># gedit /etc/fstab</font>
<br><font size=2 face="sans-serif">added a line in fstab</font>
<br><font size=2 face="sans-serif">(used the following site for help: &nbsp;http://www.humbug.org.au/talks/fstab/fstab.html</font>
<br><font size=2 face="sans-serif">&nbsp;/dev/hdX1 &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; /john &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; ext3 &nbsp; &nbsp;defaults &nbsp; &nbsp; &nbsp; &nbsp;0
0 &nbsp; &nbsp;</font>
<br><font size=2 face="sans-serif">note....the /john is the mountpoint
I chose</font>
<br>
<br><font size=2 face="sans-serif">Next mount the drive so Linux sees it
(still an odd concept to me)</font>
<br><font size=2 face="sans-serif"># mount &nbsp;/john (where /john is
the mountpoint I defined above)</font>
<br>
<br><font size=2 face="sans-serif">next, copy my recordings from their
current location to the new drive</font>
<br><font size=2 face="sans-serif">#cp -a /var/lib/mythtv/* /john &nbsp;
(where /var.lib/mythtv is the location of my recordings as defined in mythtvsetup
&nbsp;step 1 page 2)</font>
<br>
<br><font size=2 face="sans-serif">Now go into mythtvsetup and have mythtv
store recordings in the new drive</font>
<br><font size=2 face="sans-serif"># mythtvsetup</font>
<br><font size=2 face="sans-serif">Under General, page to &quot;Where to
store recodings&quot; &nbsp;/john</font>
<br>
<br><font size=2 face="sans-serif">Finish</font>
<br>
<br>
<br>