Re: Error when trying to mount cd

2002-12-31 Thread Scott Robbins
On Tue, Dec 31, 2002 at 02:37:19AM -0800, Kevin Greenidge wrote:
 I get the following error message when trying to mount
 a cd:
 
 sentinel# mount /dev/acd0c
 
 cd9660: /dev/acd0c: Input/output error
 
 
 
 What could I be doing wrong? 

Too obvious, but it does happen.  I've gotten that error when I thought
I had the CD in drive 0 and it was in drive 1 and I was doing burncd.

That's probably not the issue, but worth mentioning, even if most people
are more observant than I am.

HTH but sort of doubt it did


-- 

Scott Robbins

PGP keyID EB3467D6
( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 )
gpg --keyserver pgp.mit.edu --recv-keys EB3467D6


Xander: I have my pride. Okay, so I don't have a *lot* of my pride,
but I have enough so that I can't do this.



msg13794/pgp0.pgp
Description: PGP signature


Re: Error when trying to mount cd

2002-12-31 Thread Stacey Roberts
Hi Kevin,

On Tue, 2002-12-31 at 10:37, Kevin Greenidge wrote:
 I get the following error message when trying to mount
 a cd:
 
 sentinel# mount /dev/acd0c
 
 cd9660: /dev/acd0c: Input/output error

You might want to try:

mount -t cd9660 /dev/acd0c /cdrom

But I believe that with FreeBSD 4.7, you should be able to run:

mount /cdrom

Regards,

Stacey

 
 
 
 What could I be doing wrong? 
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
Stacey Roberts
B.Sc (HONS) Computer Science

Web: www.vickiandstacey.com



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Kevin Greenidge
I am running 4.7 and mount /cdrom does not work. I
have yet to try mount -t cd9660 /dev/acd0c /cdrom
and maybe this one will








--- Stacey Roberts [EMAIL PROTECTED] wrote:
 Hi Kevin,
 
 On Tue, 2002-12-31 at 10:37, Kevin Greenidge wrote:
  I get the following error message when trying to
 mount
  a cd:
  
  sentinel# mount /dev/acd0c
  
  cd9660: /dev/acd0c: Input/output error
 
 You might want to try:
 
 mount -t cd9660 /dev/acd0c /cdrom
 
 But I believe that with FreeBSD 4.7, you should be
 able to run:
 
 mount /cdrom
 
 Regards,
 
 Stacey
 
  
  
  
  What could I be doing wrong? 
  
  
  
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body
 of the message
 -- 
 Stacey Roberts
 B.Sc (HONS) Computer Science
 
 Web: www.vickiandstacey.com
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of
 the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread John Bleichert
On Tue, 31 Dec 2002, Kevin Greenidge wrote:
 Subject: Error when trying to mount cd
 
 I get the following error message when trying to mount
 a cd:
 
 sentinel# mount /dev/acd0c
 
 cd9660: /dev/acd0c: Input/output error
 

The mount command is used to mount a device at a directory. Above, you're 
trying to mount a device to nothing. Depending on how you have the mount 
point for your cd-player described in /etc/fstab, try this:

# mount /cdrom

HTH - JB

#  John Bleichert 
#  http://vonbek.dhs.org/latest.jpg


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Stacey Roberts
On Tue, 2002-12-31 at 13:40, Kevin Greenidge wrote:
 I am running 4.7 and mount /cdrom does not work. I
 have yet to try mount -t cd9660 /dev/acd0c /cdrom
 and maybe this one will
 

Out of curiosity, what does /etc/fstab look like? Also, what kind of CD
is it that you're trying to mount?

Regards,

Stacey

 --- Stacey Roberts [EMAIL PROTECTED] wrote:
  Hi Kevin,
  
  On Tue, 2002-12-31 at 10:37, Kevin Greenidge wrote:
   I get the following error message when trying to
  mount
   a cd:
   
   sentinel# mount /dev/acd0c
   
   cd9660: /dev/acd0c: Input/output error
  
  You might want to try:
  
  mount -t cd9660 /dev/acd0c /cdrom
  
  But I believe that with FreeBSD 4.7, you should be
  able to run:
  
  mount /cdrom
  
  Regards,
  
  Stacey
  
   
   
   
   What could I be doing wrong? 
   
   
   
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body
  of the message
  -- 
  Stacey Roberts
  B.Sc (HONS) Computer Science
  
  Web: www.vickiandstacey.com
  
  
  
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of
  the message
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
Stacey Roberts
B.Sc (HONS) Computer Science

