Last active
November 22, 2021 23:53
-
-
Save silversonicaxel/d4aadab69e4233b57d62aa9e696e8438 to your computer and use it in GitHub Desktop.
UNIX SHELL COMMANDS #unix #unix-devices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// list of all devices /dev | |
$ diskutil list | |
// unmount device | |
$ diskutil unmountDisk [DEVICE] | |
$ diskutil unmountDisk /dev/disk2 | |
// setup iso into one device | |
$ dd if=[ISO_IMAGE] of=[DEVICE] | |
$ sudo dd if=Desktop/raspup-8.2.1-a60dc46d9-2gb-f2fs-swap.img of=/dev/disk2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment