본문 바로가기

OS83

ssh 접속이 느릴경우... 이유는 잘 모르겠다만...UseDNS no를 넣어주니 빨라진다... 아마도 SSH Server가 DNS Server를 이용하지 않고 클라이언트를 인식하는 것 같다.. 메뉴얼을 좀 더 읽어봐야겠다...흠.... 2011. 6. 30.
우분투에서 sun java 설치하기 sudo add-apt-repository "deb http://archive.canonical.com/ubuntu lucid partner" sudo apt-get install sun-java6-jdk sun-java6-jre sun-java6-plugin 여러개의 java가 설치되어 있는 경우 java 선택 sudo update-alternatives --config java sun에서 배포하는 java를 설치해야하는 이유는 eclipse plugin 설치시 오류 발생. 2011. 6. 3.
Ubuntu 10.10에서 django 설정하기 사이트의 이름을 mysite로 가정하고 작성한다. SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonOption django.root /mysite 2011. 4. 28.
Ubuntu Desktop 10.04 용 Ubuntu Desktop 10.04 용 * 2010. 05. 12 오늘이 무슨 요일인지도 모르겠다. 내 며칠은 리눅스 레이드 때문에 완전 망가졌였었다. =,= 인텔 보드에서 IDE 쓰는 모드가 IDE, RAID, AHCI 이렇게 3 가지 있는데, IDE 선택하면 PATA 방식 에뮬레이션을 하면서 하드 순서가 이상해진다. =,= 커널 위키에는 Intel Matrix RAID 쓰지 않는 경우에도 이게 옵티멀이라고 되어 있었는데, RAID 모드에서는 아래 모든 과정을 하고 마지막 GRUB 인스톨하는데 에러가 났다. 결론은, Intel 보드에서 SATA 쓰는 사람은 왠만하면 AHCI 를 써야한다. 우분투 위키에는 Live CD GUI 로 Software Raid 구성 지원이 안 되므로 Alternative C.. 2011. 4. 26.
내부망 컴퓨터에서 외부로 나가도록 iptables 설정. 내부 망의 컴퓨터를 인터넷에 연결되어 있는 컴퓨터를 통해 통신하도록 룰을 올리자. eth0의 IP가 1.1.1.1이고 내부 네트워크가 192.168.1.0이라면 # iptables -t nat -A POSTROUTING -o eth0 -s 192.168.1.0/24 -j SNAT --to 1.1.1.1 2011. 4. 15.
Free Up Cache Memory in Ubuntu 출처 : http://goo.gl/oexhJ Ever wondered how to remove the cache memory in Ubuntu? Linux kernels 2.6.16 and newer provide a mechanism to clear the inode, page, and dentry caches on demand. All you have to do is echo a value to the proc filesystem, and you’re done. Follow the recipe below: As this is a non-destructive operation and dirty objects are not freeable, run: sync To free pagecache: sudo s.. 2011. 4. 15.