Web: www.vickiandstacey.com



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



RE: Error when trying to mount cd

2002-12-31 Thread Aaron Burke
(snip) (and fix of earlier top-post)

 
 --- Stacey Roberts [EMAIL PROTECTED] wrote:
  Hi Kevin,
  
  On Tue, 2002-12-31 at 10:37, Kevin Greenidge wrote:
   I get the following error message when trying to
  mount
   a cd:
   
   sentinel# mount /dev/acd0c
   
   cd9660: /dev/acd0c: Input/output error
  
  You might want to try:
  
  mount -t cd9660 /dev/acd0c /cdrom

begin Top-Post fix:
 I am running 4.7 and mount /cdrom does not work. I
 have yet to try mount -t cd9660 /dev/acd0c /cdrom
 and maybe this one will
end Top-Post fix:

   What could I be doing wrong? 

How is the cdrom you are trying to use attached to the
system? Is it an IDE ATAPI CDROM or is it scsi?
If it is scsi, you may need to use a different device
name such as /dev/scd0c. (I am assuming this
is where scsi cdroms are at, but I dont have scsi on my box).

Also, in the /dev dir if you do 'ls -l cdrom' you will see that it
is a symlink to the real device. On my box I get:
bash-2.05$ ls -l cdrom
lrwxr-xr-x  1 root  wheel  11 Jul  2  2002 cdrom - /dev/racd0c

(snip)

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Warren Block
On Tue, 31 Dec 2002, Kevin Greenidge wrote:

 I am running 4.7 and mount /cdrom does not work. I
 have yet to try mount -t cd9660 /dev/acd0c /cdrom
 and maybe this one will

does not work could be more detailed...  Are you trying to mount a
UDF-formatted CD from a Windows system, or maybe a music CD?

-Warren Block * Rapid City, South Dakota USA


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Kevin Greenidge
I was trying to mount a Windows XP disk to use as a
test. 





--- Warren Block [EMAIL PROTECTED] wrote:
 On Tue, 31 Dec 2002, Kevin Greenidge wrote:
 
  I am running 4.7 and mount /cdrom does not work.
 I
  have yet to try mount -t cd9660 /dev/acd0c
 /cdrom
  and maybe this one will
 
 does not work could be more detailed...  Are you
 trying to mount a
 UDF-formatted CD from a Windows system, or maybe a
 music CD?
 
 -Warren Block * Rapid City, South Dakota USA
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of
 the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread John Bleichert
On 31 Dec 2002, Stacey Roberts wrote:
 Subject: Re: Error when trying to mount cd
 
 On Tue, 2002-12-31 at 17:28, Kevin Greenidge wrote:
  I was trying to mount a Windows XP disk to use as a
  test. 
  
 Hi Kevin,
To test what?
 
 Instead of Error when tryign to mount cd as a subject, don't you think
 that the fact that the CD is actually WinXP was kinda pertinent to the
 problem?
 
 Try previous suggestions with a *normal* data CD, if you please.
 
 Regards,
 
 Stacey
 

A Windows install CD of any version I can think of should mount just fine 
as an iso9660 data cd. This is a valid test, unless M$ is doing something 
funky to their CDs that I don't know about. Is this CD usuable in other 
operatings systems and/or on other hardware? I think the original poster 
is just tripping over mount(8) liek we all do the first time around .. :)

If it still doesn't work post your dmesg output so we can see what type of 
CD player you have.


#  John Bleichert 
#  http://vonbek.dhs.org/latest.jpg


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Kevin Greenidge

--- Stacey Roberts [EMAIL PROTECTED] wrote:
 On Tue, 2002-12-31 at 17:28, Kevin Greenidge wrote:
  I was trying to mount a Windows XP disk to use as
 a
  test. 
  
 Hi Kevin,
To test what?
 
 Instead of Error when tryign to mount cd as a
 subject, don't you think
 that the fact that the CD is actually WinXP was
 kinda pertinent to the
 problem?
 
 Try previous suggestions with a *normal* data CD, if
 you please.
 
 Regards,
 
 Stacey
 
  --- Warren Block [EMAIL PROTECTED] wrote:
   On Tue, 31 Dec 2002, Kevin Greenidge wrote:
   
I am running 4.7 and mount /cdrom does not
 work.
   I
have yet to try mount -t cd9660 /dev/acd0c
   /cdrom
