헤르메스 LIFE

[MacOS] Version 본문

장난감들

[MacOS] Version

헤르메스의날개 2020. 11. 18. 23:42
728x90

회사에서 MAC을 하나 얻어와서 테스트 하고 있음.

 

MacBook Pro 라고 하는데.. 대략 2013년도에 판매되는 제품인 듯 함.

 

OS를 새로 설치하려고 하는데.. macOS 도 노트북에 맞게 설치해야 하는 듯 함.

OS X Mavericks 10.9.5 를 설치해야 함.

macOS

최신 버전

macOS Catalina

10.15.2

macOS Mojave

10.14.6

macOS High Sierra

10.13.6

macOS Sierra

10.12.6

OS X El Capitan

10.11.6

OS X Yosemite

10.10.5

OS X Mavericks

10.9.5

OS X Mountain Lion

10.8.5

OS X Lion

10.7.5

Mac OS X Snow Leopard

10.6.8

Mac OS X Leopard

10.5.8

Mac OS X Tiger

10.4.11

Mac OS X Panther

10.3.9

Mac OS X Jaguar

10.2.8

Mac OS X Puma

10.1.5

Mac OS X Cheetah

10.0.4

Mac OS는 ISO 파일을 내려받아도 윈도우에서 읽을 수가 없음.

USB 파일로 저장할 수 없다는 말... ㅡㅡ;

 

그래서 Mac PC 에서 ISO 파일을 내려받고 DMG 파일을 만들어야 함.

그나마 정상적인 DMG 파일을 찾는 것도 어려움. ㅠ.ㅠ

 

아래의 내용은 ISO 파일을 다운받아서, DMG 파일로 변환하는 방법을 잘 설명하고 있음. 그나마.. ㅡㅡㅋ

MacOS의 Terminal 을 열면 UNIX Shell 명령을 사용하는 것과 같은것 같음. ( 정확치 않음. )

 

1. Download the desired file

2. Open the Terminal (in /Applications/Utilities/ or query Terminal in Spotlight)

3. Convert the .iso file to .img using the convert option of hdiutil:

hdiutil convert -format UDRW -o /path/to/target.img /path/to/source.iso

이렇게 바꿀 수 있음.-> 바꿀파일명 원본파일명 순임.

cd Download

hdiutil convert -format UDRW -o target.img source.iso

 

Note: OS X tends to put the .dmg ending on the output file automatically. Rename the file by typing:

mv /path/to/target.img.dmg /path/to/target.img

4. Run diskutil list to get the current list of devices

5. Insert your flash media

6. Run diskutil list again and determine the device node assigned to your flash media (e.g. /dev/disk2)

7. Run diskutil unmountDisk /dev/diskN (replace N with the disk number from the last command - in the previous example, N would be 2)

8. Execute sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m (replace /path/to/downloaded.img with the path where the image file is located; for example, ./ubuntu.img or ./ubuntu.dmg).

Note: Using /dev/rdisk instead of /dev/disk may be faster.

Note: If you see the error dd: Invalid number '1m', you are using GNU dd. Use the same command but replace bs=1m with bs=1M.

Note: If you see the error dd: /dev/diskN: Resource busy, make sure the disk is not in use. Start the 'Disk Utility.app' and unmount (don't eject) the drive.

9. Run diskutil eject /dev/diskN and remove your flash media when the command completes

 

 

728x90

'장난감들' 카테고리의 다른 글

[IntelliJ] Plugins  (0) 2020.12.26
[macOS] brew 설치  (0) 2020.11.18
[macOS] macOS 다운로드  (0) 2020.11.18
[macOS] 설치프로그램  (0) 2020.11.18
[Eclipse][Subversion] 이클립스 SVN 계정변경, 계정정보 삭제/리셋  (1) 2020.11.18