Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread Ted Unangst
On Fri, Jan 16, 2009 at 5:10 AM, Jon Sjvstedt wrote: > I still want the same structure as before, but i dont want to mount wd1d > in a directory that is inside wd0d. > > If mount would accept something like > > mount /bananas/pictures /dev/wd0d/pictures > mount /bananas/others /dev/wd0d/others > m

Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread Jon Sjöstedt
If you wish to contribute there are clarifications for my somewhat unclear initial post. If you have not seen them, read the digest. > How do you think file systems are mounted on top of / ? > > On 2009 Jan 16 (Fri) at 11:10:23 +0100 (+0100), Jon Sjvstedt wrote: > :I still want the same structure a

Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread Peter Hessler
How do you think file systems are mounted on top of / ? On 2009 Jan 16 (Fri) at 11:10:23 +0100 (+0100), Jon Sjvstedt wrote: :I still want the same structure as before, but i dont want to mount wd1d :in a directory that is inside wd0d. -- Never call a man a fool. Borrow from him.

Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread uw
Why do You not use links? 1. mkdir /mnt/wd0 /mnt/wd1 2. mount /dev/wd0d /mnt/wd0 3. mount /dev/wd1d /mnt/wd1 4. cd /bananas 5. ln -s /mnt/wd0/* . 6. ln -s /mnt/wd1/* . Regards Uwe > Hello all patient! > Another clarification attempt :) > I have a drive. Lets call it wd0. It has one partition wd0

Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread Ariane van der Steldt
On Fri, Jan 16, 2009 at 11:10:23AM +0100, Jon Sj?stedt wrote: > Hello all patient! > Another clarification attempt :) > I have a drive. Lets call it wd0. It has one partition wd0d that fills up > the whole drive. The root of wd0d has three directories (and no other > files) music, pictures and othe

Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread Jon Sjöstedt
Hello all patient! Another clarification attempt :) I have a drive. Lets call it wd0. It has one partition wd0d that fills up the whole drive. The root of wd0d has three directories (and no other files) music, pictures and others. wd0d is mounted at /bananas The music directory of wd0d grows and s

Re: Mount directories of unmounted disks/partitions

2009-01-16 Thread jared r r spiegel
On Thu, Jan 15, 2009 at 10:46:35PM +0100, Jon Sj?stedt wrote: > I want a > mounting point in the root file system to be mounted with a directory > found inside a device that is not yet mounted. I also want this > transparent to samba and NFS (I'll use both). so: - you have a device, /dev/wd0d.

Re: Mount directories of unmounted disks/partitions

2009-01-15 Thread Paul M
On 16/01/2009, at 10:46 AM, Jon Sjvstedt wrote: Hello, On Thu, Jan 15, 2009 at 1:30 PM, Jon Sjvstedt wrote: Hello all! I have an issue with mount. The problem is that i would like to create a directory with subdirs. On the subdirs I would mount directories of not yet mounted disks. Example

Re: Mount directories of unmounted disks/partitions

2009-01-15 Thread Jon Sjöstedt
> Hello, > > On Thu, Jan 15, 2009 at 1:30 PM, Jon Sjvstedt > wrote: >> >> Hello all! >> I have an issue with mount. The problem is that i would like to create >> a >> directory with subdirs. On the subdirs I would mount directories of not >> yet mounted disks. Example >> >> mount /stuff/data1 /wd

Re: Mount directories of unmounted disks/partitions

2009-01-15 Thread Ariane van der Steldt
On Thu, Jan 15, 2009 at 04:30:09PM +0100, Jon Sj?stedt wrote: > I have an issue with mount. The problem is that i would like to create a > directory with subdirs. On the subdirs I would mount directories of not > yet mounted disks. Example > > mount /stuff/data1 /wd0d/dataa > mount /stuff/data2 /

Mount directories of unmounted disks/partitions

2009-01-15 Thread Jon Sjöstedt
Hello all! I have an issue with mount. The problem is that i would like to create a directory with subdirs. On the subdirs I would mount directories of not yet mounted disks. Example mount /stuff/data1 /wd0d/dataa mount /stuff/data2 /wd0d/datab mount /stuff/data3 /wd1d mount /stuff/data4 /wd2d/da