Linux From Scratch(從零開始構建Linux系統,簡稱LFS)- Version 7.7(二)

来源:http://www.cnblogs.com/Mr-kevin/archive/2016/07/13/5667085.html
-Advertisement-
Play Games

七. 構建臨時系統 1. 通用編譯指南 a. 確認是否正確設置了 LFS 環境變數 b. 假定你已經正確地設置了宿主系統的符號鏈接: 1)shell 使用的是 bash。 2)sh 是到 bash 的符號鏈接。 3)/usr/bin/awk 是到 gawk 的符號鏈接。 4)/usr/bin/yac ...


七. 構建臨時系統

  1. 通用編譯指南

    a. 確認是否正確設置了 LFS 環境變數

echo $LFS

    b. 假定你已經正確地設置了宿主系統的符號鏈接:

      1)shell 使用的是 bash

      2)sh 是到 bash 的符號鏈接。

      3)/usr/bin/awk 是到 gawk 的符號鏈接。

      4)/usr/bin/yacc 是到 bison 的符號鏈接或者一個執行 bison 的小腳本。

    c. 構建臨時系統中,確保解壓軟體包時你使用的是 lfs 用戶。

    d. 除非特別說明,刪除解壓出來的目錄和所有編譯過程中生成的 <package>-build 目錄。

  2. Binutils-2.25 - 第一遍  

cd $LFS/sources
tar -jxf binutils-2.25.tar.bz2
cd binutils-2.25
mkdir -v ../binutils-build      # 建議在源碼目錄之外一個專門的編譯目錄裡面編譯
cd ../binutils-build
../binutils-2.25/configure     \
    --prefix=/tools            \
    --with-sysroot=$LFS        \
    --with-lib-path=/tools/lib \
    --target=$LFS_TGT          \
    --disable-nls              \
    --disable-werror
make

# 如果是在 x86_64 上編譯,創建符號鏈接,以確保工具鏈的完整性
case $(uname -m) in
  x86_64) mkdir -v /tools/lib && ln -sv lib /tools/lib64 ;;     
esac

make install
rm -rf $LFS/sources/binutils-build
rm -rf $LFS/sources/binutils-2.25
View Code

  3. GCC-4.9.2 - 第一遍

cd $LFS/sources
tar -jxf gcc-4.9.2.tar.bz2
cd gcc-4.9.2

tar -xf ../mpfr-3.1.2.tar.xz
mv -v mpfr-3.1.2 mpfr
tar -xf ../gmp-6.0.0a.tar.xz
mv -v gmp-6.0.0 gmp
tar -xf ../mpc-1.0.2.tar.gz
mv -v mpc-1.0.2 mpc

for file in \
 $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
do
  cp -uv $file{,.orig}
  sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
      -e 's@/usr@/tools@g' $file.orig > $file
  echo '
#undef STANDARD_STARTFILE_PREFIX_1
#undef STANDARD_STARTFILE_PREFIX_2
#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
#define STANDARD_STARTFILE_PREFIX_2 ""' >> $file
  touch $file.orig
done

sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure

mkdir -v ../gcc-build
cd ../gcc-build

../gcc-4.9.2/configure                             \
    --target=$LFS_TGT                              \
    --prefix=/tools                                \
    --with-sysroot=$LFS                            \
    --with-newlib                                  \
    --without-headers                              \
    --with-local-prefix=/tools                     \
    --with-native-system-header-dir=/tools/include \
    --disable-nls                                  \
    --disable-shared                               \
    --disable-multilib                             \
    --disable-decimal-float                        \
    --disable-threads                              \
    --disable-libatomic                            \
    --disable-libgomp                              \
    --disable-libitm                               \
    --disable-libquadmath                          \
    --disable-libsanitizer                         \
    --disable-libssp                               \
    --disable-libvtv                               \
    --disable-libcilkrts                           \
    --disable-libstdc++-v3                         \
    --enable-languages=c,c++

make
make install

