기본 출력영상파일이 lb config
사용된 위치 에 있습니다.
출력 img 디렉터리를 사용자 정의하는 방법이 있습니까? img를 IMG_1, IMG_2 등의 디렉토리에 출력하는 것과 같습니다.
# mkdir /customlive
# cd /customlive
# lb config --binary-image hdd --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
# echo "user-setup sudo" > config/package-lists/recommends.list.chroot
# echo "ifupdown isc-dhcp-client" >> config/package-lists/recommends.list.chroot
# lb build 2>&1 | tee build.log
기본 출력:
/customlive/linux-image-amd64.img
내가 원하는 것은:
/customlive/lb config
/customlive/IMG_1/lb build
/customlive/IMG_1/linux-image-amd64.img
답변1
노력하다
# mkdir -p /customlive/IMG_1
# cd /customlive/IMG_1
︙