linux:preseed-linux-usb
Differences
This shows you the differences between two versions of the page.
linux:preseed-linux-usb [2023/12/08 00:24] – created Wulf Rajek | linux:preseed-linux-usb [2025/04/03 15:05] (current) – Wulf Rajek | ||
---|---|---|---|
Line 78: | Line 78: | ||
kernel / | kernel / | ||
</ | </ | ||
+ | - add mint_allinone.seed file to preseed folder. Example: < | ||
+ | ### Set language and keyboard layout | ||
+ | d-i debian-installer/ | ||
+ | d-i keyboard-configuration/ | ||
+ | d-i keyboard-configuration/ | ||
+ | d-i keyboard-configuration/ | ||
+ | d-i console-setup/ | ||
+ | d-i console-setup/ | ||
+ | |||
+ | ### Timezone and NTP | ||
+ | d-i time/zone string Europe/ | ||
+ | d-i clock-setup/ | ||
+ | |||
+ | ### Mirror settings | ||
+ | d-i mirror/ | ||
+ | |||
+ | ### Enable extras.ubuntu.com. | ||
+ | d-i apt-setup/ | ||
+ | |||
+ | ### Disable nonfree multimedia codecs | ||
+ | ubiquity ubiquity/ | ||
+ | |||
+ | ### Avoid EFI warning if bios set or allowed to use legacy BIOS boot as well | ||
+ | d-i partman-efi/ | ||
+ | |||
+ | ### Partitioning | ||
+ | d-i partman-auto/ | ||
+ | d-i partman-auto/ | ||
+ | partman-basicfilesystems partman-basicfilesystems/ | ||
+ | d-i partman-basicfilesystem/ | ||
+ | d-i partman-lvm/ | ||
+ | d-i partman-md/ | ||
+ | d-i partman-lvm/ | ||
+ | d-i partman-partitioning/ | ||
+ | d-i partman/ | ||
+ | d-i partman/ | ||
+ | d-i partman/ | ||
+ | d-i grub-installer/ | ||
+ | d-i grub-installer/ | ||
+ | d-i partman-crypto/ | ||
+ | d-i partman-crypto/ | ||
+ | |||
+ | ### allow root account | ||
+ | d-i passwd/ | ||
+ | |||
+ | ### Root password | ||
+ | d-i passwd/ | ||
+ | d-i passwd/ | ||
+ | |||
+ | ### To create a normal user account. | ||
+ | d-i passwd/ | ||
+ | d-i passwd/ | ||
+ | |||
+ | ### Normal user's password, either in clear text or encrypted using a crypt(3) hash. i.e mkpasswd -m sha-512 | ||
+ | d-i passwd/ | ||
+ | |||
+ | ### The installer will warn about weak passwords. If you are sure you know what you're doing and want to override it, uncomment this. | ||
+ | d-i user-setup/ | ||
+ | |||
+ | ### setup groups for user | ||
+ | d-i passwd/ | ||
+ | |||
+ | ### set Hostname | ||
+ | d-i netcfg/ | ||
+ | |||
+ | ### Auto Login after first boot | ||
+ | d-i passwd/ | ||
+ | |||
+ | ### Trigger reboot | ||
+ | ubiquity ubiquity/ | ||
+ | |||
+ | |||
+ | ### Custom Commands | ||
+ | ubiquity ubiquity/ | ||
+ | cp / | ||
+ | cp -a / | ||
+ | cp -a / | ||
+ | cp -a / | ||
+ | chroot /target / | ||
+ | </ | ||
+ | |||
Finally, proceed with pre-config as per CUSTOM USB INSTALL instructions (to follow) | Finally, proceed with pre-config as per CUSTOM USB INSTALL instructions (to follow) |
linux/preseed-linux-usb.1701995073.txt.gz · Last modified: 2023/12/08 00:24 by Wulf Rajek