컴퓨터 잘쓰기/Mac(OSX)(25)
-
[Command] 설치 되어있는 모든 JDK를 확인할 수 있는 명령어
/usr/libexec/java_home -V Matching Java Virtual Machines (2): 14.0.1 (x86_64) "Oracle Corporation" - "Java SE 14.0.1" /Library/Java/JavaVirtualMachines/jdk-14.0.1.jdk/Contents/Home 1.8.0_362 (x86_64) "Amazon" - "Amazon Corretto 8" /Users/OOO/Library/Java/JavaVirtualMachines/corretto-1.8.0_362/Contents/Home /Library/Java/JavaVirtualMachines/jdk-14.0.1.jdk/Contents/Home
2023.07.19 -
Mac(OSX) 단축키
특수키 Command (or Cmd) ⌘ Shift ⇧ Option (or Alt) ⌥ Control (or Ctrl) ⌃ Caps Lock ⇪ Function Fn Return ↩ 한문 Option(⌥) + Return(↩) 이모티콘 Option(⌥) + Command(⌘) + T 파일/폴더 경로 복사 Command(⌘) + Option(⌥) + C Finder 하위폴더 모두 펼치기 Option(⌥) + 폴더열기 아이콘 (>) ----------
2022.05.09 -
Mac OSX 한자(한문) 입력 방법
변환하고 싶은 한글이 선택된 상태에서 Option + Enter을 입력하면 한자선택창이 나타난다.
2022.03.04 -
[Command] 형상관리(svn, git) 파일 정리
# git 관련 파일 정리 > find . -type d -name .git -depth -exec rm -rf {} \; -print # svn 관련 파일 정리 > find . -type d -name .svn -depth -exec rm -rf {} \; -print ## OSX 관련 파일 정리 > find . -type f -name .DS_Store -depth -exec rm -rf {} \; -print
2022.01.21 -
[OSX-Command] xcode-select
개발자도구(Xcode) 디렉토리의 경로를 출력하거나 변경 # -p --print-path : 활성화된 개발자도구의 경로를 출력 > xcode-select -p /Applications/Xcode.app/Contents/Developer # -s --switch : 활성화시킬 개발자도구의 경로 설정 > xcode-select --switch /Applications/Xcode.app/Contents/Developer xcode-select: error: --switch must be run as root (e.g. `sudo xcode-select --switch `). > sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer Pass..
2022.01.19 -
Chrome(크롬) 강제업데이트 차단
# 자동업데이트 중지 크롬의 업데이트 확인 간격을 0으로 설정 defaults write com.google.Keystone.Agent checkInterval 0 # 자동업데이트 실행 크롬 업데이트 확인 간격을 기본값 18000 으로 설정 defaults write com.google.Keystone.Agent checkInterval 18000 # 수동으로 업데이트 실행 1. Finder를 실행하고 Command + Shift + G 또는 "이동 -> 폴더로 이동" 선택 2. 경로 이동 /Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Resources/ 또는 ~/Library/Google/GoogleSoftwareUp..
2021.04.19