defaults -currentHost write -globalDomain AppleFontSmoothing -int 2
크리에이티브 커먼즈 라이선스
Creative Commons License




To turn on “DHCAST128″ support please do the following:

1)  Launch /Applications/Utilities/Terminal and do:
sudo chmod o+w /Library/Preferences
defaults write /Library/Preferences/com.apple.AppleShareClient afp_host_prefs_version -int 1
Now restart your computer.
2)  From Finder, select an AFP server, or use “Connect To…”.  This will cause the AFP Client to create the full preferences file
3)  Launch Terminal again and do:
sudo defaults write /Library/Preferences/com.apple.AppleShareClient afp_disabled_uams -array “Cleartxt Passwrd” “MS2.0″ “2-Way Randnum exchange”
sudo chmod o-w /Library/Preferences
Now restart your computer.

Note:  To add a “DHCAST128″ to the disable list, use
sudo defaults write /Library/Preferences/com.apple.AppleShareClient afp_disabled_uams -array-add “DHCAST128″


출처 : http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-workaround/
 

크리에이티브 커먼즈 라이선스
Creative Commons License
TAG AFP, Lion

Svn Server 설정하기(Subversion 설정)

내 삶의 애플/MacOSX 2011/04/07 21:24 Posted by 크롬은24번
간단한 파일하고 설정만으로 매킨토시 컴퓨터에 SVN 서버를 설정할 수 있습니다. 

1. 저장소 만들기 
    
     mkdir /Users/crazia/svn 
     cd /Users/crazia/svn
     svnadmin create super_ultra

     chown -R www:www /Users/crazia/svn/*


svn 레파지토리가 될 디렉토리를 생성하고, svnadmin 을 이용해서 프로젝트를 생성합니다. 지금 보여지는 예제로는 super_ultra 가 되겠군요. 그리고 chown 을 이용해서 www:www 로 바꿔줍니다. 


2. 설정파일 만들기 
   
sudo emacs /etc/apache2/other/svn.conf 


 -- svn.conf -- 
   
 
    LoadModule dav_svn_module /usr/libexec/apache2/mod_dav_svn.so

     <Location /svn>
        DAV svn
        SVNParentPath /Users/crazia/svn

        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile /etc/apache2/svn-auth-file
        Require valid-user

     </Location>

자신이 즐겨 쓰는 에디터 (vi, nano, emacs) 로 svn.conf 를 정해진 위치에다가 생성합니다. 그리고 그 안에 들어가는 내용을 아래와 같이 정리합니다. 


3. svn 계정만들기 

  sudo htpasswd -cm /etc/apache2/svn-auth-file crazia

svn 계정에 쓰일 (여기서는 crazia) 패스워드를 입력합니다. 


4. 아파치 재시작 

sudo apachectl restart 


 만약 에러 발생시 

sudo emacs /usr/sbin/apachectl

apachectl 파일에서 

     ULIMIT_MAX_FILES="ulimit -S -n `ulimit -H -n`"

 부분을  

     ULIMIT_MAX_FILES=""

 로 수정 하고 다시 아파치를 재시작합니다. 

  sudo apachectl restart 

 아파치 에서 에러가 발생하는 것을 알아보려면 
     
     tail -f /var/log/apache2/error_log

로 에러가 발생한 것을 알아본다. 


출처: http://crazia.tistory.com/683
크리에이티브 커먼즈 라이선스
Creative Commons License
패러렐즈5 를 기본설치하면 Optimization 항목에 "Enabled AutoCompress" 항목 체크를 해제하면 된다.

8800GS의 3.9 점이 5.7로 상승했군요!
수치만큼 체감 성능이 향상 했는지만 남았다. 

워해머 온라인을 실행하러! 
크리에이티브 커먼즈 라이선스
Creative Commons License

[10.6] QuickTime 이 조금 변함

내 삶의 애플/MacOSX 2009/06/06 20:07 Posted by 크롬은24번

2009-06-06 오후 7.59.35에 스크린샷.png

QuickTime의 창모드 재생화면

아쉽게도 무비스트에서는 자막 표시에 문제가 있고

VLC도 노이즈가 생긴다.

크리에이티브 커먼즈 라이선스
Creative Commons License