User Tools

Site Tools


public:computer:mac_osx

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:computer:mac_osx [2024/02/01 17:24] – [AppStore] alexpublic:computer:mac_osx [2026/08/08 16:32] (current) alex
Line 12: Line 12:
     * Meslo LG M Regular for Powerline [[https://github.com/powerline/fonts/blob/master/Meslo%20Slashed/Meslo%20LG%20M%20Regular%20for%20Powerline.ttf|powerline / fonts / Meslo Slashed/Meslo LG M Regular for Powerline.ttf @github.com]]     * Meslo LG M Regular for Powerline [[https://github.com/powerline/fonts/blob/master/Meslo%20Slashed/Meslo%20LG%20M%20Regular%20for%20Powerline.ttf|powerline / fonts / Meslo Slashed/Meslo LG M Regular for Powerline.ttf @github.com]]
     * Source Code Pro for Powerline [[https://github.com/powerline/fonts/blob/master/SourceCodePro/Source%20Code%20Pro%20for%20Powerline.otf|powerline / fonts / SourceCodePro / Source Code Pro for Powerline.otf]]     * Source Code Pro for Powerline [[https://github.com/powerline/fonts/blob/master/SourceCodePro/Source%20Code%20Pro%20for%20Powerline.otf|powerline / fonts / SourceCodePro / Source Code Pro for Powerline.otf]]
-  * menu status bar setting for time <sxh bash>+  * menu status bar setting for time <code bash>
 $ defaults write com.apple.menuextra.clock "DateFormat" "EEE d MMM hh:mm:ss" $ defaults write com.apple.menuextra.clock "DateFormat" "EEE d MMM hh:mm:ss"
-</sxh>+</code> 
 +  * 덮개 닫아도 잠들지 않게; 1 설정, 0 해제 <code bash>sudo pmset -c disablesleep 1</code> 
 +    * Macchiato [[https://github.com/ObservedObserver/Macchiato|GitHub - ObservedObserver/Macchiato: Keep your Mac awake while your code agent works — even with screen off, lid closed · GitHub @github.com]]
    
   * IINA [[https://iina.io|IINA - The modern media player for macOS.]]   * IINA [[https://iina.io|IINA - The modern media player for macOS.]]
Line 45: Line 47:
  
 ===== Generating ssh key on OS X ===== ===== Generating ssh key on OS X =====
-<code> +<code bash
-$ ssh-keygen -t rsa -C “alex@theta5912.net”   # Generate SSH Key+$ ssh-keygen -t rsa -C “메일 혹은 메시지”   # Generate SSH Key
 $ pbcopy < ~/.ssh/id_rsa.pub  # Copy SSH Key to Clipboard $ pbcopy < ~/.ssh/id_rsa.pub  # Copy SSH Key to Clipboard
 </code> </code>
Line 53: Line 55:
  BetterZip QuickLook; http://macitbetter.com/BetterZip-Quick-Look-Generator/  BetterZip QuickLook; http://macitbetter.com/BetterZip-Quick-Look-Generator/
  
 +
 +----
 +{{page>mac_reset}}
 +
 +{{page>macos}}
  
 ===== Setting up Git server on Mac OS X ===== ===== Setting up Git server on Mac OS X =====
Line 103: Line 110:
  
  
-<cli>+<code bash>
 $ /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user $ /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
-</cli>+</code>
  
 그리고나서는 파인더를 재실행 시키기 위해 아래처럼 타이핑한다 그리고나서는 파인더를 재실행 시키기 위해 아래처럼 타이핑한다
  
-<cli>+<code bash>
 $ killall Finder $ killall Finder
-</cli>+</code>
  
 다음으로 열기를 해서 중복된 리스트가 제거되었는지 확인해 보자 다음으로 열기를 해서 중복된 리스트가 제거되었는지 확인해 보자
Line 150: Line 157:
   * [[https://event-log.tistory.com/72|맥 키보드 마우스 연결 끊김 문제 해결 (에어팟 포함) @tistory.com]]   * [[https://event-log.tistory.com/72|맥 키보드 마우스 연결 끊김 문제 해결 (에어팟 포함) @tistory.com]]
   * [[https://blog.naver.com/umwonsuk/220674133771|맥 OS X 홈 폴더(홈 디렉토리) 옮기기 @blog.naver.com]] [[https://kukie.net/moving-mac-home-folder-on-osx/|맥 기본 폴더(홈 폴더)를 다른 디스크(파티션)로 변경하는 방법 @kukie.net]]   * [[https://blog.naver.com/umwonsuk/220674133771|맥 OS X 홈 폴더(홈 디렉토리) 옮기기 @blog.naver.com]] [[https://kukie.net/moving-mac-home-folder-on-osx/|맥 기본 폴더(홈 폴더)를 다른 디스크(파티션)로 변경하는 방법 @kukie.net]]
-    - 기존 홈 디렉토리 복사 <sxh bash>+    - 기존 홈 디렉토리 복사 <code bash>
 sudo ditto -V -rsrc /Users/계정명 /Volumes/볼륨명/계정명 sudo ditto -V -rsrc /Users/계정명 /Volumes/볼륨명/계정명
-</sxh>+</code>
     - 계정 설정에서 Home directory 변경     - 계정 설정에서 Home directory 변경
     - 재부팅     - 재부팅
-    - 기존 홈 디렉토리 삭제 및 심볼릭 링크 생성 <sxh bash>+    - 기존 홈 디렉토리 삭제 및 심볼릭 링크 생성 <code bash>
 sudo rm -dr /Users/계정명 sudo rm -dr /Users/계정명
 sudo ln -s /Volumes/볼륨명/계정명 /Users/계정명 sudo ln -s /Volumes/볼륨명/계정명 /Users/계정명
-</sxh>+</code> 
 +  * [[https://macnews.tistory.com/4067|맥북∙애플 키보드에서 Home, End, Page Up, Page Down 키 사용하기 @tistory.com]] 
 +  * [[https://blog.naver.com/lxxjxxx/221165887141|[Mac OS Tip #1] 맥 afp, smb 연결하는 방법과 부팅 시 자동 연결 설정하는 방법 @blog.naver.com]]
  
public/computer/mac_osx.1706775859.txt.gz · Last modified: by alex