On Tue, 27 Nov 2001, Ray Curtis wrote:

> >>>>> "sl" == sachin lamsoge <[EMAIL PROTECTED]> writes:
>
> sl> thanks for ur reply,
> sl> but how do i do that?
> sl> kindly give me the set of commands required to do
> sl> that.
>
> Not sure if I remember exactly what this thread was about, but
> as I remember you were trying to mount a iso on a ftp server so
> how about for the first iso:
>
> mount -o loop -t iso9660 /tmp/enigma-i386-disc1.iso /mnt
>
> Then do your ftp install or upgrade from that machine.
>
> sl> --- Trond Eivind Glomsrød <[EMAIL PROTECTED]> wrote:
> >> sachin lamsoge <[EMAIL PROTECTED]> writes:
> >>
> >> > how do i mount it on the ftp server.
> >>
> >> The contents of both CDs should be in one directory.

Nope. It is documented in the Red Hat docs somewhere (since at least 7.1,
maybe 7.0) that the files need to be in the same directory as Trond says.

So, if you have the disk space, copy all the files from RedHat/RPMS of
both CDs to one directoy, otherwise I'd try something like

mkdir /mnt/disk1
mount -o loop -t iso9660 /tmp/enigma-i386-disc1.iso /mnt/disk1
mkdir /mnt/disk2
mount -o loop -t iso9660 /tmp/enigma-i386-disc2.iso /mnt/disk2
mkdir rh7
cd rh7
for rpm in /mnt/disk[12]/RedHat/RPMS/*
do
 ln -s $file
done

This is off the cuff and untested, but I don't see why it wouldn't work.

hth
charles



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to