Re: Super block error

2003-10-30 Thread Dan Nelson
In the last episode (Oct 30), Gregory Stearns said:
 
When I try and mount my cdrom or my floppy I get an invalid super
block error.
 
I use the following command:
 
mount  /dev/acd0c /cdrom

Try mount -t cd9660 /dev/acd0c /cdrom, since cdroms aren't usually
written in FreeBSD's UFS filesystem format.

-- 
Dan Nelson
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Super block error

2003-10-30 Thread Jonathan Chen
On Thu, Oct 30, 2003 at 02:16:45PM -0500, Gregory Stearns wrote:
 
When I try and mount my cdrom or my floppy I get an invalid super
block error.
 
I use the following command:
 
mount  /dev/acd0c /cdrom
 
How do I correct this error so that I may use my cdrom?

You need to specify the filesystem type, ie:

# mount -t cd9660 /dev/acd0c /cdrom

Check if there's an entry in /etc/fstab. If there is, you should be
able to do:

# mount /cdrom

-- 
Jonathan Chen [EMAIL PROTECTED]
--
The Internet: an empirical test of the idea that a million monkeys
banging on a million keyboards can produce Shakespeare
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]