매번 검색하기 귀찮아서 작성함
그냥 UNetbootin 을 사용하는것도 괜찮은 선택지인 것 같다.
디스크 목록 보기
$ diskutil list
디스크 추출
$ diskutil unmountDisk /dev/disk#
ISO -> IMG
$ hdiutil convert -format UDRW -o ~/path/to/output.img /path/to/input.iso
$ mv /path/to/output.img.dmg /path/to/output.img
Flashing image
$ sudo dd if=/path/to/output.img of=/dev/rdisk# bs=8m
압축된 이미지 Flashing
$ gunzip -c /path/to/image.gz | sudo dd of=/dev/rdisk# bs=8m
bs 는 한번에 작업할 block size. 1m 을 쓰라고 하는 곳도 있는데.. 뭐 상관없겠지
dd 작업 중간에 Ctrl+T 를 누르면 작업상황을 확인할 수 있다.
펌, 출처
http://blog.iolate.kr/224
'STUDY > OS X Mac' 카테고리의 다른 글
맥 putty 설치하지 말고, 터미널에서 하자. 맥 telnet, ssh (0) | 2017.03.06 |
---|---|
Homebrew 사용법 (0) | 2017.03.06 |
[Engineer on the Mac] 맥 패키지 관리자 yum 대신에 homebrew ! (0) | 2017.03.06 |
[Engineer on the Mac] telnet 사용법 (0) | 2017.02.28 |
[Engineer on the Mac] USB to Serial(RS-232), UC-232A (0) | 2017.02.28 |