Mounting a DOS partition from Solaris 2.6 x86 ============================================= 1) For ATAPI/IDE HDD. % /etc/init.d/volmgt stop % mkdir /mnt/C where /mnt/C is the desired mount point % mount -F pcfs /dev/dsk/c0d0p0:1 /mnt/C for Primary IDE port & Master HDD % mount -F pcfs /dev/dsk/c0d1p0:1 /mnt/C for Primary IDE port & Slave HDD % mount -F pcfs /dev/dsk/c1d0p0:1 /mnt/C for Secondary IDE port & Master HDD % mount -F pcfs /dev/dsk/c1d1p0:1 /mnt/C for Secondary IDE port & Slave HDD % cd /mnt/C % ls % umount /mnt/C 2) For SCSI HDD c0t0d0s0 --> for SCSI c0d0p0 --> for ATAPI/IDE c0 : SCSI Controller number or IDE port number for SCSI Controller number, 0, 1, 2, 3, ...... for IDE port, Primary IDE port = 0 Secondary IDE port = 1 t0 : SCSI ID number (omit for ATAPI/IDE) or SCSI Target number (0~6) do : for SCSI, is always 0 (Zero) for ATAPI/IDE, is Hard Disk Drive for example, Master = 0 , Slave = 1 s0 : Solaris partition p0 : MS-DOS partition -------------------------------------------------