데스크탑과 노트북에 대한 PXE 프로비저닝 지침을 변경하시겠습니까?

데스크탑과 노트북에 대한 PXE 프로비저닝 지침을 변경하시겠습니까?

저는 노트북과 데스크탑에 배포하기 위해 Debian 8 PXE 사전 빌드 빌드를 만들고 있습니다. 호스트가 랩탑인지 데스크탑인지에 따라 특정 명령을 실행하고 싶습니다.

if laptop then command A
if desktop then command B

가능합니까? 특히 호스트 유형에 따라 다양한 디스크 파티셔닝 구성표를 설정하고 싶습니다.

답변1

샘플 파일을 살펴보세요여기

특히, 하단의 "설치 중 사용자 정의 명령 실행"이라는 지침을 참조하세요. 설치 프로그램 내에서 원하는 쉘 명령을 실행할 수 있으므로 원하는 작업을 수행할 수 있습니다.

이 페이지를 인용한 예:

# This first command is run as early as possible, just after
# preseeding is read.
#d-i preseed/early_command string anna-install some-udeb
# This command is run immediately before the partitioner starts. It may be
# useful to apply dynamic partitioner preseeding that depends on the state
# of the disks (which may not be visible when preseed/early_command runs).
#d-i partman/early_command \
#       string debconf-set partman-auto/disk "$(list-devices disk | head -n1)"

관련 정보