Linux

LFS 第 5.2 章。binutils-2.37 問題

  • December 31, 2021

嗨,我目前正在製作 LFS,我在第 5.2 章。我正在嘗試執行此命令 lfs:/mnt/lfs/sources$ tar -xvf binutils-2.36.1.tar.xz但它給了我以下輸出:tar: binutils-2.36.1.tar.xz: Cannot open: No such file or directory tar: Error is not recoverable: exiting now執行它是否必要?我正在藉助來自 Kernotex 的 yt 影片製作 LFS。我在 VM 中執行 Black-Arch 發行版。

您下載的文件名為binutils-2.37.tar.xz. 但是您在tar命令中使用的文件名是binutils-2.36.1.tar.xz.

tar -xvf binutils-2.37.tar.xz在下載文件的目錄中執行。

引用自:https://unix.stackexchange.com/questions/684366