Programming/openCV2012. 2. 4. 21:19
2012년 2월 에 포함된 녀석은 opencv 2.0 버전 같은데
별도로 opencvlibrary에서 받는게 나으려나?
[링크 : http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.3.1/]

$ apt-cache search opencv
libcv-dev - development files for libcv
libcv4 - computer vision library
libcvaux-dev - development files for libcvaux
libcvaux4 - computer vision extension library
libhighgui-dev - development files for libhighgui
libhighgui4 - computer vision GUI library
opencv-doc - OpenCV documentation and examples
python-opencv - Python bindings for the computer vision library
harpia - Image Processing/Computer Vision Automatic Prgm. Tool 


[링크 : http://jaehwacho.springnote.com/pages/5657783]

'Programming > openCV' 카테고리의 다른 글

Cmake로 openCV 컴파일 설정 및 설치하기  (0) 2012.02.12
ubuntu opencv 패키지 버전 정보  (0) 2012.02.12
우분투에서 openCV 카메라 영상받기 예제  (0) 2012.02.04
openCV  (0) 2012.02.04
openCV OCR 예제  (0) 2011.07.17
Posted by 구차니
Linux/Ubuntu2011. 11. 21. 17:05
패키지는 클라이언트용 snmp와 서버용 snmpd가 존재한다.
snmp - SNMP (Simple Network Management Protocol) applications
snmpd - SNMP (Simple Network Management Protocol) agents

$ snmpwalk -v 2c -c public 192.168.10.19
심심해서 복사기에 snmp가 지원한다고 하길래 해봤더니.. -_-
무려 1393라인에 걸쳐 나오는 센스

[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/article/SNMP_%B0%B3%BF%E4]
[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/SNMP/document/net_snmp5]
[링크 : http://www.it-slav.net/blogs/2009/02/05/install-and-configure-snmp-on-ubuntu/]

'Linux > Ubuntu' 카테고리의 다른 글

ubuntu server / desktop edition의 차이점  (0) 2011.12.03
ubuntu 64bit server 10.04 LTS 부팅이 안돼!  (0) 2011.12.03
ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
vlan 1은 지원안함?  (0) 2011.11.06
ip alias on ubuntu  (0) 2011.11.05
Posted by 구차니
Linux/Ubuntu2011. 11. 5. 23:59
ip alias는 동일 MAC에 여러개의 IP를 할당하는 기술이다.
단순하게 ifconfig 만으로 사용이 가능하며 : 구분자를 이용하여 할당한다.
기본적으로 추가된 가상 랜카드의 맥 어드레스는 물리 랜카드의 맥 어드레스와 동일하게 잡히게 된다.

$ sudo ifconfig eth0:0 192.168.1.1 up

$ ifconfig
eth0      Link encap:Ethernet  HWaddr 00:e0:91:0b:75:8c  
          inet addr:192.168.0.154  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::2e0:91ff:fe0b:758c/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1164 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1221 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:1306134 (1.3 MB)  TX bytes:139974 (139.9 KB)
          Interrupt:16 

eth0:0    Link encap:Ethernet  HWaddr 00:e0:91:0b:75:8c  
          inet addr:192.168.1.1  Bcast:192.168.1.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:16 

[링크 : http://www.cyberciti.biz/tips/ubuntu-linux-creating-ethernet-alias-for-eth0-network-device.html

'Linux > Ubuntu' 카테고리의 다른 글

ubuntu 10.04 LTS 최소 디스크 사이즈  (0) 2011.11.15
vlan 1은 지원안함?  (0) 2011.11.06
vlan on ubnutu  (0) 2011.11.05
netbeans package - ubuntu  (0) 2011.10.22
sudo timeout 늘리기  (0) 2011.10.05
Posted by 구차니
프로그램 사용/eclipse2011. 10. 24. 21:39
$ sudo apt-get install eclipse
로 설치를 했는데 프로젝트 윈도우에서 아무것도 나오지 않는 현상 발생 -_-


 아래의 도움말 대로 SUN(oracle) JDK를 깔아서 -vm 옵션을 줘도 여전히 안보이고 -_-

혹시나 해서 버전을 비교해보니 우분투에서 관리하는건 GALILEO 버전이고


eclipse.org 에서 오늘 받아본건 INDIGO 버전이다.


VM 설정없이 그냥했는데 잘 나오네 -_-


결론 : 우분투에서 eclipse 패키지 관리가 잘못된듯

---
두개의 환경파일을 비교해보면 은근 심하게 많은 차이점이 발견된다.
혹시나 해서 덮어씌어 봤지만 역시나 실행은 안되니 eclipse.ini 파일은 덮어씌우지 않도록!




----
2011.10.25 추가
몽작가님 의 리플을 보고 확인해보니
eclipse-platform 패키지에는 eclipse-jdt가 suggest로 되어 있어 기본적으로 설치는 안되는 것으로 생각된다.

eclipse-platform eclipse-jdt 두개의 패키지를 집에와서 설치해보니 자~알 된다!
몽백작님 캄사욤~

[링크 : http://packages.ubuntu.com/hardy/eclipse-platform]
[링크 : http://packages.ubuntu.com/hardy/eclipse-jdt
[링크 : http://packages.ubuntu.com/hardy/eclipse-cdt

Posted by 구차니
ATI RageXL 문제도 아니었고(vga=771 nomodeset 둘다 해결안됨)
quiet 옵션을 빼고 부팅을 해보니


..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 
요기 까지만 출력하고 멈추어 버린다.

검색을 해보니 믿기지는 않지만 키보드를 바꾸니 해결되었다는 충격적인 내용에
혹시나 해서 USB 허브에서 뽑아 따로따로 키보드와 마우스를 연결해주니 문제없이 설치된다.. OTL
Yes, it is strange but true (?).
I think what might happen that a contact got stuck and send an impuls that linux was interpreting as something wrong and collapsed.
I unplugged the usb transmitter for my keyboard and mouse and it all booted up well. The keyboard is fine so far and it was a free keyboard from logitech. Something might gotten inside. The battery is fine btw.
Will try to clean it. So if someone has a simliar problem, check you keyboard.

[링크 : http://forums.opensuse.org/english/get-technical-help-here/hardware/460402-boot-panic-2.html

다른걸 추가적으로 찾아보니 APIC 문제이며, noapic를 주고 설치를 하면된다는데 귀찮아서 테스트는 일단 패스 -_-
Your APIC is borked. You'll need to use the noapic option. See here for a forum posting regarding this. Don't fret, it doesn't mean that the hardware is bad, just that the BIOS didn't configure it in a state that was suitable for booting a kernel. You should also look around for a BIOS update and see if that helps.


---
2011.09.18 추가
USB 허브에 마우스/키보드를 연결해서 사용하면 노말 부팅도 안된다 -_-
설치화면에서 noapic nolapic를 주어도 여전히 부팅은 막막하고...
그냥 USB 허브없이 바로 USB 키보드/마우스를 꼽아야 되는듯 하다.

BIOS에서 USB emulation 기능을 활성화 해보아도 안되는 상황 ㅠ.ㅠ
(설명에 68h/60h 어쩌구 하면서 PS/2 에뮬레이션 같은데 이걸 해도 안되네 -_-)
Port 64/60 Emulation - This option is typically not used since most OSes are  now USB-aware.
[링크 : http://www.etomic.org/manuals/motherboard_se7210tp1.pdf
[링크 : http://www.techarp.com/showfreebog.aspx?lang=0&bogno=343] << 내용 
---

APIC는 인터럽트 관련인데 음..
USB 허브를 통해서 키보드와 마우스를 인식하다 보니 무언가가 엉겨서 그런걸려나?
[링크 : http://en.wikipedia.org/wiki/Advanced_Programmable_Interrupt_Controller

LAPIC는 Local APIC의 약자이다.
[링크 : http://linux.about.com/cs/linux101/g/lapic.htm
Posted by 구차니
Linux/Ubuntu2011. 9. 7. 21:02
freeglut3-dev의 상콤한 설정

1) sudo apt-get update 
2) sudo apt-get install build-essential
3) sudo apt-get install freeglut3-dev

[링크 : http://ubuntuforums.org/showthread.php?t=345177



colinux 에서 freegult를 설치하고 예제를 컴파일 하여 실행한 화면
공부용으로는 colinux + openGL도 썩 나쁘진 않은듯 하다.
[링크 : http://www.opengl.org/resources/code/samples/glut_examples/examples/examples.html]

undefined reference to `gluOrtho2D' 해결법은
-lGLU
[링크 : http://www.opengl.org/discussion_boards/ubbthreads.php?ubb=showflat&Number=273312

'Linux > Ubuntu' 카테고리의 다른 글

Ubuntu Desktop 64bit on Xeon Server (nocona) 3.0Ghz x 2  (2) 2011.09.17
Ubuntu 10.04 LTS on Xeon(nocona) 2CPU / ATI Rage XL 설치 실패  (0) 2011.09.13
update-manager  (0) 2011.06.21
motd - Message of The Day  (0) 2011.06.07
apt-get 관련  (0) 2011.06.05
Posted by 구차니
Linux/Ubuntu2011. 4. 15. 10:57
리눅스와 윈도우를 하나의 pc에서 설치하면 시간이 오락가락한다 -_-
원인이라면 리눅스에서 하드웨어 시간을 UTC로 사용하기 때문이고
윈도우에서는 하드웨어 시간을 지역시간(한국이라면 KST)로 사용하기 때문이다.

그렇다면.. 리눅스에서 강제로 KST를 UTC로 조정해서 저장을 한다는 의미이려나 -ㅁ-?

아래의 ubuntu 도움말에서는 윈도우에서 UTC를 기본시간으로 설정하는 방법과
리눅스의 시간을 UTC로 사용하지 않는 방법 두가지를 설명해 놓았다.
Make Windows use UTC

Note: This method was not initially supported on Windows Vista and Server 2008, but came back with Vista SP2, Windows 7 and Server 2008 R2.

To make MS Windows calculate the time from the hardware clock as UTC.

    Create a file named WindowsTimeFixUTC.reg with the following contents and then double click on it to merge the contents with the registry:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
     "RealTimeIsUniversal"=dword:00000001

Make Linux use 'Local' time

To tell your Ubuntu system that the hardware clock is set to 'local' time:

    edit /etc/default/rcS
    add or change the following section

    # Set UTC=yes if your hardware clock is set to UTC (GMT)
    UTC=no

[링크 : https://help.ubuntu.com/community/UbuntuTime]

 sudo gedit /etc/default/rcS

# Set UTC=yes if your system clock is set to UTC (GMT), and UTC=no if not.
UTC=no

[링크 : http://ubuntuforums.org/archive/index.php/t-43810.html]

'Linux > Ubuntu' 카테고리의 다른 글

apt-get 관련  (0) 2011.06.05
PAE - Physical Address Extension  (0) 2011.05.08
Ubuntu 에서 듀얼 모니터 사용하기  (2) 2011.04.15
ubuntu 10.04 LTS 64bit  (0) 2011.03.22
우분투 32bit 최대 메모리 인식용량ㅠ  (2) 2011.03.20
Posted by 구차니
Linux/Ubuntu2011. 4. 15. 09:49
"기본설정 - 모니터에서" 설정을 한다.
아래에서 기본값으로 "모든 모니터에서 같은 그림" 이라고 되어 있는 부분의 체크를 해제하면


아래와 같이 연결된 모니터가 개별로 출력이 되며, 드래그를 하여 위치를 설정하면 된다.


Posted by 구차니
Linux/Ubuntu2010. 12. 5. 19:31
ubuntu 에서 언어를 바꾸로 로그인 하면 아래와 같은 창이 뜨면서
표준 폴더의 이름을 업데이트 하려고 한다.



임의로 프로그램을 실행해서 변경하고 싶다면
 $ xdg-user-dirs-gtk-update
를 실행하면 된다.

직접 수정하고 싶다면 user home 디렉토리에서 아래의 파일을 직접수정해도 된다.
$ gedit ~/.config/user-dirs.dirs
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Templates"
XDG_PUBLICSHARE_DIR="$HOME/Public"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/Music"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/Videos"

[링크 : http://webkebi.zany.kr:9003/board/bView.asp?bCode=11&aCode=2283]
[링크 : http://silverwav.wordpress.com/2010/03/21/note-ubuntu-default-folders/]
Posted by 구차니
Linux/Ubuntu2010. 10. 28. 15:50
"연결을 받아들이도록 자동 네트워크 설정" 을 선택하면 VNC 접속시 암호를 물어보지 않게 설정이 된다.


Posted by 구차니