Author Topic: OpenBSD mounting  (Read 405 times)

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
OpenBSD mounting
« on: 8 September 2002, 02:28 »
I did
mount -t iso9660 /dev/cd0 /mnt/cdrom
after creating /mnt/cdrom
it gave me:
mount: no helper program found for iso9660: No such file or directory

then i tried
# mount /dev/cd0 /mnt/cdrom
mount_ffs: /dev/cd0 on /mnt/cdrom: No such file or directory.

What the hell is wrong?
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

TheQuirk

  • VIP
  • Member
  • ***
  • Posts: 2,154
  • Kudos: 315
OpenBSD mounting
« Reply #1 on: 8 September 2002, 02:41 »
# mount -a -t nonfs,mfs

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
OpenBSD mounting
« Reply #2 on: 8 September 2002, 02:54 »
that wont work because i when i edited /etc/fstab to include cdrom i put iso9660 when it should be cd9660 (for OpenBSD) so i just did:
mount -t cd9660 -r /dev/cd0a /mnt/cdrom

and it worked
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

TheQuirk

  • VIP
  • Member
  • ***
  • Posts: 2,154
  • Kudos: 315
OpenBSD mounting
« Reply #3 on: 8 September 2002, 03:05 »
# mount -a -t nonfs,mfs
 mounts *every* file system except NFS and MFS.

Master of Reality

  • VIP
  • Member
  • ***
  • Posts: 4,249
  • Kudos: 177
    • http://www.bobhub.tk
OpenBSD mounting
« Reply #4 on: 8 September 2002, 07:10 »
...it mounts every file system in fstab except NFS and mfs
Disorder | Rating
Paranoid: Moderate
Schizoid: Moderate
Linux User #283518
'It takes more than a self-inflicted gunshot wound to the head to stop Bob'

TheQuirk

  • VIP
  • Member
  • ***
  • Posts: 2,154
  • Kudos: 315
OpenBSD mounting
« Reply #5 on: 8 September 2002, 08:00 »
it wasn't there in the deafult install? that's odd.