and maybe this one will
   
   does not work could be more detailed...  Are
 you
   trying to mount a
   UDF-formatted CD from a Windows system, or maybe
 a
   music CD?
   
   -Warren Block * Rapid City, South Dakota USA
   
   
   To Unsubscribe: send mail to
 [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body
 of
   the message
  
  
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body
 of the message
 -- 
 Stacey Roberts
 B.Sc (HONS) Computer Science
 
 Web: www.vickiandstacey.com
 
 
I just wanted to mount my Win XP cd since it was the
only one laying about at the time. I'm trying to setup
samba to share the cdrom. When I get home I will try
another cd in the machine to see if it works. 

I was under the impression that Freebsd would see any
cd since my redhat box see the folders in my win XP cd
fine 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Stacey Roberts
On Tue, 2002-12-31 at 21:29, Kevin Greenidge wrote:
 --- Stacey Roberts [EMAIL PROTECTED] wrote:
  On Tue, 2002-12-31 at 17:28, Kevin Greenidge wrote:
   I was trying to mount a Windows XP disk to use as
  a
   test. 
   
  Hi Kevin,
 To test what?
  
  Instead of Error when tryign to mount cd as a
  subject, don't you think
  that the fact that the CD is actually WinXP was
  kinda pertinent to the
  problem?
  
  Try previous suggestions with a *normal* data CD, if
  you please.
  
  Regards,
  
  Stacey
  
   --- Warren Block [EMAIL PROTECTED] wrote:
On Tue, 31 Dec 2002, Kevin Greenidge wrote:

 I am running 4.7 and mount /cdrom does not
  work.
I
 have yet to try mount -t cd9660 /dev/acd0c
/cdrom
 and maybe this one will

does not work could be more detailed...  Are
  you
trying to mount a
UDF-formatted CD from a Windows system, or maybe
  a
music CD?

-Warren Block * Rapid City, South Dakota USA


To Unsubscribe: send mail to
  [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body
  of
the message
   
   
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body
  of the message
  -- 
  Stacey Roberts
  B.Sc (HONS) Computer Science
  
  Web: www.vickiandstacey.com
  
  
 I just wanted to mount my Win XP cd since it was the
 only one laying about at the time. I'm trying to setup
 samba to share the cdrom. When I get home I will try
 another cd in the machine to see if it works. 
 
 I was under the impression that Freebsd would see any
 cd since my redhat box see the folders in my win XP cd
 fine 

Hi Kevin,
   I'm pretty sure that you'll be able to mount and view the content of
the CD with the command:

mount -t cd9660 /dev/acd0c /cdrom

If not:

mount -t cd9660 /dev/acd0c /mnt/cdrom

Regards,

Stacey

 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
Stacey Roberts
B.Sc (HONS) Computer Science

Web: www.vickiandstacey.com



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Mike Jeays
Stacey Roberts wrote:


On Tue, 2002-12-31 at 21:29, Kevin Greenidge wrote:
 

--- Stacey Roberts [EMAIL PROTECTED] wrote:
   

On Tue, 2002-12-31 at 17:28, Kevin Greenidge wrote:
 

I was trying to mount a Windows XP disk to use as
   

a
 

test. 

   

Hi Kevin,
  To test what?

Instead of Error when tryign to mount cd as a
subject, don't you think
that the fact that the CD is actually WinXP was
kinda pertinent to the
problem?

Try previous suggestions with a *normal* data CD, if
you please.

Regards,

Stacey

 

--- Warren Block [EMAIL PROTECTED] wrote:
   

On Tue, 31 Dec 2002, Kevin Greenidge wrote:

 

I am running 4.7 and mount /cdrom does not
   

work.
 

I
 

have yet to try mount -t cd9660 /dev/acd0c
   

/cdrom
 

and maybe this one will
   

does not work could be more detailed...  Are
 

you
 

trying to mount a
UDF-formatted CD from a Windows system, or maybe
 

a
 

music CD?

-Warren Block * Rapid City, South Dakota USA


To Unsubscribe: send mail to
 

[EMAIL PROTECTED]
 

with unsubscribe freebsd-questions in the body
 

of
 

the message
 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body
   

of the message
--
Stacey Roberts
B.Sc (HONS) Computer Science

Web: www.vickiandstacey.com


 

I just wanted to mount my Win XP cd since it was the
only one laying about at the time. I'm trying to setup
samba to share the cdrom. When I get home I will try
another cd in the machine to see if it works. 

I was under the impression that Freebsd would see any
cd since my redhat box see the folders in my win XP cd
fine 
   


Hi Kevin,
  I'm pretty sure that you'll be able to mount and view the content of
the CD with the command:

mount -t cd9660 /dev/acd0c /cdrom

If not:

mount -t cd9660 /dev/acd0c /mnt/cdrom

Regards,

Stacey

 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message
   

To be a bit more complete:

1) Make certain you have a directory /cdrom, and that there is nothing
   in it - not even any hidden files.
2) Make sure you are cd-ed to some other directory.
3) Execute mount -t cd9660 /dev/acd0c /cdrom

