Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Wed, 21 Dec 2022 at 04:18, Lee wrote: > On 12/20/22, David wrote: > > $ echo -e '100:CD001\nXXX\n200:CD001' | awk 'BEGIN { FS=":" ; done=0 } > > /CD001/ && done==0 { print $1 - 50 ; done=1 }' > > 50 > > You can do it without flags: > > $ echo -e '100:CD001\nXXX\n200:CD001' | awk -F: '/CD001/

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Thomas Schmitt
Hi, i meanwhile had a chance to inspect the image file and found that it shows a repeating pattern of bytes with value 255 every 2352 bytes. This corresponds to the size of medium level CD sectors, as can be obtained by SCSI command "READ CD" (e.g. via Linux ioctl CDROMREADRAW). CD-DA audio secto

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread Lee
On 12/20/22, David wrote: > On Tue, 20 Dec 2022 at 22:04, David wrote: >> On Tue, 20 Dec 2022 at 22:02, David wrote: > >> > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && >> > NR==1 { print $1 - 50 }' >> > 50 >> >> Oops, my mistake, that's not the solution. Give me another m

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread Stefan Monnier
> Not that that is always important. But I just commented today > because so often 'awk' is ignored as if its only capability is 'print $1' > when in fact it is actually very powerful but neglected. FWIW, `sed` can also do that job. Tho the subtraction part would take a lot more work (`sed` does

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 22:04, David wrote: > On Tue, 20 Dec 2022 at 22:02, David wrote: > > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && > > NR==1 { print $1 - 50 }' > > 50 > > Oops, my mistake, that's not the solution. Give me another minute and I > will post a better one

Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread Thomas Schmitt
Hi, The Wanderer wrote: > With the '-o' option, grep prints only the parts of the line that were > matched - but the plural here is very relevant. If that guess is > correct, then the "line" in question has *four* occurrences, so grep > prints them all - each on a separate line of output. The man

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > Kernel logs say "isofs_fill_super: get root inode failed". So there is more stuff inserted between the volume descriptor and the root directory of the ISO. (The descriptor contains a minimal directory record which points to the content of the root directory. All attribut

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 22:02, David wrote: > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && > NR==1 { print $1 - 50 }' > 50 Oops, my mistake, that's not the solution. Give me another minute and I will post a better one one.

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 21:53, The Wanderer wrote: > On 2022-12-20 at 05:37, David wrote: > > On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote: > >> On 2022-12-20 at 02:51, Thomas Schmitt wrote: > >>> This contradicts the promises of man grep about option -m. > >> It does seem to, at least at a

use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread The Wanderer
On 2022-12-20 at 05:37, David wrote: > On Tue, 20 Dec 2022 at 21:10, The Wanderer > wrote: > >> On 2022-12-20 at 02:51, Thomas Schmitt wrote: >>> This contradicts the promises of man grep about option -m. >> >> It does seem to, at least at a glance - but I think I've figured >> out what's going

Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote: > On 2022-12-20 at 02:51, Thomas Schmitt wrote: > >>> offst=$( expr \ > >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \ > >>> | sed -e 's/:/ /' \ > >>> | awk '{ print $1 }' ) - 32769 ) > > > > The Wande

'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread The Wanderer
On 2022-12-20 at 02:51, Thomas Schmitt wrote: > Hi, > > i wrote: >>> To obtain the offset of the first occurence of "CD001", do >>> >>> offst=$( expr \ >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \ >>> | sed -e 's/:/ /' \ >>> | awk '{ print $1 }' )

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Yvan Masson
So the new safer proposal is: offst=$( expr \ $( grep -a -o -b -m 1 CD001 cdimage.iso \ | head -1 \ | sed -e 's/:/ /' \ | awk '{ print $1 }' ) - 32769 ) Afterwards $offst should hold a number > 0, which may be used with mo

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, i wrote: > > To obtain the offset of the first occurence of "CD001", do > > > > offst=$( expr \ > > $( grep -a -o -b -m 1 CD001 cdimage.iso \ > > | sed -e 's/:/ /' \ > > | awk '{ print $1 }' ) - 32769 ) The Wanderer wrote: > Cutting down the comm

Re: Can't mount CD image of Win95 game

2022-12-19 Thread The Wanderer
On 2022-12-19 at 16:07, Thomas Schmitt wrote: > Hi, > > Yvan Masson wrote: >> I am really not at ease using tools like hexdump, > > I pondered a bit more. If it's an ISO filesystem wrapped into some header > and maybe a footer, then mount option -o offset= could help. > > To obtain the offset o

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > I am really not at ease using tools like hexdump, I pondered a bit more. If it's an ISO filesystem wrapped into some header and maybe a footer, then mount option -o offset= could help. To obtain the offset of the first occurence of "CD001", do offst=$( expr \

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Le 19/12/2022 à 16:34, Thomas Schmitt a écrit : Hi, i wrote: dd if=cdimage.iso bs=1 count=64 | od -t c Yvan Masson wrote: 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 This does not give m

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, i wrote: > >dd if=cdimage.iso bs=1 count=64 | od -t c Yvan Masson wrote: > 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001 > 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 This does not give me ideas. > >strings cdimage.iso | head -1

Re: Can’t mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Le 19/12/2022 à 15:25, Kamil Jońca a écrit : Yvan Masson writes: Hi list, I have a CD image of an old Win 95 game. I can mount it from dosbox with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not mount it with Debian: $ file cdimage.iso cdimage.iso: data $ sudo mount

Re: Can’t mount CD image of Win95 game

2022-12-19 Thread Kamil Jońca
Yvan Masson writes: > Hi list, > > I have a CD image of an old Win 95 game. I can mount it from dosbox > with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but > could not mount it with Debian: > > $ file cdimage.iso > cdimage.iso: data > > $ sudo mount cdimage.iso /mnt -o loop > moun

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Hi Thomas, Le 19/12/2022 à 13:28, Thomas Schmitt a écrit : Hi, Yvan Masson wrote: I have a CD image of an old Win 95 game. [...] $ file cdimage.iso cdimage.iso: data So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced. (Does the image file perhaps begin by "RIFFCDXA" ?)

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > I have a CD image of an old Win 95 game. [...] > $ file cdimage.iso > cdimage.iso: data So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced. (Does the image file perhaps begin by "RIFFCDXA" ?) What do you get from the following runs ? dd if=cdimage

Can’t mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Hi list, I have a CD image of an old Win 95 game. I can mount it from dosbox with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not mount it with Debian: $ file cdimage.iso cdimage.iso: data $ sudo mount cdimage.iso /mnt -o loop mount: /mnt/sshfs: wrong fs type, bad opt

Re: Failed to install: "Detect and mount CD-ROM" failed

2007-05-09 Thread Douglas Allan Tutty
On Wed, May 09, 2007 at 10:11:48AM -0700, Andrew Sackville-West wrote: > On Wed, May 09, 2007 at 10:54:34AM +0100, Stephen Turner wrote: > > Andrew Sackville-West wrote: > > > Thanks for your reply, Andrew. > > > > I don't have much information about the optical drive, but Windows > > reports th

Re: Failed to install: "Detect and mount CD-ROM" failed

2007-05-09 Thread Andrew Sackville-West
t; >> Boot from CD, choose language and location, and then it fails to find > >> the CD drive: > >> > > > Detect and mount CD-ROM > > > No common CD-ROM drive was detected. > >> > >> I have previously installed on an even newer laptop from th

Re: Failed to install: "Detect and mount CD-ROM" failed

2007-05-09 Thread Stephen Turner
Andrew Sackville-West wrote: On Tue, May 08, 2007 at 12:14:53PM +0100, Stephen Turner wrote: > Trying to install etch from the netinst CD on a two-month old desktop > machine. > > Boot from CD, choose language and location, and then it fails to find > the CD drive: > > De

Re: Failed to install: "Detect and mount CD-ROM" failed

2007-05-08 Thread Andrew Sackville-West
On Tue, May 08, 2007 at 12:14:53PM +0100, Stephen Turner wrote: > Trying to install etch from the netinst CD on a two-month old desktop > machine. > > Boot from CD, choose language and location, and then it fails to find > the CD drive: > > Detect and mount CD-ROM > No

Failed to install: "Detect and mount CD-ROM" failed

2007-05-08 Thread Stephen Turner
Trying to install etch from the netinst CD on a two-month old desktop machine. Boot from CD, choose language and location, and then it fails to find the CD drive: Detect and mount CD-ROM No common CD-ROM drive was detected. I have previously installed on an even newer laptop from the same CD

Re: GNOME desktop does not detect and mount CD in some units

2004-10-22 Thread Mateusz Łoskot
ectly" ? I mean if you can read from CD mount points and from CD device as common user. But as you can say that you can mount CD manualy I see all rights are OK. Grees -- Mateusz Åoskot, mateusz (at) loskot (dot) net Registered Linux User #220771, Debian (Sarge) -- To UNSUBSCRIBE, email

Re: Debian install program unable to mount CD-ROM

2004-09-11 Thread Adam Aube
Please don't post a message multiple times - all you might accomplish is annoying the list members, reducing your chances of getting help. Eric Hielscher wrote: > So, first when I was trying to install Debian was unable to find my > HDDs. I poked around the net and found that SATA support is, we

Debian install program unable to mount CD-ROM

2004-09-02 Thread ERIC MICHAEL HIELSCHER
Hi, My name is Eric Hielscher, and I am having trouble installing Debian on my brand new computer (which I really want to use). First things first, here is a hardware list: MSI 865PE Neo2 Motherboard Intel P4 3.2GHz w/ HT 512MB DDR Sony 16x DVD-ROM LITEON CDRW 2 80GB Seagate SATA HDDs NVidia Ge

Debian install program unable to mount CD-ROM

2004-09-02 Thread Eric Hielscher
Title: Debian install program unable to mount CD-ROM Hi, My name is Eric Hielscher, and I am having trouble installing Debian on my brand new computer (which I really want to use).  First things first, here is a hardware list: MSI 865PE Neo2 Motherboard Intel P4 3.2GHz w/ HT 512MB DDR

Re: Installation problem: can't mount CD drive

2004-05-12 Thread Kent West
Catatonic Porpoise wrote: I'm trying to install Debian GNU/Linux 3.0rev2 i386 by CD, using a copy of binary CD 1 I burned myself, on a new machine. The CD boots and the installer runs fine, it gets to the part where it installs the kernel and driver modules, and then it asks me what to install fro

Installation problem: can't mount CD drive

2004-05-11 Thread Catatonic Porpoise
I'm trying to install Debian GNU/Linux 3.0rev2 i386 by CD, using a copy of binary CD 1 I burned myself, on a new machine. The CD boots and the installer runs fine, it gets to the part where it installs the kernel and driver modules, and then it asks me what to install from - CD, floppies, NFS, etc

Unable to mount cd burner as read device

2003-03-06 Thread K. Matthew Victor
Greetings, I need advise as to what might've become bollixed after a kernel upgrade. Problem: Unable to mount the scsi (real, native, scsi cd burner for reading). Symptoms: mount /dev/sr0 will immediately spool up the cd-r/w after 3-5 minutes of running a message is printed: media not found. Or

Re: Unable to mount cd-rom

2002-04-19 Thread Sam Varghese
On Thu, Apr 18, 2002 at 08:43:23PM +0200, Martin Zipfel wrote: > On Sat, 20 Apr 2002 11:47:48 +1000 > Sam Varghese <[EMAIL PROTECTED]> wrote: > > > I recently moved my Debian install over to a new hard disk and after > > this I find that I cannot mount my cd-rom. > > > i think this is due to you

Re: Unable to mount cd-rom

2002-04-18 Thread Martin Zipfel
On Sat, 20 Apr 2002 11:47:48 +1000 Sam Varghese <[EMAIL PROTECTED]> wrote: > I recently moved my Debian install over to a new hard disk and after > this I find that I cannot mount my cd-rom. > > My /etc/fstab reads as under: > > /dev/hda2 / ext2defaults,errors=remount-ro

Re: Unable to mount cd-rom

2002-04-18 Thread Quenten
Silly question but have you tried many diffrent cd's? Is it a burned cd it is locking up on? Or will it lock up on any cd? You can try changing it to auto instead of iso9660 and see if that helps any. Sam Varghese wrote: > I recently moved my Debian install over to a new hard disk and after > t

Re: Unable to mount cd-rom

2002-04-18 Thread Steve Juranich
I've got a similar setup. I don't know if this is your problem but... When you load the ide-scsi stuff, I think that it emulates EVERYTHING on that bus, unless you pass it a couple of boot parameters. I don't know what these boot parameters are, and I haven't bothered to figure it out yet, so

Unable to mount cd-rom

2002-04-18 Thread Sam Varghese
I recently moved my Debian install over to a new hard disk and after this I find that I cannot mount my cd-rom. My /etc/fstab reads as under: /dev/hda2 / ext2defaults,errors=remount-ro 0 1 /dev/hda5 noneswapsw 00 proc

Re: Can't mount CD drive (was: Re: Hello first time)

2000-12-09 Thread mcclosk
|> I write there something like this: |> |> |> /dev/hdc/cdrom auto |> 0 |> |> Is that correct ? I believe it needs to look like this: /dev/hdc/cdrom iso9660 ro,user,noauto,unhide ro: mounts it read-only

Re: Can't mount CD drive (was: Re: Hello first time)

2000-12-09 Thread Mateusz
Hi again I mount my cdrom, but when I want to use apt-cdrom I get a message Undefined..failed So edit my fstab file and I write there something like this: /dev/hdc/cdrom auto 0 Is that correct ? _

Re: Can't mount CD drive (was: Re: Hello first time)

2000-12-09 Thread Mateusz
Hello, BIG thanks for your help ;-) It does work I checked using 'dmesg', and there was my cdrom 'hdc' so , i mouinted it, and it does work ! ~Thanks ___ Mateusz [EMAIL PROTECTED]

