Re: Mounting an EXT2FS CD on FreeBSD-5.1

2003-07-31 Thread Satish Vanimisetti

[I'm copying -fs because this was originally posted
there. I'm also CC'ing -questions.]

  # mount -t ext2fs /dev/acd1c /mnt/cdrom
  ext2fs: /dev/acd1c: No such file or directory

The CD was burned (on a linux machine), as follows:
1. dd if=/dev/zero of=/tmp/cdimage bs=1024 count=640k
2. mkfs /tmp/cdimage, mount -t ext2 -o loop /tmp/cdimage /mnt/cdimge
3. rsync --archive /my/data /mnt/cdimage
4. umount /mnt/cdimage
5. cdrecord -data /tmp/cdimage

Since I did not create any partitions, would there be
an ad0c? Also, the FreeBSD install CD mounts fine with
/dev/ad0.

Thanks for the quick response,
Satish Vanimisetti


On Thu, 31 Jul 2003, Brandon D. Valentine wrote:

 [ This probably should have been asked on -questions. ]

 On Thu, Jul 31, 2003 at 12:14:19PM -0400, Satish Vanimisetti wrote:
 
  I am trying to mount a CD burned with an EXT2 filesystem on
  a PC installed with FreeBSD-5.1
 
# mount -t ext2fs /dev/acd0 /cdrom
ext2fs: /dev/acd0: No such file or directory

 You're trying to mount the cdrom device itself, not a filesystem on the
 cdrom.  You need to mount /dev/acd0c.

 Brandon D. Valentine
 --
 [EMAIL PROTECTED] http://www.geekpunk.net
 Pseudo-Random Googlism:  texas is preserved


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


RE: Mounting an EXT2FS CD on FreeBSD-5.1

2003-07-31 Thread Joshua Lokken


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Satish
 Vanimisetti
 Sent: Thursday, July 31, 2003 10:43 AM
 To: Brandon D. Valentine
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: Mounting an EXT2FS CD on FreeBSD-5.1
 
 
 
 [I'm copying -fs because this was originally posted
 there. I'm also CC'ing -questions.]
 
   # mount -t ext2fs /dev/acd1c /mnt/cdrom
   ext2fs: /dev/acd1c: No such file or directory
 

Have you tried:

# mount_cd9660 /dev/acd1c /mnt/cdrom

or

# mount -t cd9660 /dev/acd1c /mnt/cdrom
?

Joshua

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


RE: Mounting an EXT2FS CD on FreeBSD-5.1

2003-07-31 Thread Satish Vanimisetti


 Have you tried:

 # mount_cd9660 /dev/acd1c /mnt/cdrom

 or

 # mount -t cd9660 /dev/acd1c /mnt/cdrom

Yes, I have. I get an incorrect superblock error,
which is expected, because the filesystem on the CD
is ext2.

 Joshua

Thanks,
Satish Vanimisetti

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