우분투
-
ubuntu에 APMcase Computer : 2011. 1. 10. 21:30
Apache + php + mysql 1.Apache 설치 $ sudo apt-get install apache2 2. MySQL 인증 모듈 설치 $ sudo apt-get install libapache2-mod-auth-mysql 3. MySQL 설치 $ sudo apt-get install mysql-server mysql-client => mysql root 유저에 대한 password를 지정해 준다. 4. PHP 설치 $ sudo apt-get install php5-common php5 libapache2-mod-php5 5. PHP와 Mysql 연동 모듈 설치 $ sudo apt-get install php5-mysql 서비스 실행 여부 확인 apache 데몬 실행여부 확인 : ps -ef ..
-
[Ubuntu] 우분투 10.04 에서 eclipse cdt 설치하기case Computer : 2010. 9. 19. 12:54
eclipse cdt는 eclipse에서 c/c++ 개발을 할수 있게 도와두는 도구이다. 설치하는 방법이 버젼별로 달라 10.04에 대해서 설치 할법을 블로킹한다. 설치전에 /etc/apt/sources.list 에서 아래 내용에 대해서 주석을 제거 한다 ..생략.. deb http://kr.archive.ubuntu.com/ubuntu/ lucid-backports main restricted uni verse multiverse deb-src http://kr.archive.ubuntu.com/ubuntu/ lucid-backports main restricted universe multiverse ..생략.. deb http://archive.canonical.com/ubuntu lucid part..
-
[Ubuntu] 우분투 9.10 에서 ATI 그래픽 드라이버 설치case Computer : 2010. 4. 7. 12:27
이런 저런 시도를 많이 해보았다.. 결국에는 GG ATI redeon Expree 200 을 쓰기에 드라이버를 받았다. ati-driver-installer-9-3-x86.x86_64.run 이녀석을 받아 실행 시켰다 Created directory fglrx-install.QdTjsL Verifying archive integrity... All good. Uncompressing ATI Proprietary Linux Driver-8.593........................................................................................ .............................................................
-
[Ubuntu] VirtualBox 심리스 모드case Computer : 2010. 4. 6. 13:09
심리스 모드 전에 상태 일반 vmware에서와 비슷하다... 이번엔 심리스 모드... 하단에 windows에 시작메뉴가 보인다!!!!! 이것이 심리스 모드... 확장 게시트를 설치하면되는데 이건 vmware에서 vmware tool과 비슷한것이다. 하지만 조금 불편한점이라 하면 정확이 저 상태에서는 윈도우 메뉴와 윈도우에서 뛰은 메뉴만 윈도우라서 다른곳을 클릭하고서 윈도우키를 누르면 듣지 않는다는.... 그리고 아직 많이 느린것 같다... 내컴퓨터가 느려서 그런가;;;
-
Ubuntu Hardy Heron 8.04 gets ported onto Sony Ericsson's Xperia X1case Computer : 2010. 2. 17. 17:25
Not even a fortnight after we saw Android 2.0.1 slapped onto Sony Ericsson's all-but-forgotten Xperia X1, along comes a port that makes the other look like child's play. A dedicated coder over at XDA Developers has managed to stuff Ubuntu Hardy Heron 8.04 onto an X1, and while the functionality is limited (as you'd expect), the amount of fun to be had is restrained only by your imagination (and ..
-
iptables scriptcase Computer : 2009. 3. 18. 14:17
iptable을 설정하다 서버를 재부팅 하면 iptable이 초기화 되어 버린다. 이를 막기위해서는 iptalbes-save와 iptables-restore 명령을 적절히 사용하여 스크립트를 만들어서 서버가 실행될때 같이 실행되게 만들어 주어야 한다. 명령어 먼저 알아보면 iptables-save iptable에 내용을 저장할 수 있다. save라는 명령어지만 내부에 저장되지는 않는다. output을 다른 파일로 저장한다. (우분투에서는 그렇다. 다른 운영체제는 각자 알아봐세요) ex> #> /sbin/iptables-save > /etc/iptables.rules iptables-restore iptable-sava로 저장된 파일을 불러와서 iptables 내용을 다시 셋팅해준다. ex> #> /sbi..