View Single Post
 
Old 01-08-2009, 11:45 PM
lanceomni's Avatar
lanceomni lanceomni is offline
 
Join Date: Nov 2008
Location: Florida, US
Posts: 521
If your in Single User Mode by booting with -s you can mount your USB thumb drive like this.

Boot into Single User Mode without the USB thumb drive plugged in.

1. Allow for the modification of files by typing:
Code:
/sbin/mount -uw /
2. Make a directory in Volumes to mount to. We will call it "usbstick" by typing:
Code:
mkdir /Volumes/usbstick
3. Before we plug it in we need to make reference to what other drives we see in /dev by typing (You might want to write them down):
Code:
ls /dev/disk*
4. Now plug in the usb thumb drive, wait a second then look for a new addition by typing:
Code:
ls /dev/disk*
5. Now lets mount it. Lets say you there are two new additions disk4 & disk4s1. Type the following (replace msdos with hfs depending on how the usb thumb drive is formatted. If you use it on a PC too then its msdos):
Code:
mount -t msdos /dev/disk4s1 /Volumes/usbstick
Then you can access your usb thumb drive at /Volumes/usbstick

If you are getting a basic understanding of the commands that Milanca posted then you should be able to supliment them with your USB thumb drive's location.

MOBO: Z77MX-QUO-AOS CPU: Core i7 3770K GPU: MSI N760 TF 2GD5/OC Case: Modded MacPro2,1
Memory: 32GB Corsair Vengeance (CMY32GX3M4A1600C9) Wifi: Airport Extreme bcm94321MCA BIOS: HermitCrab Labs H3A.816M
Monitor: AOC Q2963Pm 29" WFHD 2560x1080 21:9
Interests: KDE on Apple Darwin, Keeping it real with the command line, Helping those that help themselves
Reply With Quote