Here's the deal. I'm moving my movie collection to my server so I can stream them through my xbox via SMB and watch them. no big deal there.
here's my question. I am using 2 drives of 250GB each for this. I want it to appear (from a user standpoint) as if all the movies are in one location.
I don't want to use raid0 because if one fails I lose everything.
Here's my thought. Is it okay to mount two devices to the same mount point? Is this an acceptable process?
I am using slack 10, and I ran the commands:
mount -t ext3 /dev/hdg1 /var/movies
mount -t ext3 /dev/hdh1 /var/movies
and it did it without complaining. I then copied a test .rpm file I already had to /var/movies, and verified it was there.
Then I unmounted both, and then mounted one at a time, and sure enough the data was on one of the drives and not the other.
Is this okay to do?
-greg
P.S. I read this on the man page.
Quote:
Only the super-user may mount and unmount filesystems. Since Linux 2.4
a single filesystem can be visible at multiple mount points, and multi-
ple mounts can be stacked on the same mount point.
|
I'm pretty sure that's what I'm asking, but I wanted to be sure. Thanks.