본문 바로가기

os

(70)
linux sync time utc linux sync time utc $sudo date --set "5 Aug 2015 12:54"
How do I kill all screens? $pkill -15 screen or $killall -15 screen
screen cannot exec ... Then.. You make "new screen". screen -S "SCREENNAME" -d -m and Run screen -r "SCREENNAME" -X stuff $'ls\n'
FTP 550: Permission Denied FTP 550: Permission Denied solution:1. $vi /etc/vsftpd.conf allow_writeable_chroot=YES or write_enable=YES 2. $sudo service vsftpd restart if don't work?That folder add attribution to root $ sudo chmod -R 777 FOLDERNAME DONE!
mac mysql 설치 및 구동 mac에서 mysql 을 설치하는 방법은 생각보다 간단합니다. 1. mysql 사이트에서 dmg 설치 파일을 받습니다. (http://downloads.mysql.com/archives/community/) 다양한 버전이 있지만 설치 방법은 대소동이 합니다.2. 다운 받은 파일을 보면 mysql-버전-osx버전-x86_64.pkg 파일을 클릭해 줍니다. 3. 설치 시작! 계속만 눌러주면 설치가 끝! 4. 커맨드 창에서 mysql 실행시 명령어 $ sudo /usr/local/mysql/support-files/mysql.server start 5. mysql 종료 $ sudo /usr/local/mysql/support-files/mysql.server stop 6. mysql shell 시작 (처음 시..
ubunutu 서버에선 postgresql 이 기본으로 설치가 되는구나... 서버를 쓸일이 있어서 최신버전으로 설치 했더니 postgresql 이 기본으로 선택이 딱!역시 잘나가는구나~
-bash: brew: command not found (for mac) 만일 mac 커맨드에서 brew 명령어을 찾을수 없다고 나온다면 커맨드에 다음을 입력해준다. $ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)" 설치중.. 설치가 완료되면 brew를 쓸수 있다. 출처 : http://brew.sh
eclipse 메모리 사용량 확인 1. 이클립스의 환경 설정을 클릭! 2. General > Show heap status 를 클릭! 3. 이클립스의 하단에 사용중인 메모리량이 표시 됩니다. 오른쪽의 휴지통을 눌러주면 비사용중인 메모리를 강제로 반환합니다.