final-fix
This commit is contained in:
parent
b6dd79629d
commit
0b538cc62f
1 changed files with 160 additions and 109 deletions
|
@ -255,12 +255,19 @@ if [ "${dateisystem}" == "btrfs" ]; then
|
||||||
btrfsfstab #btrfs
|
btrfsfstab #btrfs
|
||||||
|
|
||||||
mkdir -p ${mountpoint}/run/btrfs-root
|
mkdir -p ${mountpoint}/run/btrfs-root
|
||||||
|
if [ "${verschluesselung}" == "y" ]; then
|
||||||
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
|
echo "${deviceluks} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
||||||
|
elif [ "${Partition}" == "mbr" ]; then
|
||||||
|
echo "${deviceluks} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
||||||
|
fi
|
||||||
|
else
|
||||||
if [ "${Partition}" == "gpt" ]; then
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
echo "PARTUUID=${rootbind} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
echo "PARTUUID=${rootbind} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
||||||
elif [ "${Partition}" == "mbr" ]; then
|
elif [ "${Partition}" == "mbr" ]; then
|
||||||
echo "UUID=${rootbind} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
echo "UUID=${rootbind} /run/btrfs-root/ btrfs defaults 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
#grep -v "/var/lib" < ${mountpoint}/etc/fstab > fstab.neu; mv fstab.neu ${mountpoint}/etc/fstab
|
#grep -v "/var/lib" < ${mountpoint}/etc/fstab > fstab.neu; mv fstab.neu ${mountpoint}/etc/fstab
|
||||||
|
|
||||||
echo "/run/btrfs-root/__current/ROOT/var/lib /var/lib none bind 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
echo "/run/btrfs-root/__current/ROOT/var/lib /var/lib none bind 0 0" >> ${mountpoint}/etc/fstab #btrfs
|
||||||
|
@ -268,12 +275,20 @@ if [ "${dateisystem}" == "btrfs" ]; then
|
||||||
cron
|
cron
|
||||||
|
|
||||||
elif [ "${dateisystem}" == "ext4" ]; then
|
elif [ "${dateisystem}" == "ext4" ]; then
|
||||||
|
if [ "${verschluesselung}" == "y" ]; then
|
||||||
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
|
echo "${deviceluks} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
elif [ "${Partition}" == "mbr" ]; then
|
||||||
|
echo "${deviceluks} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
fi
|
||||||
|
else
|
||||||
if [ "${Partition}" == "gpt" ]; then
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
echo "PARTUUID=${rootbind} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab
|
echo "PARTUUID=${rootbind} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab
|
||||||
elif [ "${Partition}" == "mbr" ]; then
|
elif [ "${Partition}" == "mbr" ]; then
|
||||||
echo "UUID=${rootbind} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab
|
echo "UUID=${rootbind} / ext4 rw,defaults,noatime,nodiratime,discard 0 0" >> ${mountpoint}/etc/fstab
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${Partition}" == "gpt" ]; then
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
|
|
||||||
|
@ -320,6 +335,7 @@ if [ "${verschluesselung}" == "y" ]; then
|
||||||
if [ "${boot}" == "grub" ]; then
|
if [ "${boot}" == "grub" ]; then
|
||||||
tobootdevice=$(blkid -s UUID -o value ${device}${rootpartitionnummer})
|
tobootdevice=$(blkid -s UUID -o value ${device}${rootpartitionnummer})
|
||||||
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="cryptdevice=UUID='$tobootdevice':luks0"/' ${mountpoint}/etc/default/grub
|
sed -i 's/GRUB_CMDLINE_LINUX=.*$/GRUB_CMDLINE_LINUX="cryptdevice=UUID='$tobootdevice':luks0"/' ${mountpoint}/etc/default/grub
|
||||||
|
echo "GRUB_ENABLE_CRYPTODISK=y" >> ${mountpoint}/etc/default/grub
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -381,6 +397,40 @@ elif [ "${Partition}" == "mbr" ]; then
|
||||||
rootbind=$(blkid -s UUID -o value ${device}${rootpartitionnummer})
|
rootbind=$(blkid -s UUID -o value ${device}${rootpartitionnummer})
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${verschluesselung}" == "y" ]; then
|
||||||
|
|
||||||
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
|
|
||||||
|
echo -e "${deviceluks} / btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
|
||||||
|
elif [ "${Partition}" == "mbr" ]; then
|
||||||
|
|
||||||
|
echo -e "UUID=${rootbind} / btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
|
||||||
|
echo -e "UUID=${rootbind} /home btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/home 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
echo -e "UUID=${rootbind} /opt btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/opt 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
echo -e "UUID=${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
|
||||||
|
|
||||||
|
# custom-mounts
|
||||||
|
for wort in ${mountsnaps}
|
||||||
|
do
|
||||||
|
echo -e "UUID=${rootbind} ${wort} btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current${wort} 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
if [ "${Partition}" == "gpt" ]; then
|
if [ "${Partition}" == "gpt" ]; then
|
||||||
|
|
||||||
echo -e "PARTUUID=${rootbind} / btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT 0 0" >> ${mountpoint}/etc/fstab
|
echo -e "PARTUUID=${rootbind} / btrfs rw,noatime,nodiratime,space_cache,discard,ssd,compress=lzo,subvol=__current/ROOT 0 0" >> ${mountpoint}/etc/fstab
|
||||||
|
@ -412,6 +462,7 @@ elif [ "${Partition}" == "mbr" ]; then
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function btrfsmount() {
|
function btrfsmount() {
|
||||||
|
@ -910,7 +961,7 @@ if [ "${dateisystem}" == "btrfs" ]; then
|
||||||
btrfs filesystem df ${mountpoint}
|
btrfs filesystem df ${mountpoint}
|
||||||
fi
|
fi
|
||||||
echo "umount!!!"
|
echo "umount!!!"
|
||||||
pause 5
|
sleep 5
|
||||||
secureumount
|
secureumount
|
||||||
echo ""
|
echo ""
|
||||||
echo "Fertig!!!"
|
echo "Fertig!!!"
|
||||||
|
|
Loading…
Reference in a new issue