Re: Mounting few Iso's on the same point

2002-10-08 Thread Alon Barzilai
thnaks, that what I was looking for. I tried it, and it does not produce anything. I do not know much perl. I used the debugger and saw that in the lines foreach my $name (grep(!/^(\.|\.\.)$/, readdir(DIRHANDLE))) and while (($key,$value) = each %symlinks) the script never continue inside

Re: Mounting few Iso's on the same point

2002-10-08 Thread Ehud Karni
On Tue, 8 Oct 2002 00:13:39 +0200, Ilya Konstantinov [EMAIL PROTECTED] wrote: 1. Mount the ISOs into different directories. 2. Use my union utility to consolidate the different directories into one single directory. It creates directories and symbolic links as necessary, so that the target

Re: Mounting few Iso's on the same point

2002-10-08 Thread Alon Barzilai
thanks, works great. Alon. Ehud Karni wrote: On Tue, 8 Oct 2002 00:13:39 +0200, Ilya Konstantinov [EMAIL PROTECTED] wrote: 1. Mount the ISOs into different directories. 2. Use my union utility to consolidate the different directories into one single directory. It creates directories and

Re: Mounting few Iso's on the same point

2002-10-08 Thread Ilya Konstantinov
On Tue, Oct 08, 2002 at 11:18:44AM +0200, Alon Barzilai wrote: any adea ? Something was very weird in the script. I've fixed it now and an updated version is online. In fact, this new version works better than the original, since it handles both relative and absolute paths correctly, e.g.:

Re: Mounting few Iso's on the same point

2002-10-08 Thread Mark Veltzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 08 October 2002 00:13, you wrote: On Monday 07 October 2002 16:01, Alon Barzilai wrote: mount -t iso9660 -o ro 1.iso /mnt/disk1 mount -t iso9660 -o ro 2.iso /mnt/disk1 This is called union mount. Linux does not have this feature (I

Mounting few Iso's on the same point

2002-10-07 Thread Alon Barzilai
hi, how can mount few iso images to the same mount point ? I tried mount -t iso9660 -o ro 1.iso /mnt/disk1 mount -t iso9660 -o ro 2.iso /mnt/disk1 and I can see only the 2nd image files. I remember a few months ago someone metioned something similar here, but I could not find this message.

Re: Mounting few Iso's on the same point

2002-10-07 Thread Official Flamer/Cabal NON-Leader
Quoth Alon Barzilai: how can mount few iso images to the same mount point ? You cannot mount two anyhthing on the same mount point. Or, rather, you can but the second mount is, in fact, an overmount - hiding the previous device's files. -- ---OFCNL This is MY list. This list belongs to

Re: Mounting few Iso's on the same point

2002-10-07 Thread Ilya Konstantinov
On Monday 07 October 2002 16:01, Alon Barzilai wrote: mount -t iso9660 -o ro 1.iso /mnt/disk1 mount -t iso9660 -o ro 2.iso /mnt/disk1 This is called union mount. Linux does not have this feature (I think BSD has it). I remember a few months ago someone metioned something similar here, but