translator
2,631
edits
K2latmanesh (talk | contribs) m (Adding Special:MyLanguage/ to Links) |
K2latmanesh (talk | contribs) (Marked this version for translation) |
||
Line 140: | Line 140: | ||
See its website for more details: [http://rufus.ie/] | See its website for more details: [http://rufus.ie/] | ||
===Writing to a USB Stick on a Macintosh=== | ===Writing to a USB Stick on a Macintosh=== <!--T:84--> | ||
<!--T:85--> | |||
As a Unix variant, macOS uses a similar approach to Linux. All commands below should be run in the '''Terminal''' application. Commands using '''sudo''' may prompt for your password; this is expected. | As a Unix variant, macOS uses a similar approach to Linux. All commands below should be run in the '''Terminal''' application. Commands using '''sudo''' may prompt for your password; this is expected. | ||
<!--T:86--> | |||
After you've inserted your USB drive, identify it using '''diskutil''': | After you've inserted your USB drive, identify it using '''diskutil''': | ||
{{UserCmd|command=diskutil list}} | {{UserCmd|command=diskutil list}} | ||
Line 156: | Line 158: | ||
1: Windows_NTFS MYUSBDRIVE 7.8 GB disk3s1 | 1: Windows_NTFS MYUSBDRIVE 7.8 GB disk3s1 | ||
<!--T:87--> | |||
Note the identifier '''disk3s1''' in this example. | Note the identifier '''disk3s1''' in this example. | ||
<!--T:88--> | |||
Unmount the drive with the command: | Unmount the drive with the command: | ||
{{UserCmd|command=sudo diskutil unmount /dev/disk3s1}} | {{UserCmd|command=sudo diskutil unmount /dev/disk3s1}} | ||
Volume MYUSBDRIVE on disk3s1 unmounted | Volume MYUSBDRIVE on disk3s1 unmounted | ||
<!--T:89--> | |||
Now you can use '''dd''' to write to the raw device: | Now you can use '''dd''' to write to the raw device: | ||
{{UserCmd|command=sudo dd bs=4m if=Desktop/manjaro-i3-21.2.3-220205-linux515.iso of=/dev/disk3}} | {{UserCmd|command=sudo dd bs=4m if=Desktop/manjaro-i3-21.2.3-220205-linux515.iso of=/dev/disk3}} | ||
Line 168: | Line 173: | ||
3303161856 bytes transferred in 2470.782563 secs (1336889 bytes/sec) | 3303161856 bytes transferred in 2470.782563 secs (1336889 bytes/sec) | ||
<!--T:90--> | |||
The USB drive can now be removed from the computer and used to boot Manjaro. | The USB drive can now be removed from the computer and used to boot Manjaro. | ||