To use a USB pen drive on a Solaris system, you will need to follow these steps:
modinfo | grep usb
If the output of this command includes a line with usb
, it means that the USB support is enabled in the kernel. If it is not enabled, you will need to enable it by adding the appropriate kernel modules to your system.
Plug in the USB pen drive. Insert the USB pen drive into a USB port on your Solaris system.
Determine the device name of the USB pen drive. Run the following command to list the devices on your system:
ls /dev
Look for a device name that starts with rdiskette
or rdisk
. This is the device name of the USB pen drive.
mkdir /mnt/usb
mount
command to mount the USB pen drive on the mount point you created. For example:mount -F pcfs /dev/rdiskette0 /mnt/usb
Replace /dev/rdiskette0
with the actual device name of your USB pen drive.
cd /mnt/usb
umount
command to unmount the USB pen drive.