sudo gedit /etc/NetworkManager/NetworkManager.conf make “managed=true” sudo killall NetworkManager 로그아웃 하고 다시 로그인하면 된다.
sed 명령어 사용법
좋은 지침서로는 O’Reilly handbook for sed and awk 이랍니다. 책 제목인지, 책 설명인지는 모르겠지만(한번도 본적이 없어서) 이정도면 원서를 다루는 서점에서는 찾을 수 있겠지요. (영어입니다. 껄껄) “UNIX in a Nutshell” , “UNIX Power Tools” 같은 책도 추천한다네요. (게을러서인지, 아직 한글 관련 문서를 발견하지를 못했습니다. 아시는 분 있으면 소개좀. 책 말고요 – 돈이 없어서 ) sed: 무엇에 […]
SVN 명령어 활용 목록
SVN 명령어 SVN 히스토리 보기 $ svn log $ svn log –limit 4 $ svn log -l 4 SVN 파일 속성 만들기 (commit 무시) http://blog.naver.com/PostView.nhn?blogId=joycestudy&logNo=100097621794 $ svn propset svn:ignore POC . 현재 디렉토리상 POC 디렉토리 commit을 무시하라는 의미이다. 하나씩 업데이트 $ svn commit –username “mlink_1” –password “mlink_1” -m “refs #5402 광고별 통계 추가” template/manage/report/man_advertiser_report SVN […]
synergy.conf 파일 (aliase 사용)
샘플 파일 # sample synergy configuration file # # comments begin with the # character and continue to the end of # line. comments may appear anywhere the syntax permits. section: screens # three hosts named: moe, larry, and curly hansung: msi: asus: end section: links hansung: right = msi msi: left = hansung right […]
MySQL Tips
MySQL 무중단 Dump 뜨기, InnoDB이고 트랜잭션을 사용중일 때 –skip-add-locks –single-transaction –skip-lock-tables 테이블별 사이즈 보기 SELECT table_name, table_rows, round(data_length/(1024*1024),2) as ‘DATA_SIZE(MB)’, round(index_length/(1024*1024),2) as ‘INDEX_SIZE(MB)’ FROM information_schema.TABLES where table_schema = ‘rewardad’ GROUP BY table_name ORDER BY data_length DESC; 셀렉트로 Dump 뜨기 mysql -urad -p@1emdrewarddb -e”select * from account” rewardad > result.sql MySQL Timezone 설정하기 참고 : http://dev.mysql.com/doc/refman/5.5/en//time-zone-support.html […]