# LFS **Repository Path**: ragus/LFS ## Basic Information - **Project Name**: LFS - **Description**: Practise Linux from Scratch; (based on CentOS 7) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-10-18 - **Last Updated**: 2022-06-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #LFS ###2016年10月19日 15:10:02 1.[LFS-BOOK-7.10-systemd.pdf](http://linuxfromscratch.org/lfs/downloads/stable-systemd/LFS-BOOK-7.10-systemd.pdf) 2.[wget-list](http://linuxfromscratch.org/lfs/downloads/stable-systemd/wget-list) ###Thu Oct 20 12:43:06 EDT 2016 1. **makeinfo**,stackoverflow上的一个回答:( What is makeinfo, and how d I get it?)[http://stackoverflow.com/questions/338317/what-is-makeinfo-and-how-do-i-get-it] 2. 下面是因为centos 7 core(Linux localhost 3.10.0-327.36.2.el7.x86_64 #1 SMP Mon Oct 10 23:08:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux)本身并不带有的软件,需要手工安装的一些: ``` 20 yum install openssh-server 29 yum install wget 62 yum install perl 67 yum upgrade 68 yum install net-tools 98 yum install git 120 yum install bison 122 yum install gcc 125 yum install m4 patch 126 yum install patch 131 yum -y install gcc-c++ 133 yum -y install byacc 135 yum -y install flex 138 yum -y install bzip2 139 yum -y install texinfo[_Attention:Texinfo == makeinfo_] ``` 3.p015-library-check.sh检查library是否存在,结果只能是都found,或者 not found,不可能是一个有,一个没有. ``` find: ‘/usr/libexec/initscripts/legacy-actions/auditd’: Permission denied libgmp.la : not found find: ‘/usr/libexec/initscripts/legacy-actions/auditd’: Permission denied libmpfr.la : not found find: ‘/usr/libexec/initscripts/legacy-actions/auditd’: Permission denied libmpc.la : not found 或者 libgmp.la : not found libmpfr.la : not found libmpc.la : not found ```