by channe15 » Sat Jul 03, 2010 4:02 pm
For attached Hard Drives/USB flash drives you can use regular UNIX commands
You can mount drives from the Drive Utility. Applications-->Utilities-->Disk Utility. On the left are the drives - mount or unmount appropriately.
For a command line option, open Terminal
dmesg <--- will give you a scsi address list of your attached drives
then mount it
sudo mount {device} {mount path}
sudo mount /dev/sda1 {or whatever the drive address it} /Volumes/desiredpath
you may need to create the target forlder for the mount path first before you try and mount it.
check if it is mounted using
df -h
Unmount using
umount /Volumes/desiredpath
Mount a DMG in terminal using
hdiutil attach /path/to/myDMGname.dmg
Detach a dmg by checking the Volume name first
df -h
hdiutil detach /Volumes/desiredDMG