* "Hyper-Mount" option possible???
@ 2000-11-23 15:55 Robert L Martin
2000-11-23 17:09 ` H. Peter Anvin
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Robert L Martin @ 2000-11-23 15:55 UTC (permalink / raw)
To: linux-kernel
Not on list just throwing an idea out.
One thing that "bugs" me is if a given drive has more than one partion
each partion has to be mounted seperatly.
With CDs this also means you can not mount "split" cds in full if you
want to. Soo Given that Super-Mount is already taken, How about (in
2.5??) hashing out a Hypermount option.
The way it could work is if you mount a full drive say "hdd" and have
each partion mounted on a tree from the mount point
of the drive.
Robert L Martin
Just wishing i could mount the mac side of an AOL cd without mangling
mounting normal cds
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: "Hyper-Mount" option possible??? 2000-11-23 15:55 "Hyper-Mount" option possible??? Robert L Martin @ 2000-11-23 17:09 ` H. Peter Anvin 2000-11-24 8:22 ` Mark W. McClelland 2000-11-25 20:31 ` Timur Tabi 2 siblings, 0 replies; 5+ messages in thread From: H. Peter Anvin @ 2000-11-23 17:09 UTC (permalink / raw) To: linux-kernel Followup to: <3A1D3DF9.9199C744@earthlink.net> By author: Robert L Martin <robertlmarti@earthlink.net> In newsgroup: linux.dev.kernel > > Not on list just throwing an idea out. > One thing that "bugs" me is if a given drive has more than one partion > each partion has to be mounted seperatly. > With CDs this also means you can not mount "split" cds in full if you > want to. Soo Given that Super-Mount is already taken, How about (in > 2.5??) hashing out a Hypermount option. > The way it could work is if you mount a full drive say "hdd" and have > each partion mounted on a tree from the mount point > of the drive. > This sounds a lot like cdfs. -hpa -- <hpa@transmeta.com> at work, <hpa@zytor.com> in private! "Unix gives you enough rope to shoot yourself in the foot." http://www.zytor.com/~hpa/puzzle.txt - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "Hyper-Mount" option possible??? 2000-11-23 15:55 "Hyper-Mount" option possible??? Robert L Martin 2000-11-23 17:09 ` H. Peter Anvin @ 2000-11-24 8:22 ` Mark W. McClelland 2000-11-24 11:44 ` Helge Hafting 2000-11-25 20:31 ` Timur Tabi 2 siblings, 1 reply; 5+ messages in thread From: Mark W. McClelland @ 2000-11-24 8:22 UTC (permalink / raw) To: Robert L Martin; +Cc: linux-kernel Robert L Martin wrote: > > Not on list just throwing an idea out. > One thing that "bugs" me is if a given drive has more than one partion > each partion has to be mounted seperatly. > With CDs this also means you can not mount "split" cds in full if you > want to. Soo Given that Super-Mount is already taken, How about (in > 2.5??) hashing out a Hypermount option. This would also make it easier to mount media that only have one partition. For example, some of my Zip disks have to be mounted as "sdb", some as "sdb1", and some as "sdb4", depending on what OS formatted it. I think this might also be good for multisession CDs, though I'm not really sure how they are currently handled. > The way it could work is if you mount a full drive say "hdd" and have > each partion mounted on a tree from the mount point > of the drive. This would require mount to check for a partition table first, since "hdd" could either mean "hdd as a partitionless device" or "all devices on hdd". This check could probably even be done in user space, along with "hyper-mount". Maybe someone has done it already; I'll have to check freshmeat :) -- Mark McClelland mwm@i.am - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "Hyper-Mount" option possible??? 2000-11-24 8:22 ` Mark W. McClelland @ 2000-11-24 11:44 ` Helge Hafting 0 siblings, 0 replies; 5+ messages in thread From: Helge Hafting @ 2000-11-24 11:44 UTC (permalink / raw) To: mwm, linux-kernel, linux-kernel "Mark W. McClelland" wrote: > > Robert L Martin wrote: > > > > Not on list just throwing an idea out. > > One thing that "bugs" me is if a given drive has more than one partion > > each partion has to be mounted seperatly. > > With CDs this also means you can not mount "split" cds in full if you > > want to. Soo Given that Super-Mount is already taken, How about (in > > 2.5??) hashing out a Hypermount option. > > This would also make it easier to mount media that only have one > partition. For example, some of my Zip disks have to be mounted as > "sdb", some as "sdb1", and some as "sdb4", depending on what OS > formatted it. > > I think this might also be good for multisession CDs, though I'm not > really sure how they are currently handled. > > > The way it could work is if you mount a full drive say "hdd" and have > > each partion mounted on a tree from the mount point > > of the drive. > > This would require mount to check for a partition table first, since > "hdd" could either mean "hdd as a partitionless device" or "all devices > on hdd". This check could probably even be done in user space, along > with "hyper-mount". Maybe someone has done it already; I'll have to > check freshmeat :) This looks like a job for a script. I.e. no kernel change necessary. The script could go something like this: 1. User invokes with "hypermount sdb" in case of the sdb device 2. The script creates a /mnt/sdb directory 3. The script creates a /mnt/sdb/sdb<n> directory for each sdb1, sdb2,... found in /dev 4. /dev/sdb1 is then mounted on /mnt/sdb/sdb1 and so on. You may also want some checks that the device isn't mounted already, remove subdirectories that didn't mount (error return from the "mount" command) A "hyper-umount sdb" would simply umount every directory under /mnt/sdb/ This isn't really a kernel issue, you may want to discuss this with distribution maintainers instead. Helge Hafting - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "Hyper-Mount" option possible??? 2000-11-23 15:55 "Hyper-Mount" option possible??? Robert L Martin 2000-11-23 17:09 ` H. Peter Anvin 2000-11-24 8:22 ` Mark W. McClelland @ 2000-11-25 20:31 ` Timur Tabi 2 siblings, 0 replies; 5+ messages in thread From: Timur Tabi @ 2000-11-25 20:31 UTC (permalink / raw) To: linux-kernel ** Reply to message from Robert L Martin <robertlmarti@earthlink.net> on Thu, 23 Nov 2000 10:55:38 -0500 > Soo Given that Super-Mount is already taken, How about (in > 2.5??) hashing out a Hypermount option. How about calling it "multi-mount"? I think it's more accurate. -- Timur Tabi - ttabi@interactivesi.com Interactive Silicon - http://www.interactivesi.com When replying to a mailing-list message, please direct the reply to the mailing list only. Don't send another copy to me. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2000-11-25 21:02 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2000-11-23 15:55 "Hyper-Mount" option possible??? Robert L Martin 2000-11-23 17:09 ` H. Peter Anvin 2000-11-24 8:22 ` Mark W. McClelland 2000-11-24 11:44 ` Helge Hafting 2000-11-25 20:31 ` Timur Tabi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox