buildmin-8.html

来自「讲述建立最小系统流程!!入门值得一看和一学」· HTML 代码 · 共 42 行

HTML
42
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><HTML><HEAD> <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> <TITLE>How To Build a Minimal Linux System from Source Code: Ncurses</TITLE> <LINK HREF="buildMin-9.html" REL=next> <LINK HREF="buildMin-7.html" REL=previous> <LINK HREF="buildMin.html#toc8" REL=contents></HEAD><BODY><A HREF="buildMin-9.html">Next</A><A HREF="buildMin-7.html">Previous</A><A HREF="buildMin.html#toc8">Contents</A><HR><H2><A NAME="s8">8. Ncurses</A></H2><P>The next thing we need is Bash, but bash needs ncurses, so we'll install it first. Ncurses replaces termcap as the way of handling text screens,but it can also provide backwards compatibility by supporting the termcapcalls.  In the interests of having a clean simple modern system, I think its best to disable the old termcap method. You might strike trouble later on if you are compiling an older application that uses termcap. But at least you will know what is using what. If you need to you can recompile ncurses with termcap support.<P><P>The commands I used are<P><P><PRE>        ./configure --prefix=/usr --with-install-prefix=/mnt/target --with-shared --disable-termcap         make         make install</PRE><P><HR><A HREF="buildMin-9.html">Next</A><A HREF="buildMin-7.html">Previous</A><A HREF="buildMin.html#toc8">Contents</A></BODY></HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?