다음 이전 차례

2. sane과 xsane 설치하기

2.1 sane 설치

  1. README 파일을 잘 읽어본다.

    sane 소스디렉토리로 이동해서 다음과 같이 명령한다. (root 권한을 가지고 있다고 전제하며, /usr/local/에 sane이 설치된다.)

    ./configure
    make
    make install 
    

  2. /etc/ls.so.conf에 다음의 두 줄 추가
    /usr/local/lib/
    /usr/local/lib/sane
    
  3. sane이 제대로 설치되었는지 test해보자

    build한 source directory를 보면 $SRC-sane/tools 밑에 find-scanner라는 프로그램이 있다.

    ./tools/find-scanner
    

    프로그램을 실행해서 실제 system에서 scanner가 인식이 되는지 확인하자.

2.2 xsane 설치

  1. xsane.INSTALL 문서파일을 자세히 읽는다.
  2. 그리고, 컴파일해서 설치하자.
    ./configure
    make
    make install 
    


다음 이전 차례