Can't mount CD drive (was: Re: Hello first time)

2000-12-09 Thread kmself
Please use a meaningful subject line. on Sun, Dec 10, 2000 at 12:42:39AM +0100, Michal Siwolowski ([EMAIL PROTECTED]) wrote: > I have just installed Debian 2.2 and > I have some problemm with mounting my CDROM > My Debian send me some message, but I don't understand it, I have a short > journey

Re: Can't mount CD-ROM SOLVED!!

2000-08-12 Thread Simon Law
Ah... That's because music CDs are not written in ISO 9660 format. They are in Red Book Audio, which mount doesn't handle. (Why bother? There's no filesystem anyway...). cdplayer knows about audio, therefore it works. On Wed, 9 Aug 2000, Dale Morris wrote: > Well then, let me explain: I had

Re: Can't mount CD-ROM SOLVED!!

2000-08-09 Thread kmself
Well then, no, you haven't really demonstrated much at all. Typically, playing music CDs is negotiated directly between the CDROM drive and your soundcard. There's no intermediation of the kernel, filesystems, or even your sound configuration involved (though some systems require a working sound

Re: Can't mount CD-ROM SOLVED!!

2000-08-09 Thread Dale Morris
I tried it with a cd containing proper filesystems and it works fine. It was late when I was working on this and I guess I posted to quickly. On Wed, Aug 09, 2000 at 03:07:57PM +0200 33, Jason Quigley <[EMAIL PROTECTED]> wrote: > And what exactly makes you believe that it's okay to mount an aud

Re: Can't mount CD-ROM SOLVED!!

2000-08-09 Thread Jason Quigley
And what exactly makes you believe that it's okay to mount an audio CD? If it's a Windows or Macintosh machine - they have special drivers to make it appear that the CD is mounted. Cheers, Jason. --On Wednesday, August 9, 2000 4:15 -0700 Dale Morris <[EMAIL PROTECTED]> wrote: Well then, let

Re: Can't mount CD-ROM SOLVED!!

2000-08-09 Thread Dale Morris
Well then, let me explain: I had a music cd in the drive. When I issued the command to mount, I got a wrong filesystem, bad block.. error message. But when I executed the program cdplayer, it scanned the cd and began playing it. Thus far, I haven't taken the time to dig up a linux cd and see if it

Re: Can't mount CD-ROM SOLVED!!

2000-08-09 Thread kmself
On Tue, Aug 08, 2000 at 10:01:02PM -0700, Dale Morris wrote: > It's working!! That's rather less illuminating than information as to how you solved the problem. -- Karsten M. Self http://www.netcom.com/~kmself Evangelist, Opensales, Inc.http://www.opensales.org What p

Re: Can't mount CD-ROM SOLVED!!

2000-08-09 Thread Dale Morris
It's working!! -- "Make voyages, attempt them, there's nothing else." --Tennessee Williams

Re: Can't mount CD-ROM

2000-08-08 Thread Dale Morris
I forgot to include a copy of my fstab file, here it is as an attachment... On Tue, Aug 08, 2000 at 08:02:08PM -0700 3, Dale Morris <[EMAIL PROTECTED]> wrote: > After a recent install via ftp of debian potato, I find I am unable to > mount my cdrom drive. I have run dmesg | less and it returns:

Can't mount CD-ROM

2000-08-08 Thread Dale Morris
After a recent install via ftp of debian potato, I find I am unable to mount my cdrom drive. I have run dmesg | less and it returns: hdc: WDC WD153BA, 14669MB w/2048kB Cache, CHS=29805/16/63 hdb: ATAPI 48X CD-ROM drive, 120kB Cache Uniform CD-ROM driver Revision: 3.09 Floppy drive(s): fd0 is 1.44M

Re: Can't mount cd when using SCSI emulation

2000-07-17 Thread Esko Lehtonen
"Brian E. Ermovick" wrote: > > > > alias scd0 sr_mod# load sr_mod upon access of scd0 > > pre-install sg modprobe ide-scsi # before sg, load ide-scsi > > pre-install sr_mod modprobe ide-scsi # before sr_mod, load ide-scsi > > > not also that when emulating SCSI, instead

Re: Can't mount cd when using SCSI emulation

2000-07-17 Thread Brian E. Ermovick
> alias scd0 sr_mod# load sr_mod upon access of scd0 > pre-install sg modprobe ide-scsi # before sg, load ide-scsi > pre-install sr_mod modprobe ide-scsi # before sr_mod, load ide-scsi not also that when emulating SCSI, instead of hd?, you'll have scd? so my burner is no

Re: Can't mount cd when using SCSI emulation

2000-07-15 Thread Andreas Schmidt
On Sat, Jul 15, 2000 at 11:51:16PM +0300, Esko Lehtonen wrote: > Hello! > > I have internal HP 7200 atapi cd-rw drive in my debian 2.2 machine. I am > using self compiled 2.2.14 kernel from debian kernel package. I want to > write cds with my drive, so I removed IDE/ATAPI cd support from kernel,

Can't mount cd when using SCSI emulation

2000-07-15 Thread Esko Lehtonen
Hello! I have internal HP 7200 atapi cd-rw drive in my debian 2.2 machine. I am using self compiled 2.2.14 kernel from debian kernel package. I want to write cds with my drive, so I removed IDE/ATAPI cd support from kernel, and compiled scsi emulation instead. Now I can write cds, but I can't mou

Re: can't mount cd-rom

2000-06-27 Thread Andrew Dixon
-- Original Message -- From: "Petr [Dingo] Dvorak" <[EMAIL PROTECTED]> Date: Wed, 21 Jun 2000 23:38:25 -0500 (CDT) >On Thu, 22 Jun 2000, Andrew Dixon wrote: > >-=[Snip]=- > >AD> >> hdc : tray open or drive not ready >AD> >> Unable to mount /dev/cdrom on /var

Re: can't mount cd-rom

2000-06-21 Thread Petr \[Dingo\] Dvorak
On Thu, 22 Jun 2000, Andrew Dixon wrote: -=[Snip]=- AD> >> hdc : tray open or drive not ready AD> >> Unable to mount /dev/cdrom on /var/lib/dpkg/methods/mnt, type iso9660. AD> >> AD> >> This is all Greek to me, but it seems to recognize the CDROM at startup and the busy light did flicker when I

Re: can't mount cd-rom

2000-06-21 Thread Andrew Dixon
-- Original Message -- From: Thomas Guettler <[EMAIL PROTECTED]> Reply-To: Thomas Guettler <[EMAIL PROTECTED]> Date: Wed, 21 Jun 2000 23:32:47 +0200 >On Wed, Jun 21, 2000 at 12:08:50PM -0400, Andrew Dixon wrote: >> -- Original Message ---

Re: can't mount cd-rom

2000-06-21 Thread Thomas Guettler
On Wed, Jun 21, 2000 at 12:08:50PM -0400, Andrew Dixon wrote: > -- Original Message -- > From: Thomas Guettler <[EMAIL PROTECTED]> > Date: Wed, 21 Jun 2000 17:40:07 +0200 > I mannaged to get the base system installed from floppies but now when I try > to ins

Re: can't mount cd-rom

2000-06-21 Thread Andrew Dixon
-- Original Message -- From: Thomas Guettler <[EMAIL PROTECTED]> Date: Wed, 21 Jun 2000 17:40:07 +0200 I mannaged to get the base system installed from floppies but now when I try to install the packages from the CDROM I get this message: hdc : tray open or

Re: can't mount cd-rom

2000-06-21 Thread Thomas Guettler
On Wed, Jun 21, 2000 at 11:27:51AM -0400, Andrew Dixon wrote: > -- Original Message -- > From: Thomas Guettler <[EMAIL PROTECTED]> > Reply-To: Thomas Guettler <[EMAIL PROTECTED]> > Date: Wed, 21 Jun 2000 16:25:29 +0200 > > >On Wed, Jun 21, 2000 at 07:36:28AM

Re: can't mount cd-rom

2000-06-21 Thread Andrew Dixon
-- Original Message -- From: Thomas Guettler <[EMAIL PROTECTED]> Reply-To: Thomas Guettler <[EMAIL PROTECTED]> Date: Wed, 21 Jun 2000 16:25:29 +0200 >On Wed, Jun 21, 2000 at 07:36:28AM -0400, Andrew Dixon wrote: >> Hi all, >> I'm trying to install Debian but

Re: can't mount cd-rom

2000-06-21 Thread Thomas Guettler
On Wed, Jun 21, 2000 at 07:36:28AM -0400, Andrew Dixon wrote: > Hi all, > I'm trying to install Debian but it can't seem to mount my cd-rom. It runs > off of the sound board which is a: Where exactly does the installation fail? What error messages do you get? I don't think your rescue-image need

can't mount cd-rom

2000-06-21 Thread Andrew Dixon
Hi all, I'm trying to install Debian but it can't seem to mount my cd-rom. It runs off of the sound board which is a: Creative Labs Sound Blaster AWE32. When I boot off of the rescue floppy is does see that there is a cd-rom device on hdc. I think I need to load the drivers for the sound c

Re: Unable to mount CD

2000-01-08 Thread Wayne Topa
Subject: Unable to mount CD Date: Sat, Jan 08, 2000 at 10:31:53AM -0500 In reply to:Rajesh Radhakrishnan Quoting Rajesh Radhakrishnan([EMAIL PROTECTED]): >| Hi, >| >| I have the following line in my /etc/fstab, >| >| /dev/cdrom /cdromiso9660 noa

Unable to mount CD

2000-01-08 Thread Rajesh Radhakrishnan
Hi, I have the following line in my /etc/fstab, /dev/cdrom /cdromiso9660 noauto,ro0 0 And, /dev/cdrom points to, $ ls -l /dev/cdrom lrwxrwxrwx1 root root 8 Sep 4 06:48 /dev/cdrom -> /dev/hdd $ ls -l /dev/hdd brw-rw-rw-1 root disk 22, 64 Feb 22 199

RE: cannot mount CD-ROM! - Pls help

1999-06-09 Thread Person, Roderick
... > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Sent: Wednesday, June 09, 1999 3:41 AM > To: debian-user@lists.debian.org > Subject: Re: cannot mount CD-ROM! - Pls help > > -BEGIN PGP SIGNED MESSAGE- > > On Mon, 07 Jun 1999, Will Lowe

Re: cannot mount CD-ROM! - Pls help

1999-06-09 Thread Dieter Jäger
s the mount point) >> or >> % mount -t iso9660 /dev/hdc /mnt > >Try >mount -t iso9660 /dev/hdc1 /cdrom > ^ > >... you may need to specify which partition to mount. CD-ROMS don't have partitions :), so /dev/hdc &

Re: cannot mount CD-ROM! - Pls help

1999-06-07 Thread David Teague
On Mon, 7 Jun 1999, Will Lowe wrote: > > But, now during boot, it does not detect the CD-ROM drive and as root I > > could not mount the drive either. I tried both these commands: > > > > % mount /dev/hdc /cdrom (I do have /cdrom as the mount point) > > or > > % mount -t iso9660 /dev/hdc /mn

Re: cannot mount CD-ROM! - Pls help

1999-06-07 Thread Will Lowe
> But, now during boot, it does not detect the CD-ROM drive and as root I > could not mount the drive either. I tried both these commands: > > % mount /dev/hdc /cdrom (I do have /cdrom as the mount point) > or > % mount -t iso9660 /dev/hdc /mnt Try mount -t iso9660 /dev/hdc1 /cdrom

cannot mount CD-ROM! - Pls help

1999-06-07 Thread rathon
Hi, This is a second posting and sorry for that. I have installed Debian2.0 on a 486. During installation, it detects my CD-ROM drive as /dev/hdc and the installation went perfect. But, now during boot, it does not detect the CD-ROM drive and as root I could not mount the drive either. I tried b

cannot mount CD-ROM - pls help

1999-06-03 Thread rathon
Hi, When installing Debian2.0, my cdrom is detected(/dev/hdc)and no problem installing from cdrom. After installation, if I try to mount the cdrom using: %mount -t iso9660 /dev/hdc /cdrom (as root) I get an error saying something like, not s iso9660 device, maybe an isnmod driver. How do I fix

Re: Mount cd

1999-01-22 Thread frleg
>> Henrik Hundebøl wrote: >> > How do i mount cd and floppy in debian >> > and how do i get my internet to work If you have got IDE cdrom you have to do : mount /dev/hdx /cdrom where x=a primary IDE master x=b primary IDE slave x=c secondary IDE master x=d

Re: Mount cd

1999-01-22 Thread Martin Schulze
Henrik Hundebøl wrote: > How do i mount cd and floppy in debian > and how do i get my internet to work Please ask on [EMAIL PROTECTED] -- *** Fatal Error: Found [MS-Windows], repartitioning Disk for Linux ... Please always Cc to me when replying to me on the lists.