Monday, July 19, 2010

Access NTFS partition from Solaris


How to Access NTFS partition,

Here is the steps:
1) Install the FSWpart package Download http://www.belenix.org/binfiles/FSWpart.tar.gz Uncompress: gunzip -c FSWpart.tar.gz | tar xvf - Install: pkgadd -d . FSWpart  

2) Install the FSWfsmisc package Download http://www.belenix.org/binfiles/FSWfsmisc.tar.gz Uncompress: gunzip -c FSWfsmisc.tar.gz | tar xvf - Install: pkgadd -d . FSWfsmisc

3) prtpart /dev/rdisk/c0d0p0 -ldevs This will display all the partitions in this format ==> /dev/dsk/c0d0pN : FAT/NTFS NOTE : N means 0,1,2,3 etc.
4) Now to mount the particular NTFS partition Example :
mkdir /mnt/c mount -F ntfs /dev/dsk/c0d0p1 /mnt/c

if you have more than one partition, than make more directories in '/mnt/' and put the address (/dev/dsk/..)

Best Regards.

No comments:

Post a Comment