linuxfromscratch:12.4:linux_from_scratch:nanotip

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
linuxfromscratch:12.4:linux_from_scratch:nanotip [2026/02/03 13:15] baecylinuxfromscratch:12.4:linux_from_scratch:nanotip [2026/02/05 17:29] (현재) baecy
줄 9: 줄 9:
 sudo /usr/sbin/make-ca -f -g -n sudo /usr/sbin/make-ca -f -g -n
 </codeprism> </codeprism>
 +==== Chapter 11. General Utilities ====
 +=== pinentry-1.3.2 ===
 +<codeprism lang=bash>
 +sed -i "/FLTK 1/s/3/4/" configure   &&
 +sed -i '14456 s/1.3/1.4/' configure</codeprism>
 +''sed'' 두번째 명령에 14456이 아니라 14466으로 바꿔야 함.
 +<codeprism lang=bash>
 +sed -i "/FLTK 1/s/3/4/" configure   &&
 +sed -i '14466 s/1.3/1.4/' configure</codeprism>
 +==== Chapter 12. System Utilities ====
 +=== Blocaled-0.7 ===
 +<codeprism lang=bash>
 +LANG=C.UTF-8 make check
 +</codeprism>
 +==== Chapter 13. Programming ====
 +=== LLVM 20.1.8 ===
 +책자에 소개된 내용으로는 Clang-tidy를 생성할 수 없음. \\
 +[[https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.8/clang-tools-extra-20.1.8.src.tar.xz|clang-tools-extra-20.1.8.src.tar.xz]] 준비
 +<codeprism lang=bash>
 +tar -xf clang-tools-extra-20.1.8.src.tar.xz -C tools
 +mv tools/clang-tools-extra-20.1.8 tools/clang-tools-extra</codeprism>
 +
 ==== Chapter 16. Networking Utilities ==== ==== Chapter 16. Networking Utilities ====
 === Nmap 7.98 === === Nmap 7.98 ===
 **''make check''** 으로 태스트 하기 전에 책에 나온 수정 사항말고 다음과 같이 \\ **''make check''** 으로 태스트 하기 전에 책에 나온 수정 사항말고 다음과 같이 \\
 ''import imp'' 관련 오류 수정 ''import imp'' 관련 오류 수정
-<codeprism lang=python>+<codeprism lang=diff>
 diff -urN nmap-7.98/ndiff/ndifftest.py nmap-7.98-patched/ndiff/ndifftest.py diff -urN nmap-7.98/ndiff/ndifftest.py nmap-7.98-patched/ndiff/ndifftest.py
 --- nmap-7.98/ndiff/ndifftest.py 2022-12-08 05:34:05.000000000 +0900 --- nmap-7.98/ndiff/ndifftest.py 2022-12-08 05:34:05.000000000 +0900
  • linuxfromscratch/12.4/linux_from_scratch/nanotip.1770124522.txt.gz
  • 마지막으로 수정됨: 2026/02/03 13:15
  • 저자 baecy