본문 바로가기

MAC12

Mac OS X 시스템 아이콘 위치 Spotlight, the Finder, the Dock, and Dashboard /System/Library/CoreServices/Finder.app/Contents/Resources/ /System/Library/CoreServices/Dock.app/Contents/Resources/ /System/Library/CoreServices/Search.bundle/Contents/Resources/ System File and Folder Icons /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/ Starting Up and Logging In /System/Library/CoreServices/loginwindow.app/Con.. 2011. 11. 10.
Mac 주소록에서 바로 전화 거는 방법 - Skype & X-Lite 4 이용 참고: Peter Kim 블로그 http://goo.gl/vQp88 Apple script 를 이용한 주소록 plug in 을 작성하면 Mac의 주소록에서 바로 전화를 걸 수 있다. Skype 또는 X-Lite 와 같은 VoIP를 즐겨쓴다면 매우 유용하다. 방법: ~/Library/Address Book Plug-Ins/ 에 script를 저장한다. 1. Skype calls from Address book 문제점: ~/Library/Address Book Plug-Ins 에 기본으로 설치되어 있는 Skype dialer 는 최신버전의 Skype 5.3.59 에서 작동하지 않는다. 아래 제공되는 Skype calls Apple script 를 다운받아 설치하면 작동한다. http://faqintosh.c.. 2011. 10. 26.
텍스트 파일 한글 인코딩 변환 (euc-kr 에서 utf-8 로 변환) for Mac or UNIX http://kldp.org/node/63419 http://pc-to-mac-changer.blogspot.com/2010/02/shell-script-text-unicode.html Shell script 이용 한개의 파일에 대해서 변환 #/bin/bash iconv -c -f euc-kr -t utf-8 $1 > $1.tmp mv $1.tmp $1 폴더 내의 smi, srt, txt 파일에 대해서 모두 변환 find "$1" -name "*.smi" -o -name "*.srt" -o -name "*.txt" | while read filename do tempName=${filename}~temp~.txt mv "$filename" "$tempName" iconv -c -f euc-kr -t ut.. 2011. 8. 24.
깨알 같은 Mac OS X 사용 팁 정리 오랜만에 일반인은 관심도 없는 서버, 가상화, 웹 서비스, 데이터베이스 설정에 대한 팁이 아니라 그냥 데스크탑 OS에 대한 팁을 기록해 봅니다만, 이 역시 깨알같은 내용이라 일반 남자사람이나 여자사람은 관심이 없을 만한 내용이군요. ** 본 포스팅은 굵직 굵직한 App 위주의 사용 팁이 아니라 Command prompt를 사용하는 Unix 스타일의 깨알 같은 Mac OS X 사용 팁을 정리합니다. (진행 중...) 1. hosts 파일 수정 Mac OS X 10.6.x 의 hosts 파일의 위치는 다음과 같습니다. /private/etc/hosts 아시다시피 이 hosts 파일을 admin 권한으로 열어서 수정해 주시면 되겠습니다. 작성 형식은 xxx.xxx.xxx.xxx hostname1 hostnam.. 2011. 5. 1.