라벨이 OSX인 게시물 표시

[OSX] 맥에서 원격제어

서버: 설정 -> 공유 -> 화면공유 설정 클라이언트: /Application/Library/CoreServices/화면공유 를 실행. IP넣기

[OSX] 타임캡슐 사용법

1. 외부공유 finder -> cmd + k => afp://ip, smb://ip http://blog.naver.com/makingkbs?Redirect=Log&logNo=80150795522 2. 타임캡슐 포맷 http://blog.naver.com/makingkbs/80154595590 3. USB 외장하드 추가가능 4.  윈도우7을 사용 하는 컴퓨터로  집에 설치되어있는 타임캡슐에 자료를 사용하고싶습니다 =>  윈도우즈용 에어포트 유틸리티를 설치하시고 타입캡슐의 비밀번호를 저장해놓은 뒤 네트워크로 접근하면 공유폴더로 접근가능할 껍니다.

[PHP] OSX Mountain Lion (Apache, PHP)

$ httpd -v $ php -v $ sudo apachectl start $ sudo apachectl stop $ vi /etc/apache2/httpd.conf DocumentRoot "/Library/WebServer/Documents"  LoadModule php5_module libexec/apache2/libphp5.so $ cp /etc/php.ini.default /etc/php.ini $ chmod 644 /etc/php.ini #MYSQL 연동 $ vi /etc/php.ini extension=php_mysql.dll extension=php_mysqli.dll 주석해제 --------------------------------------------- 아파치 웹루트 변경 vi /etc/apache2/httpd.conf DocumentRoot " /Users/ bookpro /Sites" bookpro /Sites/"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all sudo apachectl restart

[MYSQL] OSX MySQL 언인스톨

http://ucnn.tistory.com/62 sudo rm -rf /usr/local/msql sudo rm -rf /usr/local/mysql* sudo rm -rf /Library/StartupItems/MySQLCOM sudo rm -rf /Library/PreferencePanes/My* vim /etc/hostconfig and removed the line MYSQLCOM=-YES-

[MYSQL] OSX MYSQL 한글 설정

1. /etc/my.cnf 가 없어요! Open Terminal (in Utilities folder under Applications folder)  cd /usr/local/mysql/support-files/ sudo cp my-huge.cnf /etc/my.cnf and enter your admin password when prompted. You could do this from a non-admin account by using the su command, but that's probably a bit scary for some people ;)  You will now have a copy of my.cnf in /etc (just in case you don't know, that means the etc folder directly under the root folder, not under MySQL's install folder)  You can edit it with a text-editor such as TextWrangler by using File->Open Hidden, or if you are happy to use the command line, use:  cd /etc 출처: http://forums.mysql.com/read.php?11,366143,376017#msg-376017 2. 이제 설정을 덮어씌워요! [mysqld] character-set-server=utf8 collation-server=utf8_general_ci init_connect=SET collation_connection=utf8_general_ci init_connect=SET NAMES utf8 [client] default-character-set=utf8 [mysql] default-character-set=utf8

[OSX] 맥에서 JDK 삭제

- OSX 에서 JDK 1.6.0_65 삭제 방법 > % sudo rm -rf /System/Library/Java/JavaVirtualMachines/1.6.0.jdk > % sudo rm -rf /Library/Java/JavaVirtualMachines/1.6.0*.jdk > sudo ln -sf /Library/Java/JavaVirtualMachines/jdk1.8.0_05.jdk/Contents CurrentJDK >