On Mon, May 25, 2009 at 9:04 PM, vega_yaa at hotmail.com <mail at belenix.org> 
wrote:
> I am also facing same problem.
>
> output of vstab as follows:
> ---------------------------------------------------------
> root at belenix:~# cat /etc/vfstab
> #device ? ? ? ? device ? ? ? ? ?mount ? ? ? ? ? FS ? ? ?fsck ? ?mount ? mount
> #to mount ? ? ? to fsck ? ? ? ? point ? ? ? ? ? type ? ?pass ? ?at boot 
> options
> #
> /devices ? ? ? ?- ? ? ? ? ? ? ? /devices ? ? ? ?devfs ? - ? ? ? no ? ? ?-
> /proc ? ? ? ? ? - ? ? ? ? ? ? ? /proc ? ? ? ? ? proc ? ?- ? ? ? no ? ? ?-
> ctfs ? ? ? ? ? ?- ? ? ? /system/contract ? ? ? ?ctfs ? ?- ? ? ? no ? ? ?-
> objfs ? ? ? ? ? - ? ? ? /system/object ?objfs ? - ? ? ? no ? ? ?-
> fd ? ? ? ? ? ? ?- ? ? ? ? ? ? ? /dev/fd ? ? ? ? fd ? ? ?- ? ? ? no ? ? ?-
> swap ? ? ? ? ? ?- ? ? ? ? ? ? ? /tmp ? ? ? ? ? ?tmpfs ? - ? ? ? yes ? ? -
> sharefs ? ? ? ? - ? ? ? ? ? ? ? /etc/dfs/sharetab ? ? ? sharefs - ? ? ? no ? 
> ? ?-
> /dev/dsk/c3d0p1 - /mnt/ntfs0 ?ntfs ? ?- ? ? ? no ? ? ?-
> /dev/dsk/c3d0p5 - /mnt/ntfs1 ?ntfs ? ?- ? ? ? no ? ? ?-
> /dev/dsk/c3d0p6 - /mnt/ntfs2 ?ntfs ? ?- ? ? ? no ? ? ?-
> rpool/ROOT/opensolaris ?- ? ? ? ? ? ? ? / ? ? ? ? ? ? ? zfs ? ? - ? ? ? no ? 
> ? ?-
> /dev/dsk/c3d0s1 - ? ? ? ? ? ? ? - ? ? ? ? ? ? ? swap ? ?- ? ? ? no ? ? ?-
> -------------------------------------------------------
>
> I created 3 dir's under /mnt i.e. c3d0p1,c3d0p5 & c3d0p6
>
> I was able to mount c3d0p1 i.e. my C:/ drive but while mounting remaining 
> NTFS drives its showing following error >>
>
> ------------------------------------------
> root at belenix:/mnt# mount /dev/dsk/c3d0p6 /mnt/ntfs2
> This is not an NTFS disk/image.
> ------------------------------------------
>
> Is there something wrong with permisions?
> I did ls -ltr and out put is as follows >>
>
> -----------------------------------------
> dr-xr-xr-x 1 root root 4096 Nov 11 ?2008 ntfs0
> drwxrwxrwx 2 root root ? ?2 May 25 20:53 windows
> drwxr-xr-x 2 root root ? ?2 May 25 20:57 ntfs1
> drwxr-xr-x 2 root root ? ?2 May 25 20:57 ntfs2
> -----------------------------------------
>

Please mount  your partitions  manually first, and  see. These
are the mount points I  have created under opensolaris 2008.11
to access  my windows  and linux partitions,  co-existing with
opensolaris.

bish:~$ ls -al /mnt
total 20
drwxr-xr-x   6 root     sys            6 Mar 15 14:04 .
drwxr-xr-x  30 root     root          35 May 25 08:47 ..
drwxr-xr-x   2 root     root           2 Aug  9  2008 linux
drwxr-xr-x   2 root     root           2 Aug  9  2008 pen
drwxr-xr-x   2 root     root           2 Jul 29  2008 windows
bish:~$

Your permissions of 755 seem to be correct.

To  mount  a partition  you  need  to specify  filetype  quite
specifically on the command line. On my box, this is precisely
what I do:

1) Windows XP on NTFS partition:
   # /sbin/mount -F ntfs  /dev/dsk/c5d0p1 /mnt/windows

2) SuSE 11 on ext3 partition (extended logical)
   # /sbin/mount -F ext2fs  /dev/dsk/c5d0p7 /mnt/linux

3) USB pendrive (MSDOS 32 bit format)
   # /sbin/mount -F pcfs /dev/dsk/c6t0d0p0:1 /mnt/pen

All of them work fine (after mounting with root privileges)
The /dev/dsk/PARTITION may vary on your system.

HTH

Bish

Reply via email to