rm -rf $LFS/sources/gcc-build
rm -rf $LFS/sources/gcc-4.9.2
View Code

  4. Linux-3.19 API 頭文件

cd $LFS/sources
tar -Jxf linux-3.19.tar.xz
cd linux-3.19

make mrproper
make INSTALL_HDR_PATH=dest headers_install
cp -rv dest/include/* /tools/include
rm -rf $LFS/sources/linux-3.19
View Code

  5. Glibc-2.21

cd $LFS/sources
tar -Jxf glibc-2.21.tar.xz
cd glibc-2.21

if [ ! -r /usr/include/rpc/types.h ]; then
  su -c 'mkdir -pv /usr/include/rpc'
  su -c 'cp -v sunrpc/rpc/*.h /usr/include/rpc'
fi
sed -e '/ia32/s/^/1:/' \
    -e '/SSE2/s/^1://' \
    -i  sysdeps/i386/i686/multiarch/mempcpy_chk.S

mkdir -v ../glibc-build
cd ../glibc-build

../glibc-2.21/configure                             \
      --prefix=/tools                               \
      --host=$LFS_TGT                               \
      --build=$(../glibc-2.21/scripts/config.guess) \
      --disable-profile                             \
      --enable-kernel=2.6.32                        \
      --with-headers=/tools/include                 \
      libc_cv_forced_unwind=yes                     \
      libc_cv_ctors_header=yes                      \
      libc_cv_c_cleanup=yes

make
make install
rm -rf $LFS/sources/glibc-build
rm -rf $LFS/sources/glibc-2.21
View Code

  6. 確認新工具鏈的基本功能(編譯和鏈接)都是像預期的那樣正常工作。運行下麵的命令進行全面的檢查:

echo 'main(){}' > dummy.c
$LFS_TGT-gcc dummy.c
readelf -l a.out | grep ': /tools'
View Code

    如果一切工作正常的話,這裡應該沒有錯誤,最後一個命令的輸出形式會是:

[Requesting program interpreter: /tools/lib/ld-linux.so.2]
View Code

    註意 /tools/lib、或者 64 位機器的 /tools/lib64 會以動態鏈接器的首碼出現。

    一旦一切都順利,清理測試文件:

rm -v dummy.c a.out
View Code

  7. Libstdc++-4.9.2

cd $LFS/sources
tar -jxf gcc-4.9.2.tar.bz2
cd gcc-4.9.2

mkdir -pv ../gcc-build
cd ../gcc-build

../gcc-4.9.2/libstdc++-v3/configure \
    --host=$LFS_TGT                 \
    --prefix=/tools                 \
    --disable-multilib              \
    --disable-shared                \
    --disable-nls                   \
    --disable-libstdcxx-threads     \
    --disable-libstdcxx-pch         \
    --with-gxx-include-dir=/tools/$LFS_TGT/include/c++/4.9.2

make
make install
rm -rf $LFS/sources/gcc-build
rm -rf $LFS/sources/gcc-4.9.2
View Code

  8. Binutils-2.25 - 第2遍

cd $LFS/sources
tar -jxf binutils-2.25.tar.bz2
cd binutils-2.25

mkdir -v ../binutils-build
cd ../binutils-build

CC=$LFS_TGT-gcc                \
AR=$LFS_TGT-ar                 \
RANLIB=$LFS_TGT-ranlib         \
../binutils-2.25/configure     \
    --prefix=/tools            \
    --disable-nls              \
    --disable-werror           \
    --with-lib-path=/tools/lib \
    --with-sysroot

make
make install
rm -rf $LFS/sources/binutils-build
rm -rf $LFS/sources/binutils-2.25
View Code

  9. 現在,為接下來的再調整”階段準備鏈接器:

make -C ld clean
make -C ld LIB_PATH=/usr/lib:/lib
cp -v ld/ld-new /tools/bin
View Code

  10. GCC-4.9.2 - 第2遍

cd $LFS/sources
tar -jxf gcc-4.9.2.tar.bz2
cd gcc-4.9.2

cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
  `dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include-fixed/limits.h

for file in \
 $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
do
  cp -uv $file{,.orig}
  sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
      -e 's@/usr@/tools@g' $file.orig > $file
  echo '
#undef STANDARD_STARTFILE_PREFIX_1
#undef STANDARD_STARTFILE_PREFIX_2
#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"
#define STANDARD_STARTFILE_PREFIX_2 ""' >> $file
  touch $file.orig
done

tar -xf ../mpfr-3.1.2.tar.xz
mv -v mpfr-3.1.2 mpfr
tar -xf ../gmp-6.0.0a.tar.xz
mv -v gmp-6.0.0 gmp
tar -xf ../mpc-1.0.2.tar.gz
mv -v mpc-1.0.2 mpc

mkdir -v ../gcc-build
cd ../gcc-build

CC=$LFS_TGT-gcc                                    \
CXX=$LFS_TGT-g++                                   \
AR=$LFS_TGT-ar                                     \
RANLIB=$LFS_TGT-ranlib                             \
../gcc-4.9.2/configure                             \
    --prefix=/tools                                \
    --with-local-prefix=/tools                     \
    --with-native-system-header-dir=/tools/include \
    --enable-languages=c,c++                       \
    --disable-libstdcxx-pch                        \
    --disable-multilib                             \
    --disable-bootstrap                            \
    --disable-libgomp

make
make install
ln -sv gcc /tools/bin/cc
rm -rf $LFS/sources/gcc-build
rm -rf $LFS/sources/gcc-4.9.2
View Code

  11. 確認新工具鏈的基本功能(編譯和鏈接)都是像預期的那樣正常工作。運行下麵的命令進行全面的檢查:

echo 'main(){}' > dummy.c
cc dummy.c
readelf -l a.out | grep ': /tools'
View Code

    如果一切工作正常的話,這裡應該沒有錯誤,最後一個命令的輸出形式會是:

[Requesting program interpreter: /tools/lib/ld-linux.so.2]
View Code

    註意 /tools/lib、或者 64 位機器的 /tools/lib64 會以動態鏈接器的首碼出現。

    一旦一切都順利,清理測試文件:

rm -v dummy.c a.out
View Code

  12. Tcl-8.6.3

      此軟體包和後面三個包(Expect、DejaGNU 和 Check)用來為 GCC 和 Binutils 還有其他的一些軟體包的

    測試套件提供運行支持。

cd $LFS/sources
tar -zxf tcl8.6.3-src.tar.gz
cd tcl8.6.3

cd unix
./configure --prefix=/tools

make
make install

chmod -v u+w /tools/lib/libtcl8.6.so
make install-private-headers
ln -sv tclsh8.6 /tools/bin/tclsh

rm -rf $LFS/sources/tcl8.6.3
View Code

  13. Expect-5.45

cd $LFS/sources
tar -zxf expect5.45.tar.gz
cd expect5.45

cp -v configure{,.orig}
sed 's:/usr/local/bin:/bin:' configure.orig > configure

./configure --prefix=/tools       \
            --with-tcl=/tools/lib \
            --with-tclinclude=/tools/include

make
make SCRIPTS="" install
rm -rf $LFS/sources/expect5.45
View Code

  14. DejaGNU-1.5.2

cd $LFS/sources
tar -zxf dejagnu-1.5.2.tar.gz
cd dejagnu-1.5.2

./configure --prefix=/tools

make install
rm -rf $LFS/sources/dejagnu-1.5.2
View Code

  15. Check-0.9.14

cd $LFS/sources
tar -zxf check-0.9.14.tar.gz
cd check-0.9.14

PKG_CONFIG= ./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/check-0.9.14
View Code

  16. Ncurses-5.9

cd $LFS/sources
tar -zxf ncurses-5.9.tar.gz
cd ncurses-5.9

./configure --prefix=/tools \
            --with-shared   \
            --without-debug \
            --without-ada   \
            --enable-widec  \
            --enable-overwrite

make
make install
rm -rf $LFS/sources/ncurses-5.9
View Code

  17. Bash-4.3.30

cd $LFS/sources
tar -zxf bash-4.3.30.tar.gz
cd bash-4.3.30

./configure --prefix=/tools --without-bash-malloc

make
make install
ln -sv bash /tools/bin/sh
rm -rf $LFS/sources/bash-4.3.30
View Code

  18. Bzip2-1.0.6

cd $LFS/sources
tar -zxf bzip2-1.0.6.tar.gz
cd bzip2-1.0.6

make
make PREFIX=/tools install
rm -rf $LFS/sources/bzip2-1.0.6
View Code

  19. Coreutils-8.23

cd $LFS/sources
tar -Jxf coreutils-8.23.tar.xz
cd coreutils-8.23

./configure --prefix=/tools --enable-install-program=hostname

make
make install
rm -rf $LFS/sources/coreutils-8.23
View Code

  20. Diffutils-3.3

cd $LFS/sources
tar -Jxf diffutils-3.3.tar.xz
cd diffutils-3.3

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/diffutils-3.3
View Code

  21. File-5.22

cd $LFS/sources
tar -zxf file-5.22.tar.gz
cd file-5.22

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/file-5.22
View Code

  22. Findutils-4.4.2

cd $LFS/sources
tar -zxf findutils-4.4.2.tar.gz
cd findutils-4.4.2

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/findutils-4.4.2
View Code

  23. Gawk-4.1.1

cd $LFS/sources
tar -Jxf gawk-4.1.1.tar.xz
cd gawk-4.1.1

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/gawk-4.1.1
View Code

  24. Gettext-0.19.4

cd $LFS/sources
tar -zxf gettext-0.19.4.tar.xz
cd gettext-0.19.4

cd gettext-tools
EMACS="no" ./configure --prefix=/tools --disable-shared

make -C gnulib-lib
make -C intl pluralx.c
make -C src msgfmt
make -C src msgmerge
make -C src xgettext

cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin

rm -rf $LFS/sources/gettext-0.19.4
View Code

  25. Grep-2.21

cd $LFS/sources
tar -Jxf grep-2.21.tar.xz
cd grep-2.21

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/grep-2.21
View Code

  26. Gzip-1.6

cd $LFS/sources
tar -Jxf gzip-1.6.tar.xz
cd gzip-1.6

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/gzip-1.6
View Code

  27. M4-1.4.17

cd $LFS/sources
tar -jxf m4-1.4.17.tar.xz
cd m4-1.4.17

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/m4-1.4.17
View Code

  28. Make-4.1

cd $LFS/sources
tar -jxf make-4.1.tar.bz2
cd make-4.1

./configure --prefix=/tools --without-guile

make
make install
rm -rf $LFS/sources/make-4.1
View Code

  29. Patch-2.7.4

cd $LFS/sources
tar -Jxf patch-2.7.4.tar.xz
cd patch-2.7.4

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/patch-2.7.4
View Code

  30. Perl-5.20.2

cd $LFS/sources
tar -jxf perl-5.20.2.tar.bz2
cd perl-5.20.2

sh Configure -des -Dprefix=/tools -Dlibs=-lm

make
cp -v perl cpan/podlators/pod2man /tools/bin
mkdir -pv /tools/lib/perl5/5.20.2
cp -Rv lib/* /tools/lib/perl5/5.20.2

rm -rf $LFS/sources/perl-5.20.2
View Code

  31. Sed-4.2.2

cd $LFS/sources
tar -jxf sed-4.2.2.tar.bz2
cd sed-4.2.2

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/sed-4.2.2
View Code

  32. Tar-1.28

cd $LFS/sources
tar -jxf tar-1.28.tar.xz
cd tar-1.28

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/tar-1.28
View Code

  33. Texinfo-5.2

cd $LFS/sources
tar -Jxf texinfo-5.2.tar.xz
cd texinfo-5.2

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/texinfo-5.2
View Code

  34. Util-linux-2.26

cd $LFS/sources
tar -Jxf util-linux-2.26.tar.xz
cd util-linux-2.26

./configure --prefix=/tools                \
            --without-python               \
            --disable-makeinstall-chown    \
            --without-systemdsystemunitdir \
            PKG_CONFIG=""

make
make install
rm -rf $LFS/sources/util-linux-2.26
View Code

  35. Xz-5.2.0

cd $LFS/sources
tar -Jxf xz-5.2.0.tar.xz
cd xz-5.2.0

./configure --prefix=/tools

make
make install
rm -rf $LFS/sources/xz-5.2.0
View Code

  36. 清理無用內容

    此步驟是可選的,但如果你的 LFS 分區容量比較小,知道有些不必要的內容可以被刪除也是挺好的。

cd ~
strip --strip-debug /tools/lib/*
/usr/bin/strip --strip-unneeded /tools/{,s}bin/*
rm -rf /tools/{,share}/{info,man,doc}
View Code

  37. 改變屬主

    以後部分的命令都必須以 root 用戶身份執行而不再是 lfs 用戶。當前,$LFS/tools 目錄屬於 lfs 用戶,

  通過下麵的命令將 $LFS/tools 目錄的屬主改為 root 用戶:

exit
chown -R root:root $LFS/tools
View Code

  38. 備份$LFS/tools 目錄

    可用於構建額外的相同版本 LFS 系統。後面的指令將對當前的工具做些調整,導致在構建新系統時會失效。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、oralce的啟動順序: 1、先啟動監聽程式(對應埠1521) : []#lsnrctl start 2、啟動oracle實例: []#sqlplus / as sysdba(回車) SQL>startup --啟動的是環境變數中的預設資料庫實例 $ORACLE_SID --如果啟動多個實例: ...
  • 比如: ? 1 2 3 4 UPDATE test.tb_vobile a set a.name = '111 ' WHERE a.id = (select max(id) id from test.tb_vobile) 報錯: ? 1 2 3 4 5 6 7 [SQL]UPDATE test.tb ...
  • 1. 決定壓縮哪些對象 通過sp_estimate_data_compression_savings 評估在ROW和PAGE壓縮時分別節省的空間量。 表包含如下數據模式時,會有較好的壓縮效果: 數字類型的列和固定長度的字元類型數據,但兩者的大多數值都不會用到此類型的所有位元組。如INT列的值大多數少於 ...
  • 【需求】例如先有數據為 id | name + 1001 | lottu 1001 | xuan 1001 | rax 1002 | ak 1002 | vincent 現在需要轉換為 id | names + 1001 | lottu|xuan|rax 1002 | ak|vincent 反之;o ...
  • 1. 生成服務依賴關係 2. 線上生成依賴關係圖 訪問url:http://www.webgraphviz.com/ ...
  • 最近在研究Web安全相關的知識,特別是SQL註入類的相關知識。接觸了一些與SQL註入相關的工具。周末在家閑著無聊,想把平時學的東東結合起來攻擊一下身邊某個小伙伴去的公司,看看能不能得逞。不試不知道,一試還真TM得逞了,內心有些小激動,特在此寫博文一篇,來記錄下我是如何一步步攻破這家互聯網公司的。 【 ...
  • 本篇介紹下如何利用客戶端工具來進行遠程伺服器的數據備份到本地。 以客戶端工具MongoVUE為例來進行講解: 1.首先要連接本地伺服器以及遠程伺服器資料庫 2.在本地伺服器(127.0.0.1)中,右鍵Add Database,彈出框中輸入資料庫名稱,如下圖: 註:要先在本地伺服器中添加資料庫,以備 ...
  • 要用MongoDB,自然就要用到數據導入導出,就自己學習了一下。 在Mongo學習(二)中就講到了在bin目錄下有一些工具,本篇就是使用這些工具進行數據的導入導出及備份恢復。 註意:以下命令均在cmd命令行中輸入,導出及備份未指明目錄情況下,均保存在當前操作目錄下。 數據導出mongoexport ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...