일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- maven
- git
- PostgreSQL
- JDBC
- 설정
- 오픈소스
- Tomcat
- myBatis
- ubuntu
- Thymeleaf
- spring
- Exception
- Core Java
- error
- 문서
- Open Source
- JavaScript
- MySQL
- MSSQL
- SpringBoot
- IntelliJ
- jpa
- AJAX
- oracle
- Docker
- Source
- Eclipse
- Spring Boot
- STS
- Today
- Total
헤르메스 LIFE
[dmg2img] Ubuntu 에 Apple 폰트 설치하기 ( 맥분투 ) 본문
Apple 폰트인 San Francisco 폰트를 다운받았습니다.
Ubuntu에 설치해서 사용해보고자 했지만 실패 했습니다.
https://developer.apple.com/fonts/
Fonts - Apple Developer
Get the details, frameworks, and tools you need to use system fonts for Apple platforms in your apps.
developer.apple.com
Apple Font를 상용 폰트입니다. 디자인이라든지 상업용에 사용할 수 없습니다.
# dmg2img 설치
$ sudo apt-get install dmg2img
# .dmg를 .img로 변환
$ dmg2img SF-Pro.dmg SF-Pro.img
dmg2img v1.6.7 (c) vu1tur (to@vu1tur.eu.org)
SF-Pro.dmg --> SF-Pro.img
decompressing:
opening partition 0 ... 100.00% ok
opening partition 1 ... 100.00% ok
opening partition 2 ... 100.00% ok
opening partition 3 ... 100.00% ok
opening partition 4 ... 100.00% ok
Archive successfully decompressed as SF-Pro.img
# .img를 .iso로 이름 바꾸기
$ mv filename.img filename.iso
# mount 실패
$ sudo mount -o loop SF-Pro.iso /mnt
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/loop26, missing codepage or helper program, or other error.
San Francisco 폰트를 찾아보니 Git 에 올려진 파일을 찾았습니다.
Ubuntu에 설치해봅니다.
https://github.com/posteroffonts/sanfran/tree/master
GitHub - posteroffonts/sanfran: Originally only for San Francisco, now I just dump all the font dirs of macOS. San Francisco is
Originally only for San Francisco, now I just dump all the font dirs of macOS. San Francisco is in /S/L/F. Fonts from developer.apple.com/fonts are in respective directories. Kaiti.ttc is compresse...
github.com
압축을 풀고, fonts 폴더에 복사합니다.
$ sudo cp *.otf /usr/share/fonts/
# 폰트 갱신: 시스템에 폰트반영.
$ fc-cache -f -v
설치는 된 것 같네요.
Apple 폰트와 비슷하게 만들어진 폰트가 있습니다.
Inter 와 Pretendard 라는 폰트입니다. Pretendard 폰트는 오픈폰트 라이선스를 사용합니다.
https://github.com/orioncactus/pretendard
GitHub - orioncactus/pretendard: 어느 플랫폼에서든 사용할 수 있는 system-ui 대체 글꼴 | A system-ui alternativ
어느 플랫폼에서든 사용할 수 있는 system-ui 대체 글꼴 | A system-ui alternative font for all cross-platform - orioncactus/pretendard
github.com
https://github.com/supermarin/YosemiteSanFranciscoFont
GitHub - supermarin/YosemiteSanFranciscoFont: Replace Helvetica Neue on your 10.10 Yosemite Mac with San Francisco – the Wa
Replace Helvetica Neue on your 10.10 Yosemite Mac with San Francisco – the Watch font. - supermarin/YosemiteSanFranciscoFont
github.com
https://hermeslog.tistory.com/740
[Ubuntu] Ubuntu 를 사용해보려 합니다.
갑자기 Linux OS를 설치하고 싶어졌습니다. 1. Ubuntu 다운로드 https://ubuntu.com/download/desktop https://ubuntu.com/download/desktop ubuntu.com 2. 부팅 USB 만들기 https://rufus.ie/ko/ Rufus - 간편하게 부팅 가능한 USB 드라
hermeslog.tistory.com
'장난감들' 카테고리의 다른 글
[VS Code] VS Code를 이용한 Java Project 구성 (0) | 2024.04.25 |
---|---|
[Git] Personal Access Token (0) | 2024.03.19 |
[멀티부팅] Ventoy (0) | 2024.02.17 |
[Eclipse] svn lock 지우기 ( feat : SQLite ) (0) | 2023.10.04 |
또 하나의 DB 참고 (0) | 2023.08.16 |