I got automount, it tells me i need to run fsck I mount it to /mnt it tells me hahaha nope!
mount it ro
nope.
last line is what I am trying to run fsck on.
if I ls /mnt it shows me its contents on the usb hdd.
if I try to mount it rw
Code:
[userx@FreeBSD ~]$ sudo fsck /dev/da0s2
Can't open /dev/da0s2: No such file or directory
[userx@FreeBSD ~]$ sudo fsck /dev/da0s2
Can't open /dev/da0s2: No such file or directory
Code:
[userx@FreeBSD ~]$ sudo mount -t ext2fs -o ro /dev/da0s2 /mnt
[userx@FreeBSD ~]$ sudo fsck /dev/da0s2
Can't open /dev/da0s2: No such file or directory
[userx@FreeBSD ~]$ ls /mnt
$RECYCLE.BIN
11 Mickey.wma
......
Code:
[userx@FreeBSD ~]$ mount
/dev/nvd0p9 on / (ufs, local, journaled soft-updates)
devfs on /dev (devfs, local, multilabel)
map -hosts on /net (autofs)
map -media on /media (autofs)
/dev/fuse on /usr/home/userx/.gvfs (fusefs, nosuid, mounted by userx)
/dev/ada0p2 on /media/data (ext2fs, asynchronous, local, noatime, nosuid, automounted)
/dev/da0s2 on /mnt (ext2fs, local, read-only)
Code:
[userx@FreeBSD ~]$ sudo fsck /mnt
Can't open /dev/da0s2: No such file or directory
if I ls /mnt it shows me its contents on the usb hdd.
if I try to mount it rw
Code:
[userx@FreeBSD ~]$ sudo umount /mnt
[userx@FreeBSD ~]$ sudo mount -t ext2fs -o rw /dev/da0s2 /mnt
mount: /dev/da0s2: Operation not permitted