Advertisement
Advertisement
| 12.02.2007 at 03:33PM PST, ID: 22996568 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: |
bash$ mount /dev/disk0s2 on / (hfs, local, journaled) devfs on /dev (devfs, local) fdesc on /dev (fdesc, union) map -hosts on /net (autofs, automounted) map auto_home on /home (autofs, automounted) /dev/disk1s1 on /Volumes/Untitled (hfs, local, nodev, nosuid, journaled, noowners) bash$ diskutil list /dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *149.1 Gi disk0 1: EFI 200.0 Mi disk0s1 2: Apple_HFS Macintosh HD 148.7 Gi disk0s2 /dev/disk1 #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *1017.0 Mi disk1 1: Apple_HFS Untitled 1016.9 Mi disk1s1 bash$ sudo umount /Volumes/Untitled umount: unmount(/Volumes/Untitled): Resource busy bash$ sudo dd if=patchstick.img of=/dev/disk1 bs=1m dd: /dev/disk1: Resource busy ...at this point I eject the drive via the finder GUI... bash$ mount /dev/disk0s2 on / (hfs, local, journaled) devfs on /dev (devfs, local) fdesc on /dev (fdesc, union) map -hosts on /net (autofs, automounted) map auto_home on /home (autofs, automounted) bash$ diskutil list /dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *149.1 Gi disk0 1: EFI 200.0 Mi disk0s1 2: Apple_HFS Macintosh HD 148.7 Gi disk0s2 bash$ sudo umount /Volumes/Untitled umount: /Volumes/Untitled: not currently mounted bash$ sudo dd if=patchstick.img of=/dev/disk1 bs=1m dd: /dev/disk1: Operation not supported |