2018-02-26 02:41:29 +01:00
#!/bin/bash
#
set -ex
2018-02-27 22:53:24 +01:00
echo "Version : DI 27. Feb 22:52:41 CET 2017"
2018-02-26 02:41:29 +01:00
2018-07-05 15:45:24 +02:00
WEBADDRESS="ssh://git@5.83.162.84:22/home/git/SpectreOS"
2018-02-26 02:41:29 +01:00
repo="SpectreOS"
user="user1"
2018-04-21 03:29:50 +02:00
hostname="$(cat /etc/hostname)"
[[ -z "${version}" ]] && version="${hostname#*-}"
2018-02-26 02:41:29 +01:00
2018-08-27 14:19:16 +02:00
#fastinstall arch-install fastinstall ${name} ${Partition} ${boot} ${device} ${dateisystem} ${raid} ${swap} ${swapspeicher} ${swapverschluesselung} ${offline} ${autodisk} ${autodiskdevice} ${autostart} ${verschluesselung} ${usbkey} ${usbkeydevice} ${x11vnc} ${extraparameter} ${skipcheck} ${nvidia}
2018-07-31 07:16:36 +02:00
2018-07-31 07:58:36 +02:00
if [[ $EUID -ne 0 ]]; then
2018-08-26 18:47:50 +02:00
echo "This script must be run as root" 1>&2
# while-schleife
while (( "$#" ))
do
echo ${1}
export ${1}="y"
startparameter="${startparameter}${1} "
shift
done
sudo "${0}" "${startparameter}" 2>&1 | tee /home/user1/install.log
exit 0
2018-07-31 07:16:36 +02:00
fi
2018-07-31 07:58:36 +02:00
echo "Logged in as root"
2018-07-31 07:16:36 +02:00
2018-07-31 07:58:36 +02:00
if ! [ -z "${2}" ]; then
2018-08-26 18:47:50 +02:00
while (( "$#" ))
do
echo ${1}
export ${1}="y"
startparameter="${startparameter}${1} "
shift
done
start=root
2018-02-26 02:41:29 +01:00
fi
function minimalinstallation() {
2018-04-27 21:04:17 +02:00
2018-08-26 18:47:50 +02:00
if [ -f base.txt ]; then
pacstrap -c -d -G -M ${mountpoint} $(cat base.txt)
elif [ -f /opt/${repo}/base.txt ]; then
pacstrap -c -d -G -M ${mountpoint} $(cat /opt/${repo}/base.txt)
fi
2018-04-27 21:04:17 +02:00
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
# hooks
cp -v /opt/${repo}/install/archiso* ${mountpoint}/usr/lib/initcpio/install/
cp -v /opt/${repo}/hooks/archiso* ${mountpoint}/usr/lib/initcpio/hooks/
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
cp -v /opt/${repo}/script/archiso* ${mountpoint}/usr/lib/initcpio/
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
cp -v /opt/${repo}/install/cow_device ${mountpoint}/usr/lib/initcpio/install/
cp -v /opt/${repo}/hooks/cow_device ${mountpoint}/usr/lib/initcpio/hooks/
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
mkdir -p ${mountpoint}/etc/pacman.d/hooks
cp -v /opt/${repo}/pacman-hooks/* ${mountpoint}/etc/pacman.d/hooks/
2018-07-17 23:26:31 +02:00
2018-08-26 18:47:50 +02:00
# scripts
cp /opt/${repo}/arch-graphical-install-auto ${mountpoint}/usr/bin/arch-graphical-install-auto
chmod +x ${mountpoint}/usr/bin/arch-graphical-install-auto
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
# mirrors
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
# pacman-config
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "libre" ]; then
2018-08-26 18:47:50 +02:00
cp /opt/${repo}/pacman.conf_libre ${mountpoint}/etc/pacman.conf
2018-09-03 01:21:45 +02:00
elif [ "${version%-*-*}" == "manjaro" ]; then
2018-08-26 18:47:50 +02:00
cp /opt/${repo}/pacman.conf_manjaro ${mountpoint}/etc/pacman.conf
else
cp /opt/${repo}/pacman.conf ${mountpoint}/etc/pacman.conf
fi
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
# mirrorlist
cp /opt/${repo}/mirrorlist* ${mountpoint}/etc/pacman.d/
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
# aurinstaller
cp /opt/${repo}/aurinstall.sh ${mountpoint}/usr/bin/aurinstaller
chmod +x ${mountpoint}/usr/bin/aurinstaller
2018-05-27 02:41:02 +02:00
2018-08-26 18:47:50 +02:00
if [ "y" != "${noinstall}" ]; then
echo "${name}´ s_PC-${version}" > ${mountpoint}/etc/hostname
fi
2018-05-27 02:51:22 +02:00
2018-08-26 18:47:50 +02:00
arch-chroot ${mountpoint} arch-graphical-install-auto adduser user1 user1
arch-chroot ${mountpoint} pacman -Syu --needed --noconfirm
arch-chroot ${mountpoint} su "$user" -c "aurinstaller "https://aur.archlinux.org/plymouth.git""
2018-05-27 02:41:02 +02:00
2018-08-26 18:47:50 +02:00
# x11vnc
mkdir -p ${mountpoint}/etc/systemd/system/
cp /opt/${repo}/x11vnc.service ${mountpoint}/etc/systemd/system/x11vnc.service
chmod 644 ${mountpoint}/etc/systemd/system/x11vnc.service
arch-chroot ${mountpoint} systemctl enable x11vnc.service
2018-05-27 03:14:20 +02:00
2018-02-26 02:41:29 +01:00
}
function gitclone() {
2018-08-26 18:47:50 +02:00
if [ -d "/opt/${repo}" ]; then
echo "${repo} already exists!!!"
cd /opt/${repo}
git reset --hard
git pull
else
git clone ${WEBADDRESS} /opt/${repo}
fi
cd /
2018-02-26 02:41:29 +01:00
}
function secureumount() {
2018-08-26 18:47:50 +02:00
if [ "${dateisystem}" == "btrfs" ]; then
if cat /proc/mounts | grep ${mountpoint} > /dev/null; then
umount ${mountpoint}/boot
btrfs filesystem df ${mountpoint}
echo "umount!!!"
umount ${mountpoint}/home
umount ${mountpoint}/opt
umount ${mountpoint}/var/cache/pacman/pkg
umount ${mountpoint}/var/lib
# custom-mounts
for wort in ${mountsnaps}
do
if cat /proc/mounts | grep ${mountpoint}${wort} > /dev/null; then
umount ${mountpoint}${wort}
fi
done
umount ${mountpoint}
umount /mnt/btrfs-root
#umount -R /mnt
2018-07-29 05:19:08 +02:00
fi
2018-08-26 18:47:50 +02:00
elif [ "${dateisystem}" == "ext4" ]; then
2018-03-04 19:38:17 +01:00
2018-08-26 18:47:50 +02:00
if cat /proc/mounts | grep ${mountpoint}/boot > /dev/null; then
umount ${mountpoint}/boot
fi
2018-03-04 19:38:17 +01:00
2018-08-26 18:47:50 +02:00
if cat /proc/mounts | grep ${mountpoint} > /dev/null; then
umount ${mountpoint}
fi
2018-07-17 18:26:10 +02:00
fi
2018-07-17 15:13:02 +02:00
2018-08-26 18:47:50 +02:00
if fdisk -l | grep /dev/mapper/luks0 > /dev/null; then
read -p "Should /dev/mapper/luks0 be removed? [Y/n] : " cryptremove
if [ "${cryptremove}" != "n" ]; then
cryptsetup remove /dev/mapper/luks0
fi
2018-07-29 05:19:08 +02:00
fi
2018-07-17 23:10:25 +02:00
2018-08-26 18:47:50 +02:00
if cat /proc/mounts | grep ${device}${m2ssd}1 > /dev/null; then
umount ${device}${m2ssd}1
fi
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
if [ -n "${usbkeydevice}" ]; then
if cat /proc/mounts | grep ${usbkeydevice} > /dev/null; then
umount ${usbkeydevice}
fi
2018-03-04 18:54:00 +01:00
fi
2018-02-26 02:41:29 +01:00
}
2018-04-05 20:39:14 +02:00
function formatencrypt() {
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
echo "Please write big YES"
cryptsetup -c aes-xts-plain64 -y -s 512 luksFormat ${device}${rootpartitionnummer}
mountencrypt
fi
2018-04-05 20:39:14 +02:00
}
2018-04-06 17:09:08 +02:00
function mountencrypt() {
2018-08-26 18:47:50 +02:00
cryptsetup luksOpen ${device}${rootpartitionnummer} luks0
2018-04-06 17:09:08 +02:00
}
2018-07-21 15:49:32 +02:00
function partitioniere() {
2018-08-26 18:47:50 +02:00
wipefs -a -f ${device}
sgdisk -o ${device}
if [ "${m2ssddevice}" == "y" ]; then
sgdisk -a 2048 -n ${bootpartitionnummer: -1}::+1024K -c ${bootpartitionnummer: -1}:"BIOS Boot Partition" -t ${bootpartitionnummer: -1}:ef02 ${device}
sgdisk -a 2048 -n ${efipartitionnummer: -1}::+1G -c ${efipartitionnummer: -1}:"EFI Boot Partition" -t ${efipartitionnummer: -1}:ef00 ${device}
if [ "${swap}" != "n" ]; then
sgdisk -a 2048 -n ${swappartitionnummer: -1}::+${swapspeicher} -c ${swappartitionnummer: -1}:"Linux swap" -t ${swappartitionnummer: -1}:8200 ${device}
fi
sgdisk -a 2048 -n ${rootpartitionnummer: -1}:: -c ${rootpartitionnummer: -1}:"Linux filesystem" -t ${rootpartitionnummer: -1}:8300 ${device}
2018-07-17 23:10:25 +02:00
2018-08-26 18:47:50 +02:00
else
sgdisk -a 2048 -n ${bootpartitionnummer}::+1024K -c ${bootpartitionnummer}:"BIOS Boot Partition" -t ${bootpartitionnummer}:ef02 ${device}
sgdisk -a 2048 -n ${efipartitionnummer}::+1G -c ${efipartitionnummer}:"EFI Boot Partition" -t ${efipartitionnummer}:ef00 ${device}
if [ "${swap}" != "n" ]; then
sgdisk -a 2048 -n ${swappartitionnummer}::+${swapspeicher} -c ${swappartitionnummer}:"Linux swap" -t ${swappartitionnummer}:8200 ${device}
fi
sgdisk -a 2048 -n ${rootpartitionnummer}:: -c ${rootpartitionnummer}:"Linux filesystem" -t ${rootpartitionnummer}:8300 ${device}
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
fi
formatencrypt
2018-02-26 02:41:29 +01:00
}
2018-07-17 15:27:16 +02:00
function partitionieredual() {
2018-08-26 18:47:50 +02:00
if [ "${m2ssddevice}" == "y" ]; then
if blkid -s PARTUUID -o value ${device}${rootpartitionnummer}; then
echo "entferne partition ${device}${rootpartitionnummer}"
sleep 5
#parted -s ${device} rm ${rootpartitionnummer}
sgdisk -d ${rootpartitionnummer: -1} ${device}
sync
fi
sgdisk -a 2048 -n ${rootpartitionnummer: -1}:: -c ${rootpartitionnummer: -1}:"Linux filesystem" -t ${rootpartitionnummer: -1}:8300 ${device}
else
if blkid -s PARTUUID -o value ${device}${rootpartitionnummer}; then
echo "entferne partition ${device}${rootpartitionnummer}"
sleep 5
#parted -s ${device} rm ${rootpartitionnummer}
sgdisk -d ${rootpartitionnummer} ${device}
sync
fi
sgdisk -a 2048 -n ${rootpartitionnummer}:: -c ${rootpartitionnummer}:"Linux filesystem" -t ${rootpartitionnummer}:8300 ${device}
fi
formatencrypt
2018-07-16 02:45:11 +02:00
}
2018-02-26 02:41:29 +01:00
function usbkeyinstallation() {
2018-08-26 18:47:50 +02:00
mkdir -p /mnt/usb-stick
mount ${usbkeydevice} /mnt/usb-stick
if ! [ -f "/mnt/usb-stick/archkey" ]; then
dd if=/dev/urandom of=/mnt/usb-stick/archkey bs=512 count=4
fi
cryptsetup luksAddKey ${device}${rootpartitionnummer} /mnt/usb-stick/archkey
2018-02-26 02:41:29 +01:00
}
function usbsecret() {
2018-08-26 18:47:50 +02:00
cp /opt/${repo}/install/usbsecret ${mountpoint}/usr/lib/initcpio/install/usbsecret
cp /opt/${repo}/hooks/usbsecret ${mountpoint}/root/usbsecret
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
# hooks
#cp install/usbsecret ${mountpoint}/usr/lib/initcpio/install/usbsecret
#cp hooks/usbsecret ${mountpoint}/usr/lib/initcpio/hooks/usbsecret
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
sed "s|%USB_UUID%|${usbsecretdeviceuuid}|g;" ${mountpoint}/root/usbsecret > ${mountpoint}/usr/lib/initcpio/hooks/usbsecret
2018-02-26 02:41:29 +01:00
}
function cron() {
2018-08-26 18:47:50 +02:00
echo "cron-job snapshot"
mkdir -p ${mountpoint}/var/spool/cron/
echo -n "0 18 * * * /usr/bin/snapshot make ROOT home opt var/cache/pacman/pkg " > ${mountpoint}/var/spool/cron/root
# custom-mounts
for wort in ${mountsnaps}
do
echo -n "${wort#/*} " >> ${mountpoint}/var/spool/cron/root
done
echo "" >> ${mountpoint}/var/spool/cron/root
if [ "${update}" != "n" ]; then
cp /opt/${repo}/snapshot.sh ${mountpoint}/usr/bin/snapshot
chmod 755 ${mountpoint}/usr/bin/snapshot
fi
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "manjaro" ]; then
2018-08-26 18:47:50 +02:00
echo "0 * * * * /usr/bin/update-bootloader" >> ${mountpoint}/var/spool/cron/root
fi
echo "0 20 * * * /usr/bin/update-packages" >> ${mountpoint}/var/spool/cron/root
2018-05-27 00:39:24 +02:00
2018-02-26 02:41:29 +01:00
}
function makeswapfile() {
2018-08-26 18:47:50 +02:00
#swapfile
fallocate -l ${swapfilespeicher} ${mountpoint}/swapfile
chmod 600 ${mountpoint}/swapfile
mkswap ${mountpoint}/swapfile
echo "/swapfile none swap defaults 0 0" >> ${mountpoint}/etc/fstab
2018-02-26 02:41:29 +01:00
}
function makebtrfsswapfile() {
2018-08-26 18:47:50 +02:00
/opt/${repo}/btrfs-swapon ${mountpoint}/usr/bin/btrfs-swapon
/opt/${repo}/btrfs-swapoff ${mountpoint}/usr/bin/btrfs-swapoff
/opt/${repo}/btrfs-swapon.service ${mountpoint}/root/btrfs-swapon.service
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
chmod +x ${mountpoint}/usr/bin/btrfs-swapon
chmod +x ${mountpoint}/usr/bin/btrfs-swapoff
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
sed "s|%swapfilespeicher%|${swapfilespeicher}|g;" ${mountpoint}/root/btrfs-swapon.service > ${mountpoint}/etc/systemd/system/btrfs-swapon.service
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
arch-chroot ${mountpoint} systemctl enable btrfs-swapon
2018-02-26 02:41:29 +01:00
}
function removeinstaller {
2018-08-26 18:47:50 +02:00
echo ""
if [ -f ${mountpoint}/usr/share/applications/arch-install.desktop ]
then
rm ${mountpoint}/usr/share/applications/arch-install.desktop
fi
echo ""
if [ -f ${mountpoint}/root/Schreibtisch/arch-install.desktop ]
then
rm ${mountpoint}/root/Schreibtisch/arch-install.desktop
fi
echo ""
if [ -f ${mountpoint}/home/${user}/Schreibtisch/arch-install.desktop ]
then
rm ${mountpoint}/home/${user}/Schreibtisch/arch-install.desktop
fi
echo ""
if [ -f ${mountpoint}/root/Desktop/arch-install.desktop ]
then
rm ${mountpoint}/root/Desktop/arch-install.desktop
fi
echo ""
if [ -f ${mountpoint}/home/${user}/Desktop/arch-install.desktop ]
then
rm ${mountpoint}/home/${user}/Desktop/arch-install.desktop
fi
echo ""
2018-02-26 02:41:29 +01:00
}
2018-08-22 00:00:29 +02:00
function freshinstall {
2018-08-26 18:47:50 +02:00
if [ "${update}" != "n" ] && [ "${offline}" != "n" ]; then
cp -v /opt/${repo}/update-packages ${mountpoint}/usr/bin/update-packages
arch-chroot ${mountpoint} update-packages
fi
2018-08-22 00:00:29 +02:00
}
2018-02-26 02:41:29 +01:00
function installation {
2018-08-26 18:47:50 +02:00
#boot
echo "format"
if [ "y" != "${noinstall}" ] && [ "${skipbootpartition}" != "y" ]; then
mkfs.vfat -F 32 ${device}${efipartitionnummer}
2018-07-17 18:26:10 +02:00
fi
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
#root
if [ "${dateisystem}" == "btrfs" ]; then
#mkfs.btrfs -f -L p_arch ${device}2
if [ "y" != "${noinstall}" ]; then
btrfsformat #btrfs
fi
subvolume #btrfs
elif [ "${dateisystem}" == "ext4" ]; then
echo "confirm with y"
if [ "${verschluesselung}" == "y" ]; then
if [ "y" != "${noinstall}" ]; then
mkfs.ext4 -L p_arch ${deviceluks} #ext4
fi
mount ${deviceluks} ${mountpoint}
else
if [ "y" != "${noinstall}" ]; then
mkfs.ext4 -L p_arch ${device}${rootpartitionnummer} #ext4
fi
mount ${device}${rootpartitionnummer} ${mountpoint}
fi
mkdir -p ${mountpoint}/boot
mount ${device}${efipartitionnummer} ${mountpoint}/boot
2018-07-17 15:13:02 +02:00
fi
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
#swap
if [ "y" != "${noinstall}" ]; then
if [ "${swap}" != "n" ]; then
mkswap -L p_swap ${device}${swappartitionnummer}
fi
2018-07-29 05:19:08 +02:00
fi
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
#installation
if [ "y" != "${noinstall}" ]; then
if [ "${offline}" != "n" ]
then
if [ -f /run/archiso/bootmnt/arch/$(uname -m)/airootfs.sfs ]; then
echo "It is not a copytoram system."
unsquashfs -f -d ${mountpoint} /run/archiso/bootmnt/arch/$(uname -m)/airootfs.sfs
freshinstall
elif [ -f /run/archiso/copytoram/airootfs.sfs ]; then
echo "It is a copytoram system."
unsquashfs -f -d ${mountpoint} /run/archiso/copytoram/airootfs.sfs
freshinstall
else
read -p "Where is the airootfs.sfs? Please specify the complete path or choose the online installation? [/airootfs.sfs/online] : " installationsfehler
if [ "${installationsfehler}" == "online" ]; then
minimalinstallation
else
unsquashfs -f -d ${mountpoint} ${installationsfehler}
fi
fi
2018-07-31 07:16:36 +02:00
else
2018-08-26 18:47:50 +02:00
minimalinstallation
2018-07-29 05:19:08 +02:00
fi
2018-07-17 23:10:25 +02:00
fi
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
# module and hooks
2018-08-27 14:19:16 +02:00
parameter="systemd "
#parameter="base udev "
2018-07-17 18:26:10 +02:00
2018-08-27 14:19:16 +02:00
#if [ "${swap}" != "n" ]; then
# parameter="${parameter}resume "
#fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
parameter="${parameter}encrypt "
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
parameter="${parameter}block filesystems keyboard "
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "${dateisystem}" == "btrfs" ]; then
if [ "${raid}" != "n" ]; then
parameter="${parameter}btrfs "
fi
2018-07-31 07:16:36 +02:00
fi
2018-08-26 18:47:50 +02:00
if [ "${usbsecret}" == "y" ]; then
parameter="${parameter}usbsecret "
fi
2018-07-31 07:16:36 +02:00
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "libre" ] || [ "${version%-*-*}" == "manjaro" ] || [ "${version%-*-*}" == "lite" ]; then
2018-08-26 18:47:50 +02:00
echo "überspringe plymouth hook!!!"
2018-08-21 23:04:37 +02:00
else
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
parameter="${parameter}plymouth-encrypt "
else
parameter="${parameter}plymouth "
fi
2018-08-21 23:04:37 +02:00
2018-08-26 18:47:50 +02:00
fi
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
echo ""
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "libre" ] || [ "${version%-*-*}" == "lite" ] || [ "${nvidia}" == "n" ]; then
2018-08-27 14:19:16 +02:00
echo "MODULES=\"i915 radeon nouveau ata_generic ata_piix nls_cp437 vfat ext4 btrfs\"" > ${mountpoint}/etc/mkinitcpio.conf
2018-08-26 18:47:50 +02:00
echo "HOOKS=\"${parameter}\"" >> ${mountpoint}/etc/mkinitcpio.conf
echo "COMPRESSION=\"lz4\"" >> ${mountpoint}/etc/mkinitcpio.conf
echo "FILES=\"/etc/modprobe.d/blacklist-floppy.conf\"" >> ${mountpoint}/etc/mkinitcpio.conf
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
else
echo "MODULES=\"nvidia nvidia_modeset nvidia_uvm nvidia_drm i915 radeon ata_generic ata_piix nls_cp437 vfat ext4 btrfs\"" > ${mountpoint}/etc/mkinitcpio.conf
echo "HOOKS=\"${parameter}\"" >> ${mountpoint}/etc/mkinitcpio.conf
echo "COMPRESSION=\"lz4\"" >> ${mountpoint}/etc/mkinitcpio.conf
echo "FILES=\"/etc/modprobe.d/blacklist-floppy.conf /etc/modprobe.d/blacklist_nouveau.conf\"" >> ${mountpoint}/etc/mkinitcpio.conf
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
fi
echo ""
echo "blacklist floppy" > ${mountpoint}/etc/modprobe.d/blacklist-floppy.conf
echo "blacklist nouveau" > ${mountpoint}/etc/modprobe.d/blacklist_nouveau.conf
echo "install dell-smbios /bin/false" > ${mountpoint}/etc/modprobe.d/blacklist-dell-smbios.conf
echo "tmpfs /tmp tmpfs defaults,size=6G 0 0" > ${mountpoint}/etc/fstab
echo "tmpfs /dev/shm tmpfs defaults 0 0" >> ${mountpoint}/etc/fstab
echo "tmpfs /home/${user}/.cache tmpfs noatime,nodev,nosuid,size=2G 0 0" >> ${mountpoint}/etc/fstab
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
#fstab
rootbind=$(blkid -s PARTUUID -o value ${device}${rootpartitionnummer})
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
#genfstab -Up ${mountpoint} >> ${mountpoint}/etc/fstab
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
if [ "${dateisystem}" == "btrfs" ]; then
btrfsfstab #btrfs
2018-07-31 07:16:36 +02:00
2018-08-26 18:47:50 +02:00
mkdir -p ${mountpoint}/run/btrfs-root
if [ "${verschluesselung}" == "y" ]; then
echo "${deviceluks} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
else
echo "PARTUUID=${rootbind} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
fi
#grep -v "/var/lib" < ${mountpoint}/etc/fstab > fstab.neu; mv fstab.neu ${mountpoint}/etc/fstab
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
echo "/run/btrfs-root/__current/ROOT/var/lib /var/lib none bind 0 0" >> ${mountpoint}/etc/fstab #btrfs
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
cron
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
elif [ "${dateisystem}" == "ext4" ]; then
if [ "${verschluesselung}" == "y" ]; then
echo "${deviceluks} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab #ext4
else
echo "PARTUUID=${rootbind} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab #ext4
fi
2018-02-26 02:41:29 +01:00
fi
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
bootbind=$(blkid -s PARTUUID -o value ${device}${efipartitionnummer})
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
echo -e "PARTUUID=${bootbind} /boot vfat rw,relatime 0 2" >> ${mountpoint}/etc/fstab
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
if [ "${swap}" != "n" ]; then
if [ "${swapverschluesselung}" == "y" ]; then
swappartition=$(blkid -s PARTUUID -o value ${device}${swappartitionnummer})
echo "swap PARTUUID=${swappartition} /dev/urandom swap,cipher=aes-cbc-essiv:sha256,size=256" > ${mountpoint}/etc/crypttab
echo "/dev/mapper/swap none swap defaults 0 0" >> ${mountpoint}/etc/fstab
else
swappartition=$(blkid -s PARTUUID -o value ${device}${swappartitionnummer})
echo "PARTUUID=${swappartition} none swap defaults 0 0" >> ${mountpoint}/etc/fstab
fi
2018-02-26 02:41:29 +01:00
fi
2018-08-26 18:47:50 +02:00
#makeswapfile+fstab
if [ "y" != "${noinstall}" ]; then
if [ "${swapfile}" == "y" ]; then
if [ "${dateisystem}" == "btrfs" ]; then
makebtrfsswapfile
elif [ "${dateisystem}" == "ext4" ]; then
makeswapfile
fi
fi
2018-07-17 18:26:10 +02:00
fi
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
if [ "y" != "${noinstall}" ]; then
#hostname
echo "${name}´ s_PC-${version}" > ${mountpoint}/etc/hostname
fi
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
if [ "y" != "${noinstall}" ]; then
if [ "${usbsecret}" == "y" ]; then
usbsecret
fi
2018-04-01 17:15:12 +02:00
fi
2018-04-01 16:48:56 +02:00
2018-08-26 18:47:50 +02:00
if [ "y" != "${noinstall}" ]; then
if [ "${usbkey}" == "y" ]; then
usbkeyinstallation
fi
2018-07-17 18:26:10 +02:00
fi
2018-05-11 14:37:51 +02:00
2018-08-26 18:47:50 +02:00
#autdiskmount
if [ "${autodisk}" == "y" ]
then
for wort in ${autodiskdevice}
do
echo "fstab ${wort} wird erstellt!!!"
autodiskdevicedateisystem=$(blkid -s TYPE -o value ${wort})
autodiskdevicepartuuid=$(blkid -s PARTUUID -o value ${wort})
mkdir -p ${mountpoint}/run/media/user1/${autodiskdevicepartuuid}
echo "PARTUUID=${autodiskdevicepartuuid} /run/media/user1/${autodiskdevicepartuuid} ${autodiskdevicedateisystem} defaults 0 2" >> ${mountpoint}/etc/fstab
2018-05-11 14:37:51 +02:00
2018-08-26 18:47:50 +02:00
done
2018-05-11 12:52:42 +02:00
2018-08-26 18:47:50 +02:00
fi
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
#forbtrfssnapshots
cp ${mountpoint}/etc/fstab ${mountpoint}/etc/fstab.example
2018-06-21 06:56:45 +02:00
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
#sie könne hier ihre scripte die bei der installation ausgeführt werden sollen hinzufügen :D
2018-02-26 02:41:29 +01:00
2018-04-01 16:48:56 +02:00
}
function grubinstall() {
2018-08-26 18:47:50 +02:00
sed -i 's/GRUB_DISTRIBUTOR=.*$/GRUB_DISTRIBUTOR=\"'$repo'\"/' ${mountpoint}/etc/default/grub
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT=.*$/GRUB_CMDLINE_LINUX_DEFAULT="splash"/' ${mountpoint}/etc/default/grub
2018-08-26 19:00:17 +02:00
sed -i 's/GRUB_BACKGROUND=.*$/GRUB_BACKGROUND="/usr/share/grub/background.png"/' ${mountpoint}/etc/default/grub
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
tobootdevice=$(blkid -s PARTUUID -o value ${device}${rootpartitionnummer})
if [ "${swap}" != "n" ]; then
swappartition=$(blkid -s PARTUUID -o value ${device}${swappartitionnummer})
if [ "${usbkey}" == "y" ]; then
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="cryptdevice=PARTUUID='$tobootdevice':luks0 resume=PARTUUID='$swappartition' cryptkey=PARTUUID='$usbkeypartuuid':'$usbkeydateisystem':\/archkey nvidia-drm.modeset=1"/' ${mountpoint}/etc/default/grub
else
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="cryptdevice=PARTUUID='$tobootdevice':luks0 resume=PARTUUID='$swappartition' nvidia-drm.modeset=1"/' ${mountpoint}/etc/default/grub
fi
2018-07-31 07:16:36 +02:00
else
2018-08-26 18:47:50 +02:00
if [ "${usbkey}" == "y" ]; then
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="cryptdevice=PARTUUID='$tobootdevice':luks0 cryptkey=PARTUUID='$usbkeypartuuid':'$usbkeydateisystem':\/archkey nvidia-drm.modeset=1"/' ${mountpoint}/etc/default/grub
else
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="cryptdevice=PARTUUID='$tobootdevice':luks0 nvidia-drm.modeset=1"/' ${mountpoint}/etc/default/grub
fi
2018-04-01 17:34:57 +02:00
fi
2018-08-26 18:47:50 +02:00
echo "GRUB_ENABLE_CRYPTODISK=y" >> ${mountpoint}/etc/default/grub
else
tobootdevice=$(blkid -s PARTUUID -o value ${device}${rootpartitionnummer})
if [ "${swap}" != "n" ]; then
swappartition=$(blkid -s PARTUUID -o value ${device}${swappartitionnummer})
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="resume=PARTUUID='$swappartition' nvidia-drm.modeset=1"/' ${mountpoint}/etc/default/grub
2018-07-31 07:16:36 +02:00
else
2018-08-26 18:47:50 +02:00
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="nvidia-drm.modeset=1"/' ${mountpoint}/etc/default/grub
2018-04-01 17:34:57 +02:00
fi
2018-08-26 18:47:50 +02:00
fi
2018-02-26 02:41:29 +01:00
}
function btrfsformat() {
2018-08-26 18:47:50 +02:00
if [ "$raid" == "raid0" ]; then
if [ "${verschluesselung}" == "y" ]; then
mkfs.btrfs -f -m raid0 -d raid0 ${deviceluks} ${device1}
else
mkfs.btrfs -f -m raid0 -d raid0 ${device}${rootpartitionnummer} ${device1}
fi
elif [ "$raid" == "raid1" ]; then
if [ "${verschluesselung}" == "y" ]; then
mkfs.btrfs -f -m raid1 -d raid1 ${deviceluks} ${device1}
else
mkfs.btrfs -f -m raid1 -d raid1 ${device}${rootpartitionnummer} ${device1}
fi
elif [ "$raid" == "raid10" ]; then
if [ "${verschluesselung}" == "y" ]; then
mkfs.btrfs -f -m raid10 -d raid10 ${deviceluks} ${device1}
else
mkfs.btrfs -f -m raid10 -d raid10 ${device}${rootpartitionnummer} ${device1}
fi
2018-07-31 07:16:36 +02:00
else
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
mkfs.btrfs -f -m single ${deviceluks}
else
mkfs.btrfs -f -m single ${device}${rootpartitionnummer}
fi
2018-07-31 07:16:36 +02:00
fi
2018-08-26 18:47:50 +02:00
btrfs filesystem show
2018-02-26 02:41:29 +01:00
}
function btrfsfstab() {
2018-08-26 18:47:50 +02:00
rootbind=$(blkid -s PARTUUID -o value ${device}${rootpartitionnummer})
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
echo -e "${deviceluks} / btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT 0 0" >> ${mountpoint}/etc/fstab
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
echo -e "${deviceluks} /home btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/home 0 0" >> ${mountpoint}/etc/fstab
echo -e "${deviceluks} /opt btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/opt 0 0" >> ${mountpoint}/etc/fstab
echo -e "${deviceluks} /var/cache/pacman/pkg btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/var/cache/pacman/pkg 0 0" >> ${mountpoint}/etc/fstab
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
# custom-mounts
for wort in ${mountsnaps}
do
echo -e "${deviceluks} ${wort} btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current${wort} 0 0" >> ${mountpoint}/etc/fstab
done
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
else
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
echo -e "PARTUUID=${rootbind} / btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT 0 0" >> ${mountpoint}/etc/fstab
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
echo -e "PARTUUID=${rootbind} /home btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/home 0 0" >> ${mountpoint}/etc/fstab
echo -e "PARTUUID=${rootbind} /opt btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/opt 0 0" >> ${mountpoint}/etc/fstab
echo -e "PARTUUID=${rootbind} /var/cache/pacman/pkg btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/var/cache/pacman/pkg 0 0" >> ${mountpoint}/etc/fstab
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
# custom-mounts
for wort in ${mountsnaps}
do
echo -e "PARTUUID=${rootbind} ${wort} btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current${wort} 0 0" >> ${mountpoint}/etc/fstab
done
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
fi
2018-02-26 02:41:29 +01:00
}
function btrfsmount() {
2018-08-26 18:47:50 +02:00
#[[ -z "${device}" ]] && device=${2}
if [ "${1}" == "1" ] || [ "${1}" == "" ]; then
if [ "${verschluesselung}" == "y" ]; then
mkdir -p /mnt/btrfs-root
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo ${deviceluks} /mnt/btrfs-root
else
mkdir -p /mnt/btrfs-root
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo ${device}${rootpartitionnummer} /mnt/btrfs-root
fi
fi
if [ "${1}" == "2" ] || [ "${1}" == "" ]; then
if [ "${verschluesselung}" == "y" ]; then
mkdir -p ${mountpoint}
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT ${deviceluks} ${mountpoint}
mkdir -p ${mountpoint}/home
mkdir -p ${mountpoint}/opt
mkdir -p ${mountpoint}/var/cache/pacman/pkg
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/home ${deviceluks} ${mountpoint}/home
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/opt ${deviceluks} ${mountpoint}/opt
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/var/cache/pacman/pkg ${deviceluks} ${mountpoint}/var/cache/pacman/pkg
# custom-mounts
for wort in ${mountsnaps}
do
mkdir -p ${mountpoint}${wort}
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current${wort} ${deviceluks} ${mountpoint}${wort}
done
mkdir -p ${mountpoint}/var/lib
mount --bind /mnt/btrfs-root/__current/ROOT/var/lib ${mountpoint}/var/lib
else
mkdir -p ${mountpoint}
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT ${device}${rootpartitionnummer} ${mountpoint}
mkdir -p ${mountpoint}/home
mkdir -p ${mountpoint}/opt
mkdir -p ${mountpoint}/var/cache/pacman/pkg
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/home ${device}${rootpartitionnummer} ${mountpoint}/home
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/opt ${device}${rootpartitionnummer} ${mountpoint}/opt
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/var/cache/pacman/pkg ${device}${rootpartitionnummer} ${mountpoint}/var/cache/pacman/pkg
# custom-mounts
for wort in ${mountsnaps}
do
mkdir -p ${mountpoint}${wort}
mount -o defaults,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current${wort} ${device}${rootpartitionnummer} ${mountpoint}${wort}
done
mkdir -p ${mountpoint}/var/lib
mount --bind /mnt/btrfs-root/__current/ROOT/var/lib ${mountpoint}/var/lib
fi
# boot mount
mkdir -p ${mountpoint}/boot
mount -t vfat ${device}${efipartitionnummer} ${mountpoint}/boot
2018-02-26 02:41:29 +01:00
fi
}
function subvolume() {
2018-08-26 18:47:50 +02:00
# Mount
btrfsmount 1
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
# Create
if [ "y" != "${noinstall}" ]; then
mkdir -p /mnt/btrfs-root/__snapshot
mkdir -p /mnt/btrfs-root/__current
btrfs subvolume create /mnt/btrfs-root/__current/ROOT
btrfs subvolume create /mnt/btrfs-root/__current/home
btrfs subvolume create /mnt/btrfs-root/__current/opt
mkdir -p /mnt/btrfs-root/__current/var/cache/pacman
btrfs subvolume create /mnt/btrfs-root/__current/var/cache/pacman/pkg/
# custom-mounts
for wort in ${mountsnaps}
do
mkdir -p /mnt/btrfs-root/__current${wort%/*}
btrfs subvolume create /mnt/btrfs-root/__current${wort}
done
fi
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
btrfs subvolume list -p /mnt/btrfs-root
2018-07-17 15:13:02 +02:00
2018-08-26 18:47:50 +02:00
# Mount
btrfsmount 2
2018-02-26 02:41:29 +01:00
}
function update() {
2018-08-26 18:47:50 +02:00
#statements
local if="${1}"
local of="${2}"
local execute="${3}"
local parameters="${4}"
if [ -f "${of}" ]
then
rm ${of}
else
echo "${of} noch nicht vorhanden!"
fi
/usr/bin/curl -v -C - -f ${if} > ${of}
chmod 755 ${of}
${of} ${execute} ${parameters}
2018-02-26 02:41:29 +01:00
}
function systemdboot() {
2018-08-26 18:47:50 +02:00
tobootdeviceuuid=$(blkid -s PARTUUID -o value ${device}${rootpartitionnummer})
swappartitionpart=$(blkid -s PARTUUID -o value ${device}${swappartitionnummer})
# zurücksetzen der parameter
parameter=""
if [ "${swap}" != "n" ]; then
parameter="${parameter}resume=PARTUUID=${swappartitionpart} "
fi
if [ "${verschluesselung}" == "y" ]; then
tobootdevice=${deviceluks}
parameter="${parameter}cryptdevice=PARTUUID=${tobootdeviceuuid}:luks0 "
if [ "${usbkey}" == "y" ]; then
parameter="${parameter}cryptkey=PARTUUID=${usbkeypartuuid}:${usbkeydateisystem}:/archkey "
fi
else
tobootdevice="PARTUUID=${tobootdeviceuuid}"
fi
if [ "${dateisystem}" == "btrfs" ]; then
parameter="${parameter}rootflags=subvol=__current/ROOT "
fi
#rootsub=$(btrfs subvolume list /mnt | awk 'NR<0 && NR>2 {print $2}')
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "manjaro" ]; then
2018-08-30 00:12:58 +02:00
kernel1="$(echo $(find /boot/ -name "initramfs*.img") | cut -d" " -f1)"
linuz1="$(echo $(find /boot/ -name "vmlinuz*") | cut -d" " -f1)"
2018-08-26 18:47:50 +02:00
kernel="${kernel1#/*/}"
linuz="${linuz1#/*/}"
2018-08-30 00:12:58 +02:00
kernelback1="$(echo $(find /boot/ -name "initramfs*-fallback.img") | cut -d" " -f1)"
2018-08-26 18:47:50 +02:00
kernelback="${kernelback1#/*/}"
else
kernel="initramfs-linux.img"
linuz="vmlinuz-linux"
kernelback="initramfs-linux-fallback.img"
fi
mkdir -p ${mountpoint}/boot/EFI/systemd/
mkdir -p ${mountpoint}/boot/EFI/BOOT/
cp ${mountpoint}/usr/lib/systemd/boot/efi/systemd-bootx64.efi ${mountpoint}/boot/EFI/systemd/systemd-bootx64.efi
cp ${mountpoint}/usr/lib/systemd/boot/efi/systemd-bootx64.efi ${mountpoint}/boot/EFI/BOOT/BOOTX64.EFI
mkdir -p ${mountpoint}/boot/loader/entries/
echo "title "${repo}"" > ${mountpoint}/boot/loader/entries/arch-uefi.conf
echo "linux /${linuz}" >> ${mountpoint}/boot/loader/entries/arch-uefi.conf
echo "initrd /intel-ucode.img" >> ${mountpoint}/boot/loader/entries/arch-uefi.conf
echo "initrd /${kernel}" >> ${mountpoint}/boot/loader/entries/arch-uefi.conf
echo "options root=${tobootdevice} rw ${parameter}nvidia-drm.modeset=1 splash" >> ${mountpoint}/boot/loader/entries/arch-uefi.conf
echo "title "${repo}"" > ${mountpoint}/boot/loader/entries/arch-uefi-fallback.conf
echo "linux /${linuz}" >> ${mountpoint}/boot/loader/entries/arch-uefi-fallback.conf
echo "initrd /intel-ucode.img" >> ${mountpoint}/boot/loader/entries/arch-uefi-fallback.conf
echo "initrd /${kernelback}" >> ${mountpoint}/boot/loader/entries/arch-uefi-fallback.conf
echo "options root=${tobootdevice} rw ${parameter}nvidia-drm.modeset=1 splash" >> ${mountpoint}/boot/loader/entries/arch-uefi-fallback.conf
echo "default arch-uefi" > ${mountpoint}/boot/loader/loader.conf
echo "timeout 1" >> ${mountpoint}/boot/loader/loader.conf
# update-bootloader
echo "title "${repo}"" > ${mountpoint}/boot/arch-uefi.conf.example
echo "linux /%LINUZ%" >> ${mountpoint}/boot/arch-uefi.conf.example
echo "initrd /intel-ucode.img" >> ${mountpoint}/boot/arch-uefi.conf.example
echo "initrd /%KERNEL%" >> ${mountpoint}/boot/arch-uefi.conf.example
echo "options root=${tobootdevice} rw ${parameter}nvidia-drm.modeset=1 splash" >> ${mountpoint}/boot/arch-uefi.conf.example
echo "Additional boot entries are created !!!"
arch-chroot ${mountpoint} efibootmgr -c -d ${device} -p 1 -l /EFI/systemd/systemd-bootx64.efi -L "Linux Boot Manager"
arch-chroot ${mountpoint} efibootmgr -c -d ${device} -p 1 -l \\${linuz} -L "Arch Linux efistub" -u "initrd=/${kernel} root=${tobootdevice} rw ${parameter}nvidia-drm.modeset=1 splash"
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "manjaro" ]; then
2018-08-26 18:47:50 +02:00
cp /opt/${repo}/update-bootloader ${mountpoint}/usr/bin/update-bootloader
chmod +x ${mountpoint}/usr/bin/update-bootloader
fi
2018-07-29 05:19:08 +02:00
2018-07-31 07:16:36 +02:00
}
2018-07-29 05:19:08 +02:00
2018-07-31 07:16:36 +02:00
function abfrage() {
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
# Lade Deutsches Tastaturlayout
loadkeys de
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "${fastinstallnext}" == "y" ]; then
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${name}" ]] && name=arch-linux
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${Partition}" ]] && Partition=bios
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${device}" ]] && device=/dev/sda
2018-07-31 08:05:56 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${raid}" ]] && raid=n
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${dateisystem}" ]] && dateisystem=btrfs
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${swapspeicher}" ]] && swapspeicher=8G
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${swapverschluesselung}" ]] && swapverschluesselung=n
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${autostart}" ]] && autostart=n
2018-07-31 08:13:07 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${usbkeydevice}" ]] && usbkeydevice=/dev/sdb1
2018-07-31 08:13:07 +02:00
2018-08-26 18:47:50 +02:00
[[ -z "${autodiskdevice}" ]] && autodiskdevice=/dev/sdb1
2018-05-10 03:33:14 +02:00
2018-08-27 14:19:16 +02:00
[[ -z "${nvidia}" ]] && nvidia=n
2018-08-26 18:47:50 +02:00
if [ "${offline}" != "n" ]
then
install="offline"
else
install="online"
fi
2018-05-10 03:33:14 +02:00
2018-08-26 18:47:50 +02:00
if [ "${device}" == "/dev/nvme0n1" ]; then
m2ssddevice=y
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
echo "Überspringe die Konfiguration wegen dem fastinstall Parameter!!!"
echo "Sie können die Überprüfung mit skipcheck überspringen!!!"
2018-07-29 05:19:08 +02:00
else
2018-08-26 18:47:50 +02:00
read -p "What's your name?: " name
[[ -z "${name}" ]] && name=arch-linux
# Partionierung
# UEFI oder Legacy-BIOS
echo ""
echo "UEFI = Unified Extensible Firmware Interface"
echo "Recommended for newer PCs"
echo "IMPORTANT FOR THIS MUST BE SELECTED IN THE BOAT MENU THE UEFI USB STICK OTHERWISE CAN NOT BE CREATED A UEFI BOAT ENTRY !!!"
echo ""
echo "BIOS = basic input/output system"
echo "Recommended for old PCs and portable USB sticks "
echo ""
echo "Please write down the entries: D !!!"
echo "For each yes you have to make a y and for every no an n, unless it is interpreted differently!!!"
echo ""
if mount | grep efi > /dev/null && [ -d /sys/firmware/efi/efivars/ ]; then
echo "System supports UEFI"
read -p "How would you like to have your hard drive partitioned?: [UEFI/bios] " Partition
[[ -z "${Partition}" ]] && Partition=uefi
else
echo "System supports not UEFI"
read -p "How would you like to have your hard drive partitioned?: [uefi/BIOS] " Partition
[[ -z "${Partition}" ]] && Partition=bios
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
fdisk -l
read -p "Specify a hard disk: /dev/sda " device
[[ -z "${device}" ]] && device=/dev/sda
if [ "${device}" == "/dev/nvme0n1" ]; then
m2ssddevice=y
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
read -p "Which file system should be used? [BTRFS/ext4] " dateisystem
[[ -z "${dateisystem}" ]] && dateisystem=btrfs
if [ "${dateisystem}" == "btrfs" ]; then
read -p "Should a raid be made ?: [raid0/raid1/raid10/n] " raid
[[ -z "${raid}" ]] && raid=n
if [ "${raid}" == "n" ]; then
echo "No raid is generated!"
else
fdisk -l
read -p "Please enter the disks in a row to be connected to a raid !!!: " device1
fi
echo "Standard snapshots / /home /opt /var/cache/pacman/pkg"
echo "The directories may not overlap otherwise there may be problems with the unmount !!!"
read -p "Should more snapshots be created ?: " mountsnaps
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
read -p "Do you want to create a swap partition? : [Y/n] " swap
if [ "${swap}" != "n" ]; then
read -p "Do you want create your swap with : [2G/4G/8G/16G] " swapspeicher
[[ -z "${swapspeicher}" ]] && swapspeicher=8G
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
echo "WARNING with a encrypted Swap disk you cant go in the hibernate-modus!!!"
read -p "Should the Swap disk be encrypted? : [y/N] " swapverschluesselung
[[ -z "${swapverschluesselung}" ]] && swapverschluesselung=n
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
read -p "Do you want to create a swapfile? : [y/N] " swapfile
if [ "${swapfile}" == "y" ]; then
read -p "Do you want create your swapfile with : [2G/4G/8G/16G] " swapfilespeicher
[[ -z "${swapfilespeicher}" ]] && swapfilespeicher=8G
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
echo "WARNING the system is not encrypted !!!"
echo "WARNING The system will not start without the USB stick !!!"
read -p "Should a USB stick be installed as the key for the system? : [y/N] " usbsecret
if [ "${usbsecret}" == "y" ]; then
read -p "Which USB stick should be selected for the USB-secret key ?: /dev/sdb1 " usbsecretdevice
[[ -z "${usbsecretdevice}" ]] && device=/dev/sdb1
usbsecretdeviceuuid=$(blkid -s PARTUUID -o value ${usbsecretdevice})
[[ -z "${usbsecretdeviceuuid}" ]] && mkfs.ext4 ${usbsecretdevice}
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "${raid}" == "n" ]; then
read -p "Should the hard disk be encrypted? : [y/N] " verschluesselung
if [ "${verschluesselung}" == "y" ]; then
modprobe dm-crypt
read -p "Should an additional USB stick be created for decryption? : [y/N] " usbkey
if [ "${usbkey}" == "y" ]; then
read -p "Which USB stick should be selected ?: /dev/sdb1 " usbkeydevice
[[ -z "${usbkeydevice}" ]] && usbkeydevice=/dev/sdb1
usbkeydateisystem=$(blkid -s TYPE -o value ${usbkeydevice})
usbkeyuuid=$(blkid -s UUID -o value ${usbkeydevice})
usbkeypartuuid=$(blkid -s PARTUUID -o value ${usbkeydevice})
fi
fi
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
# berechnungen
read -p "Should an offline installation be carried out? : [Y/n] " offline
if [ "${offline}" != "n" ]
then
install="offline"
else
install="online"
2018-07-29 05:19:08 +02:00
fi
2018-08-26 18:47:50 +02:00
read -p "Should you an disk added to your fstab? : [y/N] " autodisk
if [ "${autodisk}" == "y" ]
then
read -p "Which DISK stick should be selected ?: /dev/sdb1 /dev/sdc1 " autodiskdevice
[[ -z "${autodiskdevice}" ]] && autodiskdevice=/dev/sdb1
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
for wort in ${autodiskdevice}
do
echo "fstab ${wort} wird erstellt!!!"
autodiskdevicedateisystem=$(blkid -s TYPE -o value ${wort})
autodiskdeviceuuid=$(blkid -s PARTUUID -o value ${wort})
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
done
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
read -p "Do you want to activate the VNC protocol? : [y/N] " x11vnc
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "${offline}" != "n" ]; then
echo "All my Distros have as default a XFCE4 Desktop!!!"
read -p "Sould the system be started with a login screen? : [y/N] " autostart
[[ -z "${autostart}" ]] && autostart=n
fi
2018-07-29 05:19:08 +02:00
2018-08-27 14:19:16 +02:00
if lspci | grep -e VGA -e 3D -m 1 | grep NVIDIA; then
read -p "Will you have activate youre Nvidia driver? : [y/N] " nvidia
fi
[[ -z "${nvidia}" ]] && nvidia=n
2018-08-26 18:47:50 +02:00
echo "Windows dualboot funktioniert nur im UEFI Modus und auch nur derzeit mit GRUB!!!"
echo "Ausserdem muss die UEFI_Bootpartition über 256MB mindesten sein!!!"
read -p "Do you want a extra parameter for the installation? : [skipbootpartition/noinstall/debug/windualboot/dualboot] " extraparameter
for wort in ${extraparameter}
do
echo "$wort"
export ${wort}="y"
echo "Extra-Parameter ${wort}=y"
done
2018-07-29 05:19:08 +02:00
fi
2018-08-26 18:47:50 +02:00
# Ausgaben
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
# Dateisystem
if [ "${dateisystem}" == "btrfs" ]; then
mountpoint="/mnt/btrfs-current"
elif [ "${dateisystem}" == "ext4" ]; then
mountpoint="/mnt"
2018-07-29 05:19:08 +02:00
fi
2018-08-26 18:47:50 +02:00
#
echo "Username: ${name}"
echo "partition type: ${Partition}"
echo "Bootloader: ${boot}"
echo "Drive: ${device}"
if [ "${raid}" != "n" ]; then
echo "Raid: ${raid}"
echo "Hard Drives: ${device1}"
2018-07-29 05:19:08 +02:00
fi
2018-08-26 18:47:50 +02:00
echo "File system: ${dateisystem}"
2018-07-31 07:16:36 +02:00
if [ "${swap}" != "n" ]; then
2018-08-26 18:47:50 +02:00
echo "Swap-partition ${swapspeicher}"
fi
if [ "${swapfile}" == "y" ]; then
echo "Swapfile ${swapfilespeicher}"
fi
#echo "Rootpasswort: ${pass}"
echo "Architektur: $(uname -m)"
echo "Installation: ${install}"
if [ "${dateisystem}" == "btrfs" ]; then
for wort in ${mountsnaps}
do
echo "Snapshot ${wort} wird erstellt!!!"
done
fi
if [ "${usbsecret}" == "y" ]; then
echo "USB-secret: aktiv"
echo "USB-UIDD: ${usbsecretdeviceuuid}"
echo "USB-Label: ${usbsecretdevice}"
fi
if [ "${verschluesselung}" == "y" ]; then
echo "Fesptplatte with Luks 512KB encryption: aktiv"
if [ "${usbkey}" == "y" ]; then
echo "${usbkeydevice} is used as key for decrypting: "
echo "File system: ${usbkeydateisystem}"
fi
2018-02-26 02:41:29 +01:00
fi
2018-08-26 18:47:50 +02:00
RCLOCALSHUTDOWN="${mountpoint}/etc/rc.local.shutdown"
2018-04-05 20:39:14 +02:00
2018-08-26 18:47:50 +02:00
# Partitionierung
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
if [ "${m2ssddevice}" == "y" ]; then
m2ssd=p
fi
echo "Zusatzparameter"
if [ "${windualboot}" == "y" ]; then
echo "Windows Dualboot: ${windualboot}"
export skipbootpartition="y"
fi
if [ "${dualboot}" == "y" ]; then
echo "SpectreOS Dualboot: ${dualboot}"
export skipbootpartition="y"
fi
if [ "${skipbootpartition}" == "y" ]; then
echo "Überspringe Formatieren der Boot Partition: ${skipbootpartition}"
fi
if [ "${debug}" == "y" ]; then
echo "Debug Menü: ${debug}"
fi
if [ "${noinstall}" == "y" ]; then
echo "Keine Installation: ${noinstall}"
fi
if [ "y" == "${windualboot}" ]; then
bootpartitionnummer=${m2ssd}1
efipartitionnummer=${m2ssd}2
if [ "${swap}" != "n" ]; then
swappartitionnummer=${m2ssd}5
rootpartitionnummer=${m2ssd}6
else
rootpartitionnummer=${m2ssd}5
fi
elif [ "y" == "${dualboot}" ]; then
bootpartitionnummer=${m2ssd}1
efipartitionnummer=${m2ssd}2
if [ "${swap}" != "n" ]; then
swappartitionnummer=${m2ssd}3
rootpartitionnummer=${m2ssd}5
else
rootpartitionnummer=${m2ssd}4
fi
else
bootpartitionnummer=${m2ssd}1
efipartitionnummer=${m2ssd}2
if [ "${swap}" != "n" ]; then
swappartitionnummer=${m2ssd}3
rootpartitionnummer=${m2ssd}4
else
rootpartitionnummer=${m2ssd}3
fi
fi
deviceluks="/dev/mapper/luks0"
echo "Boot-Partition = ${device}${bootpartitionnummer}"
echo "EFI-Partition = ${device}${efipartitionnummer}"
if [ "${swap}" != "n" ]; then
echo "Swap-Partition = ${device}${swappartitionnummer}"
fi
echo "ROOT-Partition = ${device}${rootpartitionnummer}"
#
if [ "${skipcheck}" != "y" ]; then
read -p "Are all the details correct ?: [y/N] " sicherheitsabfrage
if [ "$sicherheitsabfrage" != "y" ]
then
echo "ABGEBROCHEN"
exit 1
fi
2018-07-29 05:19:08 +02:00
fi
2018-08-26 18:47:50 +02:00
echo "Operating system is installed !!!"
sleep 5
2018-02-26 02:41:29 +01:00
}
2018-07-31 07:16:36 +02:00
# Begin the Script!!!
2018-02-26 02:41:29 +01:00
2018-07-31 08:18:56 +02:00
if [ "${start}" == "root" ]; then
2018-08-26 18:47:50 +02:00
# for-schleife
for wort in ${startparameter}
do
echo "$wort"
export ${wort%=*}=${wort#*=}
echo "Parameter ${wort%=*} = ${wort#*=}"
done
2018-07-31 08:18:56 +02:00
else
2018-08-26 18:47:50 +02:00
# for-schleife
for wort in ${1}
do
echo "$wort"
export ${wort%=*}=${wort#*=}
echo "Parameter ${wort%=*} = ${wort#*=}"
done
2018-07-31 08:18:56 +02:00
fi
2018-02-26 02:41:29 +01:00
2018-07-31 08:03:42 +02:00
if [ "${fastinstall}" == "y" ] && [ "${fastinstallnext}" != "y" ]; then
2018-08-26 18:47:50 +02:00
gitclone
/opt/${repo}/arch-install "${1}fastinstallnext=y "
exit 0
2018-07-31 07:58:36 +02:00
elif [ "${phaseone}" != "n" ] && [ "${fastinstallnext}" != "y" ]
2018-02-26 02:41:29 +01:00
then
2018-08-26 18:47:50 +02:00
if wget -qO- ipv4.icanhazip.com 1>/dev/null 2>&1; then
read -p "Should I look at the internet for a new install script and then run it ?: [Y/n] " update
if [ "${update}" == "debug" ]
then
echo "Skip the download a new script !!!"
2018-02-26 02:41:29 +01:00
else
2018-08-26 18:47:50 +02:00
if [ "${update}" != "n" ]
then
echo "Please dont update the linux kernel!!!"
if [ -f base.txt ]; then
pacman -Sy $(cat base.txt) --needed --ignore linux
elif [ -f /opt/${repo}/base.txt ]; then
pacman -Sy $(cat /opt/${repo}/base.txt) --needed --ignore linux
else
echo "Kann keine neuen Packete nachinstallieren weil die base.txt nicht gefunden werden kann!!"
echo "Es kann sein das dass Programm nicht korrekt funktioniert!!!"
fi
gitclone
/opt/${repo}/arch-install "${1}phaseone=n "
exit 0
fi
2018-02-26 02:41:29 +01:00
fi
2018-08-26 18:47:50 +02:00
else
echo "No internet connection detected!"
update=n
fi
2018-02-26 02:41:29 +01:00
fi
if [ "${update}" != "n" ]; then
2018-08-26 18:47:50 +02:00
echo "Online-Modus activated!"
#vpntunnel
2018-02-26 02:41:29 +01:00
fi
# debug = Installation ueberspringen zu arch-graphical-install und DEBEUG-MODUS
abfrage
secureumount
2018-07-26 05:12:14 +02:00
if [ "y" == "${debug}" ] || [ "y" == "${noinstall}" ]
2018-02-26 02:41:29 +01:00
then
2018-08-26 18:47:50 +02:00
echo "DEBEUG-MODUS"
echo "If no more commands are required, simply press enter"
echo "Which command should be executed? "
2018-02-26 02:41:29 +01:00
2018-08-26 18:47:50 +02:00
befehl=blablabla
while [ "$befehl" != "" ]
do
read -p "" befehl
$befehl
done
2018-02-26 02:41:29 +01:00
fi
#
2018-03-05 16:53:39 +01:00
echo "A purge stops the chance of installing on the system."
echo "It may take a while!"
2018-07-26 05:12:14 +02:00
if [ "y" != "${noinstall}" ] && [ "y" != "${skipbootpartition}" ]; then
2018-08-26 18:47:50 +02:00
sleep 5
dd if=/dev/zero of=${device} bs=64M count=10 status=progress
2018-04-01 16:52:36 +02:00
fi
2018-02-26 02:41:29 +01:00
#
if [ "${Partition}" == "uefi" ]
then
2018-08-26 18:47:50 +02:00
echo "Partitions with UEFI"
2018-07-17 18:26:10 +02:00
2018-08-26 18:47:50 +02:00
if [ "y" != "${noinstall}" ]; then
if [ "y" == "${skipbootpartition}" ]; then
partitionieredual
else
partitioniere
fi
2018-07-17 18:26:10 +02:00
else
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
mountencrypt
fi
2018-07-31 07:16:36 +02:00
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
echo "installation"
installation
grubinstall
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "y" == "${windualboot}" ]; then
mkinitcpio -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
2018-07-29 05:19:08 +02:00
else
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "libre" ]; then
2018-08-26 18:47:50 +02:00
arch-chroot ${mountpoint} mkinitcpio -p linux-libre
else
arch-chroot ${mountpoint} mkinitcpio -P -c /etc/mkinitcpio.conf
fi
fi
echo ""
arch-chroot ${mountpoint} grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id="${repo}" --recheck
arch-chroot ${mountpoint} grub-mkconfig -o /boot/grub/grub.cfg
systemdboot
removeinstaller
echo "Finished"
2018-02-26 02:41:29 +01:00
elif [ "${Partition}" == "bios" ]; then
2018-08-26 18:47:50 +02:00
echo "Partitions with MBR"
if [ "y" != "${noinstall}" ]; then
if [ "y" == "${skipbootpartition}" ]; then
partitionieredual
else
partitioniere
fi
2018-07-17 19:29:59 +02:00
else
2018-08-26 18:47:50 +02:00
if [ "${verschluesselung}" == "y" ]; then
mountencrypt
fi
2018-07-31 07:16:36 +02:00
fi
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
echo "installation"
installation
grubinstall
2018-07-29 05:19:08 +02:00
2018-08-26 18:47:50 +02:00
if [ "y" == "${windualboot}" ]; then
mkinitcpio -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
2018-07-29 05:19:08 +02:00
else
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "libre" ]; then
2018-08-26 18:47:50 +02:00
arch-chroot ${mountpoint} mkinitcpio -p linux-libre
else
arch-chroot ${mountpoint} mkinitcpio -P linux -c /etc/mkinitcpio.conf
fi
fi
echo ""
arch-chroot ${mountpoint} grub-install --target=i386-pc --recheck ${device}
arch-chroot ${mountpoint} grub-mkconfig -o /boot/grub/grub.cfg
removeinstaller
echo "Finished"
2018-02-26 02:41:29 +01:00
else
2018-08-26 18:47:50 +02:00
echo "Entry Invalid"
exit 1
2018-02-26 02:41:29 +01:00
fi
if [ "${x11vnc}" == "y" ]; then
2018-08-26 18:47:50 +02:00
echo "Please enter a password for the VNC protocol!"
arch-chroot ${mountpoint} x11vnc -storepasswd /etc/x11vnc.pass
arch-chroot ${mountpoint} systemctl enable x11vnc.service
2018-03-04 18:50:24 +01:00
else
2018-08-26 18:47:50 +02:00
arch-chroot ${mountpoint} systemctl disable x11vnc.service
2018-02-26 02:41:29 +01:00
fi
2018-04-11 18:01:17 +02:00
# benutzerwechsel
2018-07-26 05:12:14 +02:00
if [ "y" != "${noinstall}" ] && [ -z "${installationsfehler}" ]; then
2018-08-26 18:47:50 +02:00
#arch-chroot ${mountpoint} usermod -l "${name}" user1
#arch-chroot ${mountpoint} usermod -d /home/"${name}" -m "${name}"
arch-chroot ${mountpoint} chfn -f "${name}" user1
arch-chroot ${mountpoint} passwd user1
if [ -f ${mountpoint}/usr/bin/lightdm ]; then
mkdir -p ${mountpoint}/etc/lightdm/
cp /opt/${repo}/Xsession /opt/${repo}/keys.conf /opt/${repo}/lightdm-gtk-greeter.conf /opt/${repo}/lightdm.conf /opt/${repo}/users.conf ${mountpoint}/etc/lightdm/
if [ "${autostart}" == "y" ]; then
2018-09-03 01:21:45 +02:00
if [ "${version%-*-*}" == "libre" ] || [ "${version%-*-*}" == "manjaro" ] || [ "${version%-*-*}" == "lite" ]; then
2018-08-26 18:47:50 +02:00
arch-chroot ${mountpoint} systemctl enable lightdm.service
else
arch-chroot ${mountpoint} systemctl enable lightdm-plymouth.service
fi
fi
else
echo "lightdm nicht vorhanden!!!"
fi
2018-05-04 05:55:49 +02:00
2018-04-11 18:01:17 +02:00
fi
2018-04-25 08:09:12 +02:00
if [ "${update}" != "n" ] && [ "${offline}" == "n" ] || [ -n "${installationsfehler}" ]; then
2018-08-26 18:47:50 +02:00
read -p "Should the extended installation be carried out? [Y/n] " graphical
if [ "$graphical" != "n" ]
then
cp /opt/${repo}/arch-graphical-install-auto ${mountpoint}/root/arch-graphical-install-auto
arch-chroot ${mountpoint} /root/arch-graphical-install-auto ${version}
fi
2018-02-26 02:41:29 +01:00
fi
echo "df!!!"
df -h
if [ "${dateisystem}" == "btrfs" ]; then
2018-08-26 18:47:50 +02:00
btrfs filesystem df ${mountpoint}
2018-02-26 02:41:29 +01:00
fi
echo "umount!!!"
sleep 5
secureumount
echo ""
echo "Fertig!!!"
2018-07-31 07:16:36 +02:00
read -p "Allation completed successfully. Do you want to RESTART the PC ?: [Y/n] " sicherheitsabfrage
2018-02-26 02:41:29 +01:00
if [ "$sicherheitsabfrage" != "n" ]
then
2018-08-26 18:47:50 +02:00
echo "restart now"
reboot
2018-02-26 02:41:29 +01:00
fi
exit 0