ubuntu

    [ubuntu] library path에 관해서

    Ubuntu library path를 총괄하는 부분은 하나의 파일에서 시작한다. /etc/ld.so.conf위 파일에서 부터 시작한다. 속의 내용은 아래와 같다.include /etc/ld.so.conf.d/*.conf /etc/ld.so.conf.d 여기에 있는 library file들을 참조하는데, library가 정의된 파일이 항상 존재한다.이름은 ld.so.conf로 되어 각 폴더별로 ld.so.conf를 연결시킨다. 위 방법대로 설정을 하지 않는다면,export LD_LIBRARY_PATH=[ lib path ] 참고 ; https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#safe=off&q=ld.so.conf

    [Spring Boot] Intro

    (Ubuntu 16.04 64bit) 1. What is 'Spring Boot'? main home page : http://projects.spring.io/spring-boot/ 2. install default, installing java 2-1) install gradlesudo apt-get install gradle(ref : http://java.ihoney.pe.kr/254) 2-2) install spring-cli 2-3) install sdkmanPlease open a new terminal, or run the following in the existing one: source "/home/hklee/.sdkman/bin/sdkman-init.sh" error solution(..

    [ubuntu] 마우스 휠 방향 바꾸기(mac osx처럼)

    Reference : http://adminplay.com/?mid=LETC&document_srl=262563&listStyle=viewer&page=3 [dgkim@~]$ xmodmap -ppThere are 13 pointer buttons defined. Physical Button Button Code 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 휠 기능 역방향 으로는 아래 명령어 한다 xmodmap -e "pointer = 1 2 3 5 4 6 7 8 9 10 11 12 13" 상세 설명은 man xmodmap 참조 한다

    가비아 ssh로 접속해서 작업하기

    가비아의 FTP보안정책에 의해서 10자리의 비밀번호를 새로 설정하게 되어 있습니다. 따라서 FTP의 비밀번호를 새로 설정한 후에, FTP의 접속 일시를 설정하고 접속하면 됩니다. ssh [사용자 아이디]@[사용자의 도메인]

    openCV 설치하기 ubuntu 14.04

    openCV란,OpenCV(Open Computer Vision)은 오픈 소스 컴퓨터 비전 C 라이브러리이다. 원래는 인텔이 개발하였다. 윈도, 리눅스 등의 여러 플랫폼에서 사용할 수 있다. 실시간 이미지 프로세싱에 중점을 둔 라이브러리이다. 인텔 CPU에서 사용되는 경우 속도의 향상을 볼 수 있는 Intel Performance Primitives (IPP)를 지원한다. ref. https://ko.wikipedia.org/wiki/OpenCV 설치방법 : http://www.samontab.com/web/2014/06/installing-opencv-2-4-9-in-ubuntu-14-04-lts/

    음악 플레이어. clementine

    https://apps.ubuntu.com/cat/applications/clementine/ 지니가 끊기면서 음악 스트리밍에 대한 궁금증과 더불어 지금 당장 노래를 들을 수 있는 플레이어가 필요했습니다. 그러다 검색하니 나온 클레멘타인 음악 플레이어, 우분투 소프트웨어 센터에서 검색할 수 있습니다. ( from : http://ttor.tistory.com/34 )

    mount 잡기 (usb 인식 시키기)

    1. Command$ cd /media$ mkdir temp$ sudo mount /dev/sda1 /media/temp 2. Check status$ mount

    java/자바 에서 call back에 대해서 공부해보기 -1

    java/자바 에서 call back에 대해서 공부해보기 -1 1. 목적callback 예제를 작성해보고 사용 방법을 이해해보자.callback을 사용하는 방법을 알게되었다. 1. 환경 셋팅java, ubuntu 14.04 1. SourceCallbackTest.java class Sum { interface OnMaxNumberCb { void onMaxNumber(int number, int exceed); } private int number = 0; private int maxNumber = 0; private OnMaxNumberCb myCallback; public void setOnMaxNumberCb(OnMaxNumberCb callback) { myCallback = callback; }..