If your /etc/fstab contains a line as follows:
/dev/acd0c  /cdrom  cd9660  ro,noauto   0   0
you can replace the mount command above with
mount /cdrom

If this doesn't work, it could be a bad CD.I have a CD-RW
that reads just fine on one FreeBSD machine, but which causes a
Pentium 120 running FreeBSD 4.1 to crash.  A complete crash,
with need for an fsck on its filesystems, and reproducible.






To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Error when trying to mount cd

2002-12-31 Thread Kevin Greenidge

--- Mike Jeays [EMAIL PROTECTED] wrote:
 Stacey Roberts wrote:
 
 On Tue, 2002-12-31 at 21:29, Kevin Greenidge wrote:
   
 
 --- Stacey Roberts [EMAIL PROTECTED]
 wrote:
 
 
 On Tue, 2002-12-31 at 17:28, Kevin Greenidge
 wrote:
   
 
 I was trying to mount a Windows XP disk to use
 as
 
 
 a
   
 
 test. 
 
 
 
 Hi Kevin,
To test what?
 
 Instead of Error when tryign to mount cd as a
 subject, don't you think
 that the fact that the CD is actually WinXP was
 kinda pertinent to the
 problem?
 
 Try previous suggestions with a *normal* data CD,
 if
 you please.
 
 Regards,
 
 Stacey
 
   
 
 --- Warren Block [EMAIL PROTECTED] wrote:
 
 
 On Tue, 31 Dec 2002, Kevin Greenidge wrote:
 
   
 
 I am running 4.7 and mount /cdrom does not
 
 
 work.
   
 
 I
   
 
 have yet to try mount -t cd9660 /dev/acd0c
 
 
 /cdrom
   
 
 and maybe this one will
 
 
 does not work could be more detailed...  Are
   
 
 you
   
 
 trying to mount a
 UDF-formatted CD from a Windows system, or
 maybe
   
 
 a
   
 
 music CD?
 
 -Warren Block * Rapid City, South Dakota USA
 
 
 To Unsubscribe: send mail to
   
 
 [EMAIL PROTECTED]
   
 
 with unsubscribe freebsd-questions in the
 body
   
 
 of
   
 
 the message
   
 
 To Unsubscribe: send mail to
 [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body
 
 
 of the message
 -- 
 Stacey Roberts
 B.Sc (HONS) Computer Science
 
 Web: www.vickiandstacey.com
 
 
   
 
 I just wanted to mount my Win XP cd since it was
 the
 only one laying about at the time. I'm trying to
 setup
 samba to share the cdrom. When I get home I will
 try
 another cd in the machine to see if it works. 
 
 I was under the impression that Freebsd would see
 any
 cd since my redhat box see the folders in my win
 XP cd
 fine 
 
 
 
 Hi Kevin,
I'm pretty sure that you'll be able to mount and
 view the content of
 the CD with the command:
 
 mount -t cd9660 /dev/acd0c /cdrom
 
 If not:
 
 mount -t cd9660 /dev/acd0c /mnt/cdrom
 
 Regards,
 
 Stacey
 
   
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body
 of the message
 
 
 To be a bit more complete:
 
 1) Make certain you have a directory /cdrom, and
 that there is nothing
 in it - not even any hidden files.
 2) Make sure you are cd-ed to some other directory.
 3) Execute mount -t cd9660 /dev/acd0c /cdrom
 
 If your /etc/fstab contains a line as follows:
 /dev/acd0c  /cdrom  cd9660 
 ro,noauto   0   0
 you can replace the mount command above with
 mount /cdrom
 
 If this doesn't work, it could be a bad CD.I
 have a CD-RW
 that reads just fine on one FreeBSD machine, but
 which causes a
 Pentium 120 running FreeBSD 4.1 to crash.  A
 complete crash,
 with need for an fsck on its filesystems, and
 reproducible.
 
 
 
 
 
I finally got a chance to get in front of my box and
mount /cdrom worked. I replaced my Win XP cd with my
FreeBSD and various other disks and they worked fine.
I guess it does make a difference with what type of cd
it is because I know the Win XP disk is good. 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message