본문 바로가기

전체 글

(27)
[centOS] java environment Find out "/etc/profile.d/java.sh" and modify JAVA_HOME, JRE_HOME, CLASSPATH and PATH.
[ubuntu] To change root password # sudo passwd root새 암호 입력 :새 압호 재입력 : passwd: 암호를 성공적으로 업데이트 했습니다.
[wincap] Start wincap driver autometically when the OS was started # This post is for Windows. wireshark, URLSnoop 등을 사용할 때 필수로 필요한 wincap 드라이버. 설치할 때 "Automatically start the WinCap driver at boot time" 에 체크를 했다면 문제가 없겠으나 혹 자는 자동으로 시작하는 것이 꺼림칙 해서 체크를 해제하고 설치하는 사람도 있다. (그 중 한명이 본인...) 설치 후 wireshark 및 URLSnoop 를 실행하면 캡쳐할 네트웍 어뎁터 리스트를 볼 수 있으나 시스템을 재부팅 하고 난 후엔 네트웍 어뎁터 리스트를 볼수가 없다. wincap driver 가 시작되지 않은 경우이다. 이런 경우에는 수동으로 시작하는 방법이 있다. 1. 관리 도구 > 서비스NetGroup Pack..
[ubuntu] ubuntu router (writing...) # Prerequisite1. ubuntu server - network adaptor 2EA : 1 is external, another is internal- sudo iptables -t nat -A POSTROUTING 0o eth0 -j MASQUERADE
[ubuntu] add-apt-repository: command not found $ sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"sudo: add-apt-repository: command not found - JDK 설치하기 앞서 repository 추가 하기 위한 명령어가 없어서 나오는 에러 메시지. $ sudo apt-get install python-software-properties- 위 패키지 설치 후 시도하면 정상적으로 명령어가 실행된다.
[ubuntu] change console resolution # Tested ubuntu 12.04 LTS, 13.04 vmware guest os. #sudo vi /etc/default/grub - 항목GRUB_CMDLINE_LINUX="" → GRUB_CMDLINE_LINUX="vga=0x31B" ; 수정 :wq! ; 저장 #sudo update-grub#sudo reboot 위와 같은 절차로 수정 및 입력을 하면 변경된 콘솔 화면을 볼 수 있다. 참고 color| 640x480 800x600 1024x768 1280x1024-----------------------------------------------256 | 0x301=769 0x303=771 0x305=773 0x307=77532k | 0x310=784 0x313=787 0x316=790 0x31..
[firebirdsql] Firebird Character Sets and Collations http://www.destructor.de/firebird/charsets.htm
[firebirdsql] create database for windows installDir\bin\> isql -s 1 -ch KSC_5601SQL> create database 'c:\testdb.fdb' user 'usr1' password '87654321' page_size 8192 default character set KSC_5601;SQL> show db;Database: c:\testdb.fdb Owner: usr1PAGE_SIZE 8192Number of DB pages allocated = 164Sweep interval = 20000Forced Writes are ONTransaction - oldest = 1Transaction - oldest active = 2Transaction - oldest snapshot = 2Transa..