mirror of
https://github.com/tommytran732/Arch-Setup-Script
synced 2024-11-22 01:21:34 -05:00
Add some grub settings from whonix
This commit is contained in:
parent
d421ed5a56
commit
3adb403754
15
install.sh
15
install.sh
@ -3,6 +3,12 @@
|
|||||||
# Cleaning the TTY.
|
# Cleaning the TTY.
|
||||||
clear
|
clear
|
||||||
|
|
||||||
|
# Updating the live environment
|
||||||
|
pacman -Syu
|
||||||
|
|
||||||
|
# Installing curl
|
||||||
|
pacman -S --noconfirm curl
|
||||||
|
|
||||||
# Selecting the kernel flavor to install.
|
# Selecting the kernel flavor to install.
|
||||||
kernel_selector () {
|
kernel_selector () {
|
||||||
echo "List of kernels:"
|
echo "List of kernels:"
|
||||||
@ -203,6 +209,15 @@ sed -i 's# part_msdos##g' /mnt/etc/default/grub
|
|||||||
sed -i 's#rootflags=subvol=${rootsubvol}##g' /mnt/etc/grub.d/10_linux
|
sed -i 's#rootflags=subvol=${rootsubvol}##g' /mnt/etc/grub.d/10_linux
|
||||||
sed -i 's#rootflags=subvol=${rootsubvol}##g' /mnt/etc/grub.d/20_linux_xen
|
sed -i 's#rootflags=subvol=${rootsubvol}##g' /mnt/etc/grub.d/20_linux_xen
|
||||||
|
|
||||||
|
# Enabling CPU Mitigations
|
||||||
|
curl https://raw.githubusercontent.com/Whonix/security-misc/master/etc/default/grub.d/40_cpu_mitigations.cfg >> /mnt/etc/grub.d/40_cpu_mitigations
|
||||||
|
|
||||||
|
# Distrusting the CPU
|
||||||
|
curl https://raw.githubusercontent.com/Whonix/security-misc/master/etc/default/grub.d/40_distrust_cpu.cfg >> /mnt/etc/grub.d/40_distrust_cpu
|
||||||
|
|
||||||
|
# Enabling IOMMU
|
||||||
|
curl https://raw.githubusercontent.com/Whonix/security-misc/master/etc/default/grub.d/40_enable_iommu.cfg >> 40_enable_iommu
|
||||||
|
|
||||||
# Adding keyfile to the initramfs to avoid double password.
|
# Adding keyfile to the initramfs to avoid double password.
|
||||||
dd bs=512 count=4 if=/dev/random of=/mnt/cryptkey/.root.key iflag=fullblock &>/dev/null
|
dd bs=512 count=4 if=/dev/random of=/mnt/cryptkey/.root.key iflag=fullblock &>/dev/null
|
||||||
chmod 000 /mnt/cryptkey/.root.key &>/dev/null
|
chmod 000 /mnt/cryptkey/.root.key &>/dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user