"NCurses 설치하기"의 두 판 사이의 차이

한국 데비안 사용자 모임
둘러보기로 가기 검색하러 가기
(새 문서: 작성일자: 2015년 10월 27일 작성자: westporch == NCurses 다운로드 == ftp://ftp.gnu.org/pub/gnu/ncurses/ 에서 최신 버전의 NCurses를 다운받습니다. 2015.12....)
 
 
5번째 줄: 5번째 줄:
 
ftp://ftp.gnu.org/pub/gnu/ncurses/ 에서 최신 버전의 NCurses를 다운받습니다. 2015.12.27 기준으로 최신 버전인 [ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz ncurses-6.0]을 설치하겠습니다.
 
ftp://ftp.gnu.org/pub/gnu/ncurses/ 에서 최신 버전의 NCurses를 다운받습니다. 2015.12.27 기준으로 최신 버전인 [ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz ncurses-6.0]을 설치하겠습니다.
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/Downloads# wget ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz
 
root@RaspberryPi:~/Downloads# wget ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz
 
--2015-12-27 14:47:12--  ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz
 
--2015-12-27 14:47:12--  ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz
23번째 줄: 23번째 줄:
  
 
root@RaspberryPi:~/Downloads#
 
root@RaspberryPi:~/Downloads#
</syntaxhighlight>
+
</pre>
  
  
30번째 줄: 30번째 줄:
 
다운 받은 ncurses 파일의 압축을 해제합니다.
 
다운 받은 ncurses 파일의 압축을 해제합니다.
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/Downloads# ls
 
root@RaspberryPi:~/Downloads# ls
 
ncurses-6.0.tar.gz
 
ncurses-6.0.tar.gz
37번째 줄: 37번째 줄:
 
ncurses-6.0  ncurses-6.0.tar.gz
 
ncurses-6.0  ncurses-6.0.tar.gz
 
root@RaspberryPi:~/Downloads#
 
root@RaspberryPi:~/Downloads#
</syntaxhighlight>
+
</pre>
  
 
압축을 해제한 ncurses-6.0 폴더로 이동합니다.
 
압축을 해제한 ncurses-6.0 폴더로 이동합니다.
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/Downloads# cd ncurses-6.0
 
root@RaspberryPi:~/Downloads# cd ncurses-6.0
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
</syntaxhighlight>
+
</pre>
  
 
=== ./configure ===
 
=== ./configure ===
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/Downloads/ncurses-6.0# ./configure
 
root@RaspberryPi:~/Downloads/ncurses-6.0# ./configure
 
(...생략...)
 
(...생략...)
69번째 줄: 69번째 줄:
  
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
</syntaxhighlight>
+
</pre>
  
 
=== make ===
 
=== make ===
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/Downloads/ncurses-6.0# make
 
root@RaspberryPi:~/Downloads/ncurses-6.0# make
 
make[1]: Leaving directory '/root/Downloads/ncurses-6.0/misc'
 
make[1]: Leaving directory '/root/Downloads/ncurses-6.0/misc'
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
</syntaxhighlight>
+
</pre>
  
 
=== make install ===
 
=== make install ===
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/Downloads/ncurses-6.0# make install
 
root@RaspberryPi:~/Downloads/ncurses-6.0# make install
 
installing std
 
installing std
90번째 줄: 90번째 줄:
 
make[1]: Leaving directory '/root/Downloads/ncurses-6.0/misc'
 
make[1]: Leaving directory '/root/Downloads/ncurses-6.0/misc'
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
 
root@RaspberryPi:~/Downloads/ncurses-6.0#
</syntaxhighlight>
+
</pre>
 
 
  
 
== 설치 확인 ==
 
== 설치 확인 ==
99번째 줄: 98번째 줄:
 
=== Hello World 프로그램 ===
 
=== Hello World 프로그램 ===
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/NCurses# vi hello.c
 
root@RaspberryPi:~/NCurses# vi hello.c
</syntaxhighlight>
+
</pre>
  
 
hello.c 소스
 
hello.c 소스
123번째 줄: 122번째 줄:
 
=== 컴파일 ===
 
=== 컴파일 ===
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/NCurses# gcc -o hello hello.c -lncurses
 
root@RaspberryPi:~/NCurses# gcc -o hello hello.c -lncurses
 
root@RaspberryPi:~/NCurses#  
 
root@RaspberryPi:~/NCurses#  
</syntaxhighlight>
+
</pre>
  
 
=== 실행 ===
 
=== 실행 ===
  
<syntaxhighlight lang="">
+
<pre>
 
root@RaspberryPi:~/NCurses# ls
 
root@RaspberryPi:~/NCurses# ls
 
hello  hello.c
 
hello  hello.c
 
root@RaspberryPi:~/NCurses# ./hello
 
root@RaspberryPi:~/NCurses# ./hello
</syntaxhighlight>
+
</pre>
  
 
''hello'' 파일을 실행하면 Hello World가 출력됩니다.
 
''hello'' 파일을 실행하면 Hello World가 출력됩니다.
  
<syntaxhighlight lang="">
+
<pre>
 
Hello World
 
Hello World
</syntaxhighlight>
+
</pre>

2017년 8월 29일 (화) 22:08 기준 최신판

작성일자: 2015년 10월 27일
작성자: westporch

NCurses 다운로드

ftp://ftp.gnu.org/pub/gnu/ncurses/ 에서 최신 버전의 NCurses를 다운받습니다. 2015.12.27 기준으로 최신 버전인 ncurses-6.0을 설치하겠습니다.

root@RaspberryPi:~/Downloads# wget ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz
--2015-12-27 14:47:12--  ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.0.tar.gz
=> ‘ncurses-6.0.tar.gz’
Resolving ftp.gnu.org (ftp.gnu.org)... 208.118.235.20, 2001:4830:134:3::b
Connecting to ftp.gnu.org (ftp.gnu.org)|208.118.235.20|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD (1) /pub/gnu/ncurses ... done.
==> SIZE ncurses-6.0.tar.gz ... 3131891
==> PASV ... done.    ==> RETR ncurses-6.0.tar.gz ... done.
Length: 3131891 (3.0M) (unauthoritative)

ncurses-6.0.tar.gz          100%[===========================================>]   2.99M  1.50MB/s   in 2.0s   

2015-12-27 14:47:18 (1.50 MB/s) - ‘ncurses-6.0.tar.gz’ saved [3131891]

root@RaspberryPi:~/Downloads#


NCurses 설치

다운 받은 ncurses 파일의 압축을 해제합니다.

root@RaspberryPi:~/Downloads# ls
ncurses-6.0.tar.gz
root@RaspberryPi:~/Downloads# tar zxvf ncurses-6.0.tar.gz
root@RaspberryPi:~/Downloads# ls
ncurses-6.0  ncurses-6.0.tar.gz
root@RaspberryPi:~/Downloads#

압축을 해제한 ncurses-6.0 폴더로 이동합니다.

root@RaspberryPi:~/Downloads# cd ncurses-6.0
root@RaspberryPi:~/Downloads/ncurses-6.0#

./configure

root@RaspberryPi:~/Downloads/ncurses-6.0# ./configure
(...생략...)
Appending rules for normal model (form: ticlib+termlib+ext_tinfo+base+ext_funcs)
Appending rules for debug model (form: ticlib+termlib+ext_tinfo+base+ext_funcs)
Appending rules for normal model (test: ticlib+termlib+ext_tinfo+base+ext_funcs)
Appending rules for debug model (test: ticlib+termlib+ext_tinfo+base+ext_funcs)
creating headers.sh

** Configuration summary for NCURSES 6.0 20150808:

       extended funcs: yes
	   xterm terminfo: xterm-new

	   bin directory: /usr/bin
       lib directory: /usr/lib
       include directory: /usr/include
       man directory: /usr/share/man
       terminfo directory: /usr/share/terminfo

root@RaspberryPi:~/Downloads/ncurses-6.0#

make

root@RaspberryPi:~/Downloads/ncurses-6.0# make
make[1]: Leaving directory '/root/Downloads/ncurses-6.0/misc'
root@RaspberryPi:~/Downloads/ncurses-6.0#

make install

root@RaspberryPi:~/Downloads/ncurses-6.0# make install
installing std
installing stdcrt
installing vt100
installing vt300
/usr/bin/install -c ncurses-config /usr/bin/ncurses6-config
make[1]: Leaving directory '/root/Downloads/ncurses-6.0/misc'
root@RaspberryPi:~/Downloads/ncurses-6.0#

설치 확인

NCurses 라이브러리를 이용하여 Hello World를 출력하는 프로그램을 만들어 보겠습니다.

Hello World 프로그램

root@RaspberryPi:~/NCurses# vi hello.c

hello.c 소스

 1 //hello.c   
 2 #include <ncurses.h>
 3 
 4 int main()
 5 {
 6     initscr();              // Start curses mode
 7     printw("Hello World");  // Print Hello World
 8     refresh();              // Print it on to the real screen
 9     getch();                // Wait for user input
10     endwin();               // End curses mode
11 
12     return 0;
13 }

컴파일

root@RaspberryPi:~/NCurses# gcc -o hello hello.c -lncurses
root@RaspberryPi:~/NCurses# 

실행

root@RaspberryPi:~/NCurses# ls
hello  hello.c
root@RaspberryPi:~/NCurses# ./hello

hello 파일을 실행하면 Hello World가 출력됩니다.

Hello World