arch-installer/example-vbox.cfg

48 lines
1.2 KiB
INI
Raw Normal View History

2022-07-16 17:18:03 +02:00
# Example config for testing in VirtualBox
#FQDN=domain.name.of.this.host.de
#STATIC_IP=123.123.123.123
# IPV6_CAPABLE: 'true' | 'false'
IPV6_CAPABLE=true
2022-07-16 17:18:03 +02:00
HOSTNAME=yodaTest
USERNAME=yoda
USER_PWD='test'
#ROOT_PWD=test
2022-07-16 17:18:03 +02:00
# FDE: 'true' | 'false'
FDE=true
LUKS_PWD='test'
2022-07-16 17:18:03 +02:00
TARGET_BLOCK_DEVICE=/dev/sda # /dev/vda for Virtual Machine Manager
# BOOT_PART_SIZE: in MiB, at least 260
BOOT_PART_SIZE=260
# FS: 'BTRFS' | 'EXT4' | 'F2FS'
2022-07-16 17:18:03 +02:00
FS=BTRFS
# FS_BTRFS_SUBVOL_LAYOUT: 'root_only' | '@root@home'
FS_BTRFS_SUBVOL_LAYOUT='@root@home'
2022-07-16 17:18:03 +02:00
FS_ADDITIONAL_MOUNT_OPTIONS=('noatime')
# If not booted into the target system, these values should be set:
# CPU_VENDOR: 'autodetect' | 'amd' | 'intel' | 'none'
CPU_VENDOR=none
2022-07-16 17:18:03 +02:00
# BOOT_FIRMWARE: 'autodetect' | 'uefi' | 'bios'
BOOT_FIRMWARE=uefi
# INITRAMFS: 'mkinitcpio' | 'dracut'
INITRAMFS=dracut
2022-07-16 17:18:03 +02:00
# If set to 'true', then the data, boot and luks partitions
# will be left mounted/opened for manual inspection
# after the installation
# LEAVE_MOUNTED: 'true' | 'false'
LEAVE_MOUNTED=false
# PACSTRAP_INTERACTIVE: 'true' | 'false'
2022-07-16 17:18:03 +02:00
PACSTRAP_INTERACTIVE=true
############## ADDITIONAL_PKGS from here on ##############
ADDITIONAL_PKGS=()
# VBox guest additions
ADDITIONAL_PKGS+=('virtualbox-guest-utils')