基本出力ビデオファイルが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
︙