맥북에서 블루투스 기기(키보드, 마우스 등)가 갑자기 연결이 잘 안될때...


Ctrl+Space를 눌러 Active Monitor.app 실행 후 blued 프로세스를 종료하면 블루투스 프로세스가 재실행 되면서 연결이 잘 됨.


터미널에서 블루투스를 죽이는 방법도 있음.


sudo killall -HUP blued


'맥북' 카테고리의 다른 글

맥북 패러럴즈 한영전환키 변경 ( Command+Space )  (0) 2016.06.15
맥북 화면캡쳐  (0) 2016.03.15
맥북에서 ftp 서버 열기  (0) 2015.04.15
mac에서 java_home 설정  (0) 2015.03.09
맥북에서 hosts 파일 변경  (0) 2014.12.05
Posted by 무세1
,

sudo nano /private/etc/hosts


##

# Host Database

#

# localhost is used to configure the loopback interface

# when the system is booting.  Do not change this entry.

##

127.0.0.1       localhost

255.255.255.255 broadcasthost

::1             localhost

10.2.2.10      test.domain.com


Ctrl+o

Enter

Ctrl+x



바로 적용을 위해서

dscacheutil -flushcache


Posted by 무세1
,

맥북 mariadb 설치하기

맥북 2014. 11. 10. 22:43

Homebrew 설치 되어 있다는 가정하에 진행함.

terminal 실행후 아래 두 명령어를 실행하면 끝.


>brew update


>brew install mariadb


mariadb 설치후 db실행

>mysql.server start


mariadb 설치후 db stop

>mysql.server stop


mariadb 접속

mysql -uroot


맥북 실행시 mariadb 실행하려면

> ln -sfv /usr/local/opt/mariadb/*.plist ~/Library/LaunchAgents

> launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mariadb.plist



Posted by 무세1
,