A tool to create Debian automatic installer USB key with preseed, partman recipe, syslinux and parted.
This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Find a file
2016-10-12 22:30:06 +02:00
partman_recipes partman_recipes folder rename 2016-10-12 22:30:06 +02:00
preseeds Debian mirror was wrong 2016-10-12 12:15:20 +02:00
syslinux Adapt syslinux menu to preseeds files new location 2016-10-12 11:51:50 +02:00
.gitignore first commit 2016-07-06 00:24:26 +02:00
init.sh Script modification to copy preseeds ans partman_recipes folder 2016-10-12 12:04:49 +02:00
README.md Add README.md 2016-07-06 16:29:26 +02:00

Debian Auto Installer

A set of tools to create automated Debian Installation Key. I created this tools for my work. You can create bios, efi64 key but prepare file in the folder whitout creating key.

  • init.sh : script to create USB key
  • preseed : textfile that contain all instructions for Debian Installer
  • partman : partition recipe for preseed
  • syslinux/syslinux.cfg : Syslinux configuration file

Howto create usb key

  1. Plug your key
  2. Make sure yout key is not mounted
  3. Execute ./init.sh -d /dev/sdb (replace /dev/sdb with your device)
  4. Done!

Init.sh command line options

  • -a [amd64|i386] choose architecture for debian files (default amd64)
  • -b create key for bios boot architecture (default efi64)
  • -d device USB device like /dev/sdb

Be careful : if -d parameter is define then the relative peripheral will be erased

For now, this script doesn't verify the state of your device (is mounted or not) but this is planned.

Exemples

Prepare file in directory for efi system without writing an usb key for AMD64 arch.

./init.sh

Prepare an usb key (/dev/sdb) for bios / i386 architecture

./init.sh -a i386 -b -d /dev/sdb