Cannot mount USB disk in SIngle-user mode (solaris 10)
Hi all ,
I need some help please :
I can read/write to my USB disks when i'm in muti-user mode but when to I swith to single-user mode ( init S ), I cannot mount it.
in Single-user mode , i started volume management daemon :
#/etc/init.d/volgmt start
#volcheck
but i'm still not able to mount it.
I tried to mount manually:
#mount/dev/dsk/c2t0d0p0 /testpoint , i have this error: < mount : not a UFS magic number ( 0x0) , dev/dsk/c2t0d0p0 is not of this fstype.
My system recognizes the USB device though in single-user mode:
This is an output of #iostat -En
c2t0d0Soft Errors: 1 Hard Errors: 0 Transport Errors: 0
Vendor: BUFFALO Product: ClipDriveRevision: 2.00 Serial No:
Size:0.07GB <65339392 bytes>
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
Illegal Request: 1 Predictive Failure Analysis: 0
[924 byte] By [
sakolana] at [2007-11-27 10:43:26]

# 1
> I can read/write to my USB disks when i'm in
> muti-user mode but when to I swith to single-user
> mode ( init S ), I cannot mount it.
>
> in Single-user mode , i started volume management
> daemon :
> /etc/init.d/volgmt start
> #volcheck
>
> but i'm still not able to mount it.
It probably requires other items to be started first.
> I tried to mount manually:
> #mount/dev/dsk/c2t0d0p0 /testpoint , i have this
> error: < mount : not a UFS magic number ( 0x0) ,
> dev/dsk/c2t0d0p0 is not of this fstype.
Looks like it's assuming UFS. If this is a pcfs filesystem, give it the type on the mount line.
# mount -F pcfs /dev/dsk/c2t0d0p0 /testpoint
--
Darren
# 2
Hi ,
thanks for your advice. My problem is resolved.
The USB drive was actually a FAT filesystem.
so I did # mount -F pcfs /dev/dsk/c2t0d0p0:c /testpoint and everything went fine
> > I can read/write to my USB disks when i'm in
> > muti-user mode but when to I swith to single-user
> > mode ( init S ), I cannot mount it.
> >
> > in Single-user mode , i started volume management
> > daemon :
> > /etc/init.d/volgmt start
> > #volcheck
> >
> > but i'm still not able to mount it.
>
> It probably requires other items to be started
> first.
>
> I tried to mount manually:
> #mount/dev/dsk/c2t0d0p0 /testpoint , i have
> this
> error: < mount : not a UFS magic number ( 0x0) ,
> dev/dsk/c2t0d0p0 is not of this fstype.
>
> Looks like it's assuming UFS. If this is a pcfs
> filesystem, give it the type on the mount line.
>
> # mount -F pcfs /dev/dsk/c2t0d0p0 /testpoint
Yeah, this was the right command, I had to specify option < -F pcfs >.
but I read somethere on this forum i had to specify :c as the drive for FAT at the end of c2t0d0p0 , so the full command was:
# mount -F pcfs /dev/dsk/c2t0d0p0:c /testpoint
>
> --
> Darren
Thanks,
Sakolan.