<!-- /* Font Definitions */ @font-face {font-family:Wingdings; panose-1:5 0 0 0 0 0 0 0 0 0; mso-font-charset:2; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-alt:SimSun; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:"/@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; mso-pagination:none; font-size:10.5pt; mso-bidi-font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:宋体; mso-font-kerning:1.0pt;} /* Page Definitions */ @page {mso-page-border-surround-header:no; mso-page-border-surround-footer:no;} @page Section1 {size:595.3pt 841.9pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:42.55pt; mso-footer-margin:49.6pt; mso-paper-source:0; layout-grid:15.6pt;} div.Section1 {page:Section1;} /* List Definitions */ @list l0 {mso-list-id:402263994; mso-list-type:hybrid; mso-list-template-ids:2142692144 -1450916780 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 {mso-level-text:%1、; mso-level-tab-stop:18.0pt; mso-level-number-position:left; margin-left:18.0pt; text-indent:-18.0pt;} ol {margin-bottom:0cm;} ul {margin-bottom:0cm;} -->
1、 用flie 可以查看文件是否为二进制文件,如果是二进制文件,而且是可执行的话,就会显示执行文件类别(ELF 32-bit LSB executable),PAM 验证用户登陆信息,记录登陆文件记录在数据。
2、 make是一个程序,会去找Makefile,Makefile,通常是软件开发商写的一个检测程序,检测用户的工作环境,以及该工作环境是否有软件开发商所需要的其它功能,该程序检测完之后,就会主动建立Makefile 的规则文件。通常这个检测程序的文件名为configure或者config
3、 为什么需要检测工作环境呢/
系统核心不尽相同,函数库不尽相同;每个linux系统版本所提供的函数库名称与路径可能不同,所以源码写出来之后,需要正对不同的工作环境进行编译。这个时候就很需要configure以及make的帮助。
4、 Tarball套件的解压缩之后,里面的文件有:
源码文件;
检测程序文件(configure config);
本套件的简单说明与安装说明(install readme)ç====重要====》
5、 安装与升级套件
有厂商网页下载Tarball;
将Tarball解开,产生很多的源码文件;
开始以gcc进行源码的编译(会产生目标文件,object files);可用make简化
用gcc进行函数库、主、子程序的连接,形成主要的二进制文件;可用make简化
将上述二进制文件以及相关的设置文件安装到自己的主机上;