mirror of
https://gitlab.manjaro.org/applications/manjaro-architect
synced 2024-11-08 01:10:26 +00:00
commit
ce1bb2905d
@ -76,9 +76,9 @@ set_timezone() {
|
|||||||
|
|
||||||
DIALOG " $_ConfBseTimeHC " --yesno "$_TimeZQ ${ZONE}/${SUBZONE}?" 0 0
|
DIALOG " $_ConfBseTimeHC " --yesno "$_TimeZQ ${ZONE}/${SUBZONE}?" 0 0
|
||||||
|
|
||||||
if [[ $? -eq 0 ]]; then
|
if (( $? != 0 )); then
|
||||||
arch_chroot "ln -sf /usr/share/zoneinfo/${ZONE}/${SUBZONE} /etc/localtime" 2>$ERR
|
arch_chroot "ln -sf /usr/share/zoneinfo/${ZONE}/${SUBZONE} /etc/localtime" 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $? config_base_menu
|
||||||
else
|
else
|
||||||
config_base_menu
|
config_base_menu
|
||||||
fi
|
fi
|
||||||
@ -109,7 +109,7 @@ generate_fstab() {
|
|||||||
generate_fstab
|
generate_fstab
|
||||||
else
|
else
|
||||||
$(cat ${ANSWER}) ${MOUNTPOINT} > ${MOUNTPOINT}/etc/fstab 2>$ERR
|
$(cat ${ANSWER}) ${MOUNTPOINT} > ${MOUNTPOINT}/etc/fstab 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $? config_base_menu
|
||||||
[[ -f ${MOUNTPOINT}/swapfile ]] && sed -i "s/\\${MOUNTPOINT}//" ${MOUNTPOINT}/etc/fstab
|
[[ -f ${MOUNTPOINT}/swapfile ]] && sed -i "s/\\${MOUNTPOINT}//" ${MOUNTPOINT}/etc/fstab
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -123,7 +123,7 @@ set_hostname() {
|
|||||||
echo "$(cat ${ANSWER})" > ${MOUNTPOINT}/etc/hostname 2>$ERR
|
echo "$(cat ${ANSWER})" > ${MOUNTPOINT}/etc/hostname 2>$ERR
|
||||||
echo -e "#<ip-address>\t<hostname.domain.org>\t<hostname>\n127.0.0.1\tlocalhost.localdomain\tlocalhost\t$(cat \
|
echo -e "#<ip-address>\t<hostname.domain.org>\t<hostname>\n127.0.0.1\tlocalhost.localdomain\tlocalhost\t$(cat \
|
||||||
${ANSWER})\n::1\tlocalhost.localdomain\tlocalhost\t$(cat ${ANSWER})" > ${MOUNTPOINT}/etc/hosts 2>$ERR
|
${ANSWER})\n::1\tlocalhost.localdomain\tlocalhost\t$(cat ${ANSWER})" > ${MOUNTPOINT}/etc/hosts 2>$ERR
|
||||||
check_for_error "$FUNCNAME" 0
|
check_for_error "$FUNCNAME" 0 config_base_menu
|
||||||
}
|
}
|
||||||
|
|
||||||
# Adapted and simplified from the Manjaro 0.8 and Antergos 2.0 installers
|
# Adapted and simplified from the Manjaro 0.8 and Antergos 2.0 installers
|
||||||
@ -139,8 +139,8 @@ set_root_password() {
|
|||||||
if [[ $PASSWD == $PASSWD2 ]]; then
|
if [[ $PASSWD == $PASSWD2 ]]; then
|
||||||
echo -e "${PASSWD}\n${PASSWD}" > /tmp/.passwd
|
echo -e "${PASSWD}\n${PASSWD}" > /tmp/.passwd
|
||||||
arch_chroot "passwd root" < /tmp/.passwd >/dev/null 2>$ERR
|
arch_chroot "passwd root" < /tmp/.passwd >/dev/null 2>$ERR
|
||||||
|
check_for_error "$FUNCNAME" $?
|
||||||
rm /tmp/.passwd
|
rm /tmp/.passwd
|
||||||
check_for_error "$FUNCNAME" "$?"
|
|
||||||
else
|
else
|
||||||
DIALOG " $_ErrTitle " --msgbox "$_PassErrBody" 0 0
|
DIALOG " $_ErrTitle " --msgbox "$_PassErrBody" 0 0
|
||||||
set_root_password
|
set_root_password
|
||||||
@ -192,11 +192,11 @@ create_new_user() {
|
|||||||
# Create the user, set password, then remove temporary password file
|
# Create the user, set password, then remove temporary password file
|
||||||
arch_chroot "groupadd ${USER}"
|
arch_chroot "groupadd ${USER}"
|
||||||
arch_chroot "useradd ${USER} -m -g ${USER} -G wheel,storage,power,network,video,audio,lp -s /bin/$shell" 2>$ERR
|
arch_chroot "useradd ${USER} -m -g ${USER} -G wheel,storage,power,network,video,audio,lp -s /bin/$shell" 2>$ERR
|
||||||
check_for_error "add user to groups" "$?"
|
check_for_error "add user to groups" $?
|
||||||
echo -e "${PASSWD}\n${PASSWD}" > /tmp/.passwd
|
echo -e "${PASSWD}\n${PASSWD}" > /tmp/.passwd
|
||||||
arch_chroot "passwd ${USER}" < /tmp/.passwd >/dev/null 2>$ERR
|
arch_chroot "passwd ${USER}" < /tmp/.passwd >/dev/null 2>$ERR
|
||||||
|
check_for_error "create user pwd" $?
|
||||||
rm /tmp/.passwd
|
rm /tmp/.passwd
|
||||||
check_for_error "create user pwd" "$?"
|
|
||||||
|
|
||||||
# Set up basic configuration files and permissions for user
|
# Set up basic configuration files and permissions for user
|
||||||
#arch_chroot "cp /etc/skel/.bashrc /home/${USER}"
|
#arch_chroot "cp /etc/skel/.bashrc /home/${USER}"
|
||||||
@ -210,11 +210,10 @@ run_mkinitcpio() {
|
|||||||
KERNEL=""
|
KERNEL=""
|
||||||
|
|
||||||
# If LVM and/or LUKS used, add the relevant hook(s)
|
# If LVM and/or LUKS used, add the relevant hook(s)
|
||||||
([[ $LVM -eq 1 ]] && [[ $LUKS -eq 0 ]]) && sed -i 's/block filesystems/block lvm2 filesystems/g' ${MOUNTPOINT}/etc/mkinitcpio.conf 2>$ERR
|
([[ $LVM -eq 1 ]] && [[ $LUKS -eq 0 ]]) && { sed -i 's/block filesystems/block lvm2 filesystems/g' ${MOUNTPOINT}/etc/mkinitcpio.conf 2>$ERR || check_for_error "lVM2 hooks" $?; }
|
||||||
([[ $LVM -eq 1 ]] && [[ $LUKS -eq 1 ]]) && sed -i 's/block filesystems/block encrypt lvm2 filesystems/g' ${MOUNTPOINT}/etc/mkinitcpio.conf 2>$ERR
|
([[ $LVM -eq 1 ]] && [[ $LUKS -eq 1 ]]) && { sed -i 's/block filesystems/block encrypt lvm2 filesystems/g' ${MOUNTPOINT}/etc/mkinitcpio.conf 2>$ERR || check_for_error "lVM/LUKS hooks" $?; }
|
||||||
([[ $LVM -eq 0 ]] && [[ $LUKS -eq 1 ]]) && sed -i 's/block filesystems/block encrypt filesystems/g' ${MOUNTPOINT}/etc/mkinitcpio.conf 2>$ERR
|
([[ $LVM -eq 0 ]] && [[ $LUKS -eq 1 ]]) && { sed -i 's/block filesystems/block encrypt filesystems/g' ${MOUNTPOINT}/etc/mkinitcpio.conf 2>$ERR || check_for_error "LUKS hooks" $?; }
|
||||||
check_for_error "lVM/LUKS hooks" "$?"
|
|
||||||
|
|
||||||
arch_chroot "mkinitcpio -P" 2>$ERR
|
arch_chroot "mkinitcpio -P" 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" "$?"
|
||||||
}
|
}
|
||||||
@ -294,7 +293,7 @@ install_base() {
|
|||||||
|
|
||||||
# If at least one kernel selected, proceed with installation.
|
# If at least one kernel selected, proceed with installation.
|
||||||
basestrap ${MOUNTPOINT} $(cat /tmp/.base) 2>$ERR
|
basestrap ${MOUNTPOINT} $(cat /tmp/.base) 2>$ERR
|
||||||
check_for_error "install basepkgs" "$?"
|
check_for_error "install basepkgs" $? install_base
|
||||||
|
|
||||||
# If root is on btrfs volume, amend mkinitcpio.conf
|
# If root is on btrfs volume, amend mkinitcpio.conf
|
||||||
[[ $(lsblk -lno FSTYPE,MOUNTPOINT | awk '/ \/mnt$/ {print $1}') == btrfs ]] && sed -e '/^HOOKS=/s/\ fsck//g' -i ${MOUNTPOINT}/etc/mkinitcpio.conf
|
[[ $(lsblk -lno FSTYPE,MOUNTPOINT | awk '/ \/mnt$/ {print $1}') == btrfs ]] && sed -e '/^HOOKS=/s/\ fsck//g' -i ${MOUNTPOINT}/etc/mkinitcpio.conf
|
||||||
@ -307,18 +306,24 @@ install_base() {
|
|||||||
# arch_chroot "mhwd-kernel -i $(cat ${PACKAGES} | xargs -n1 | grep -f /tmp/.available_kernels | xargs)"
|
# arch_chroot "mhwd-kernel -i $(cat ${PACKAGES} | xargs -n1 | grep -f /tmp/.available_kernels | xargs)"
|
||||||
|
|
||||||
# If the virtual console has been set, then copy config file to installation
|
# If the virtual console has been set, then copy config file to installation
|
||||||
[[ -e /tmp/vconsole.conf ]] && cp -f /tmp/vconsole.conf ${MOUNTPOINT}/etc/vconsole.conf
|
if [[ -e /tmp/vconsole.conf ]]; then
|
||||||
|
cp -f /tmp/vconsole.conf ${MOUNTPOINT}/etc/vconsole.conf
|
||||||
|
check_for_error "copy vconsole.conf" $ install_base
|
||||||
|
fi
|
||||||
|
|
||||||
# If specified, copy over the pacman.conf file to the installation
|
# If specified, copy over the pacman.conf file to the installation
|
||||||
[[ $COPY_PACCONF -eq 1 ]] && cp -f /etc/pacman.conf ${MOUNTPOINT}/etc/pacman.conf
|
if [[ $COPY_PACCONF -eq 1 ]]; then
|
||||||
|
cp -f /etc/pacman.conf ${MOUNTPOINT}/etc/pacman.conf
|
||||||
|
check_for_error "copy pacman.conf" $? install_base
|
||||||
|
fi
|
||||||
|
|
||||||
# if branch was chosen, use that also in installed system. If not, use the system setting
|
# if branch was chosen, use that also in installed system. If not, use the system setting
|
||||||
if [[ -e ${BRANCH} ]]; then
|
if [[ -e ${BRANCH} ]]; then
|
||||||
sed -i "/Branch =/c\Branch = $(cat ${BRANCH})/" ${MOUNTPOINT}/etc/pacman-mirrors.conf 2>$ERR
|
sed -i "/Branch =/c\Branch = $(cat ${BRANCH})/" ${MOUNTPOINT}/etc/pacman-mirrors.conf 2>$ERR
|
||||||
check_for_error "set target branch -> $(cat ${BRANCH})" "$?"
|
check_for_error "set target branch -> $(cat ${BRANCH})" $? install_base
|
||||||
else
|
else
|
||||||
sed -i "/Branch =/c$(grep "Branch =" /etc/pacman-mirrors.conf)" ${MOUNTPOINT}/etc/pacman-mirrors.conf 2>$ERR
|
sed -i "/Branch =/c$(grep "Branch =" /etc/pacman-mirrors.conf)" ${MOUNTPOINT}/etc/pacman-mirrors.conf 2>$ERR
|
||||||
check_for_error "use host branch \($(grep "Branch =" /etc/pacman-mirrors.conf)\)" "$?"
|
check_for_error "use host branch \($(grep "Branch =" /etc/pacman-mirrors.conf)\)" $? install_base
|
||||||
fi
|
fi
|
||||||
touch /tmp/.base_installed
|
touch /tmp/.base_installed
|
||||||
fi
|
fi
|
||||||
@ -335,7 +340,7 @@ uefi_bootloader() {
|
|||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
clear
|
clear
|
||||||
basestrap ${MOUNTPOINT} $(cat ${PACKAGES} | grep -v "systemd-boot") efibootmgr dosfstools 2>$ERR
|
basestrap ${MOUNTPOINT} $(cat ${PACKAGES} | grep -v "systemd-boot") efibootmgr dosfstools 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $? install_base_menu
|
||||||
|
|
||||||
case $(cat ${PACKAGES}) in
|
case $(cat ${PACKAGES}) in
|
||||||
"grub")
|
"grub")
|
||||||
@ -351,7 +356,7 @@ uefi_bootloader() {
|
|||||||
|
|
||||||
# Generate config file
|
# Generate config file
|
||||||
arch_chroot "grub-mkconfig -o /boot/grub/grub.cfg" 2>$ERR
|
arch_chroot "grub-mkconfig -o /boot/grub/grub.cfg" 2>$ERR
|
||||||
check_for_error "grub-mkconfig" "$?"
|
check_for_error "grub-mkconfig" $? install_base_menu
|
||||||
|
|
||||||
# Ask if user wishes to set Grub as the default bootloader and act accordingly
|
# Ask if user wishes to set Grub as the default bootloader and act accordingly
|
||||||
DIALOG " $_InstUefiBtTitle " --yesno \
|
DIALOG " $_InstUefiBtTitle " --yesno \
|
||||||
@ -360,14 +365,14 @@ uefi_bootloader() {
|
|||||||
if [[ $? -eq 0 ]]; then
|
if [[ $? -eq 0 ]]; then
|
||||||
arch_chroot "mkdir ${UEFI_MOUNT}/EFI/boot" 2>$ERR
|
arch_chroot "mkdir ${UEFI_MOUNT}/EFI/boot" 2>$ERR
|
||||||
arch_chroot "cp -r ${UEFI_MOUNT}/EFI/manjaro_grub/grubx64.efi ${UEFI_MOUNT}/EFI/boot/bootx64.efi" 2>$ERR
|
arch_chroot "cp -r ${UEFI_MOUNT}/EFI/manjaro_grub/grubx64.efi ${UEFI_MOUNT}/EFI/boot/bootx64.efi" 2>$ERR
|
||||||
check_for_error "Install GRUB" "$?"
|
check_for_error "Install GRUB" $? install_base_menu
|
||||||
DIALOG " $_InstUefiBtTitle " --infobox "\nGrub $_SetDefDoneBody" 0 0
|
DIALOG " $_InstUefiBtTitle " --infobox "\nGrub $_SetDefDoneBody" 0 0
|
||||||
sleep 2
|
sleep 2
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
"systemd-boot")
|
"systemd-boot")
|
||||||
arch_chroot "bootctl --path=${UEFI_MOUNT} install" 2>$ERR
|
arch_chroot "bootctl --path=${UEFI_MOUNT} install" 2>$ERR
|
||||||
check_for_error "systemd-boot" "$?"
|
check_for_error "systemd-boot" $? install_base_menu
|
||||||
|
|
||||||
# Deal with LVM Root
|
# Deal with LVM Root
|
||||||
[[ $(echo $ROOT_PART | grep "/dev/mapper/") != "" ]] && bl_root=$ROOT_PART \
|
[[ $(echo $ROOT_PART | grep "/dev/mapper/") != "" ]] && bl_root=$ROOT_PART \
|
||||||
@ -413,7 +418,7 @@ bios_bootloader() {
|
|||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
sed -i 's/+\|\"//g' ${PACKAGES}
|
sed -i 's/+\|\"//g' ${PACKAGES}
|
||||||
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $?
|
||||||
|
|
||||||
# If Grub, select device
|
# If Grub, select device
|
||||||
if [[ $(cat ${PACKAGES} | grep "grub") != "" ]]; then
|
if [[ $(cat ${PACKAGES} | grep "grub") != "" ]]; then
|
||||||
@ -437,7 +442,7 @@ bios_bootloader() {
|
|||||||
sed -e '/GRUB_SAVEDEFAULT/ s/^#*/#/' -i ${MOUNTPOINT}/etc/default/grub
|
sed -e '/GRUB_SAVEDEFAULT/ s/^#*/#/' -i ${MOUNTPOINT}/etc/default/grub
|
||||||
|
|
||||||
arch_chroot "grub-mkconfig -o /boot/grub/grub.cfg" 2>$ERR
|
arch_chroot "grub-mkconfig -o /boot/grub/grub.cfg" 2>$ERR
|
||||||
check_for_error "grub-mkconfig" "$?"
|
check_for_error "grub-mkconfig" $?
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# Syslinux
|
# Syslinux
|
||||||
@ -447,7 +452,7 @@ bios_bootloader() {
|
|||||||
# If an installation method has been chosen, run it
|
# If an installation method has been chosen, run it
|
||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
arch_chroot "$(cat ${PACKAGES})" 2>$ERR
|
arch_chroot "$(cat ${PACKAGES})" 2>$ERR
|
||||||
check_for_error "syslinux-install" "$?"
|
check_for_error "syslinux-install" $?
|
||||||
|
|
||||||
# Amend configuration file. First remove all existing entries, then input new ones.
|
# Amend configuration file. First remove all existing entries, then input new ones.
|
||||||
sed -i '/^LABEL.*$/,$d' ${MOUNTPOINT}/boot/syslinux/syslinux.cfg
|
sed -i '/^LABEL.*$/,$d' ${MOUNTPOINT}/boot/syslinux/syslinux.cfg
|
||||||
@ -526,7 +531,7 @@ install_wireless_packages() {
|
|||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
clear
|
clear
|
||||||
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $?
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -541,7 +546,7 @@ install_cups() {
|
|||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
clear
|
clear
|
||||||
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $?
|
||||||
|
|
||||||
if [[ $(cat ${PACKAGES} | grep "cups") != "" ]]; then
|
if [[ $(cat ${PACKAGES} | grep "cups") != "" ]]; then
|
||||||
DIALOG " $_InstNMMenuCups " --yesno "$_InstCupsQ" 0 0
|
DIALOG " $_InstNMMenuCups " --yesno "$_InstCupsQ" 0 0
|
||||||
@ -553,7 +558,7 @@ install_cups() {
|
|||||||
else
|
else
|
||||||
arch_chroot "systemctl enable org.cups.cupsd.service" 2>$ERR
|
arch_chroot "systemctl enable org.cups.cupsd.service" 2>$ERR
|
||||||
fi
|
fi
|
||||||
check_for_error "enable cups" "$?"
|
check_for_error "enable cups" $?
|
||||||
DIALOG " $_InstNMMenuCups " --infobox "\n$_Done!\n\n" 0 0
|
DIALOG " $_InstNMMenuCups " --infobox "\n$_Done!\n\n" 0 0
|
||||||
sleep 2
|
sleep 2
|
||||||
fi
|
fi
|
||||||
@ -641,7 +646,7 @@ install_xorg_input() {
|
|||||||
# If at least one package, install.
|
# If at least one package, install.
|
||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
basestrap ${MOUNTPOINT} $(cat ${PACKAGES}) 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# now copy across .xinitrc for all user accounts
|
# now copy across .xinitrc for all user accounts
|
||||||
|
@ -82,7 +82,7 @@ install_manjaro_de_wm() {
|
|||||||
|
|
||||||
# If something has been selected, install
|
# If something has been selected, install
|
||||||
if [[ $(cat /tmp/.desktop) != "" ]]; then
|
if [[ $(cat /tmp/.desktop) != "" ]]; then
|
||||||
check_for_error "manjaro_de_wm selected: $(cat /tmp/.desktop)" "$?"
|
check_for_error "manjaro_de_wm selected: $(cat /tmp/.desktop)"
|
||||||
clear
|
clear
|
||||||
# Source the iso-profile
|
# Source the iso-profile
|
||||||
profile=$(echo $PROFILES/*/$(cat /tmp/.desktop)/profile.conf)
|
profile=$(echo $PROFILES/*/$(cat /tmp/.desktop)/profile.conf)
|
||||||
|
@ -5,10 +5,9 @@ umount_partitions() {
|
|||||||
swapoff -a
|
swapoff -a
|
||||||
|
|
||||||
for i in ${MOUNTED[@]}; do
|
for i in ${MOUNTED[@]}; do
|
||||||
umount $i >/dev/null 2>$ERR
|
local err=$(umount $i >/dev/null 2>$ERR)
|
||||||
|
(( err !=0 )) && check_for_error "$FUNCNAME $i" $err
|
||||||
done
|
done
|
||||||
|
|
||||||
check_for_error "$FUNCNAME" "$?"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Revised to deal with partion sizes now being displayed to the user
|
# Revised to deal with partion sizes now being displayed to the user
|
||||||
@ -90,7 +89,7 @@ create_partitions() {
|
|||||||
# Install wipe where not already installed. Much faster than dd
|
# Install wipe where not already installed. Much faster than dd
|
||||||
if [[ ! -e /usr/bin/wipe ]]; then
|
if [[ ! -e /usr/bin/wipe ]]; then
|
||||||
pacman -Sy --noconfirm wipe 2>$ERR
|
pacman -Sy --noconfirm wipe 2>$ERR
|
||||||
check_for_error "install wipe" "$?"
|
check_for_error "install wipe" $?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
clear
|
clear
|
||||||
@ -98,7 +97,7 @@ create_partitions() {
|
|||||||
|
|
||||||
# Alternate dd command - requires pv to be installed
|
# Alternate dd command - requires pv to be installed
|
||||||
#dd if=/dev/zero | pv | dd of=${DEVICE} iflag=nocache oflag=direct bs=4096 2>$ERR
|
#dd if=/dev/zero | pv | dd of=${DEVICE} iflag=nocache oflag=direct bs=4096 2>$ERR
|
||||||
check_for_error "wipe -Ifre ${DEVICE}" "$?"
|
check_for_error "wipe -Ifre ${DEVICE}" $?
|
||||||
else
|
else
|
||||||
create_partitions
|
create_partitions
|
||||||
fi
|
fi
|
||||||
@ -115,17 +114,21 @@ create_partitions() {
|
|||||||
|
|
||||||
for del_part in $(tac /tmp/.del_parts); do
|
for del_part in $(tac /tmp/.del_parts); do
|
||||||
parted -s ${DEVICE} rm ${del_part} 2>$ERR
|
parted -s ${DEVICE} rm ${del_part} 2>$ERR
|
||||||
check_for_error "parted -s ${DEVICE} rm ${del_part}" "$?"
|
check_for_error "parted -s ${DEVICE} rm ${del_part}" $?
|
||||||
done
|
done
|
||||||
|
|
||||||
# Identify the partition table
|
# Identify the partition table
|
||||||
part_table=$(parted -s ${DEVICE} print | grep -i 'partition table' | awk '{print $3}' >/dev/null 2>&1)
|
part_table=$(parted -s ${DEVICE} print | grep -i 'partition table' | awk '{print $3}' >/dev/null 2>&1)
|
||||||
|
|
||||||
# Create partition table if one does not already exist
|
# Create partition table if one does not already exist
|
||||||
([[ $SYSTEM == "BIOS" ]] && [[ $part_table != "msdos" ]]) && parted -s ${DEVICE} mklabel msdos 2>$ERR
|
if [[ $SYSTEM == "BIOS" ]] && [[ $part_table != "msdos" ]] ; then
|
||||||
check_for_error "${DEVICE} mklabel msdos" "$?"
|
parted -s ${DEVICE} mklabel msdos 2>$ERR
|
||||||
([[ $SYSTEM == "UEFI" ]] && [[ $part_table != "gpt" ]]) && parted -s ${DEVICE} mklabel gpt 2>$ERR
|
check_for_error "${DEVICE} mklabel msdos" $?
|
||||||
check_for_error "${DEVICE} mklabel gpt" "$?"
|
fi
|
||||||
|
if [[ $SYSTEM == "UEFI" ]] && [[ $part_table != "gpt" ]] ; then
|
||||||
|
parted -s ${DEVICE} mklabel gpt 2>$ERR
|
||||||
|
check_for_error "${DEVICE} mklabel gpt" $?
|
||||||
|
fi
|
||||||
|
|
||||||
# Create partitions (same basic partitioning scheme for BIOS and UEFI)
|
# Create partitions (same basic partitioning scheme for BIOS and UEFI)
|
||||||
if [[ $SYSTEM == "BIOS" ]]; then
|
if [[ $SYSTEM == "BIOS" ]]; then
|
||||||
@ -135,9 +138,9 @@ create_partitions() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
parted -s ${DEVICE} set 1 boot on 2>$ERR
|
parted -s ${DEVICE} set 1 boot on 2>$ERR
|
||||||
check_for_error "set boot flag for ${DEVICE}" "$?"
|
check_for_error "set boot flag for ${DEVICE}" $?
|
||||||
parted -s ${DEVICE} mkpart primary ext3 513MiB 100% 2>$ERR
|
parted -s ${DEVICE} mkpart primary ext3 513MiB 100% 2>$ERR
|
||||||
check_for_error "parted -s ${DEVICE} mkpart primary ext3 513MiB 100%" "$?"
|
check_for_error "parted -s ${DEVICE} mkpart primary ext3 513MiB 100%" $?
|
||||||
|
|
||||||
# Show created partitions
|
# Show created partitions
|
||||||
lsblk ${DEVICE} -o NAME,TYPE,FSTYPE,SIZE > /tmp/.devlist
|
lsblk ${DEVICE} -o NAME,TYPE,FSTYPE,SIZE > /tmp/.devlist
|
||||||
@ -244,9 +247,9 @@ create_partitions() {
|
|||||||
# Warn about formatting!
|
# Warn about formatting!
|
||||||
if [[ $FILESYSTEM != $_FSSkip ]]; then
|
if [[ $FILESYSTEM != $_FSSkip ]]; then
|
||||||
DIALOG " $_FSTitle " --yesno "\n$_FSMount $FILESYSTEM\n\n! $_FSWarn1 $PARTITION $_FSWarn2 !\n\n" 0 0
|
DIALOG " $_FSTitle " --yesno "\n$_FSMount $FILESYSTEM\n\n! $_FSWarn1 $PARTITION $_FSWarn2 !\n\n" 0 0
|
||||||
if [[ $? -eq 0 ]]; then
|
if (( $? != 0 )); then
|
||||||
${FILESYSTEM} ${PARTITION} >/dev/null 2>$ERR
|
${FILESYSTEM} ${PARTITION} >/dev/null 2>$ERR
|
||||||
check_for_error "mount $PARTITION as $FILESYSTEM." "$?"
|
check_for_error "mount $PARTITION as $FILESYSTEM." $?
|
||||||
else
|
else
|
||||||
select_filesystem
|
select_filesystem
|
||||||
fi
|
fi
|
||||||
@ -557,10 +560,11 @@ luks_default() {
|
|||||||
DIALOG " $_LuksEncrypt " --infobox "$_PlsWaitBody" 0 0
|
DIALOG " $_LuksEncrypt " --infobox "$_PlsWaitBody" 0 0
|
||||||
sleep 2
|
sleep 2
|
||||||
echo $PASSWD | cryptsetup -q luksFormat ${PARTITION} 2>$ERR
|
echo $PASSWD | cryptsetup -q luksFormat ${PARTITION} 2>$ERR
|
||||||
|
check_for_error "$FUNCNAME -q" $?
|
||||||
|
|
||||||
# Now open the encrypted partition or LV
|
# Now open the encrypted partition or LV
|
||||||
echo $PASSWD | cryptsetup open ${PARTITION} ${LUKS_ROOT_NAME} 2>$ERR
|
echo $PASSWD | cryptsetup open ${PARTITION} ${LUKS_ROOT_NAME} 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME open" $?
|
||||||
}
|
}
|
||||||
|
|
||||||
luks_key_define() {
|
luks_key_define() {
|
||||||
|
@ -275,7 +275,7 @@ install_acc_menu() {
|
|||||||
# If something has been selected, install
|
# If something has been selected, install
|
||||||
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
if [[ $(cat ${PACKAGES}) != "" ]]; then
|
||||||
basestrap ${MOUNTPOINT} ${PACKAGES} 2>$ERR
|
basestrap ${MOUNTPOINT} ${PACKAGES} 2>$ERR
|
||||||
check_for_error "$FUNCNAME" "$?"
|
check_for_error "$FUNCNAME" $? install_multimedia_menu
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install_multimedia_menu
|
install_multimedia_menu
|
||||||
|
19
lib/util.sh
19
lib/util.sh
@ -245,11 +245,11 @@ select_language() {
|
|||||||
locale-gen >/dev/null 2>$ERR
|
locale-gen >/dev/null 2>$ERR
|
||||||
export LANG=${CURR_LOCALE}
|
export LANG=${CURR_LOCALE}
|
||||||
|
|
||||||
check_for_error "set LANG=${CURR_LOCALE}" "$?" select_language
|
check_for_error "set LANG=${CURR_LOCALE}" $? select_language
|
||||||
|
|
||||||
[[ $FONT != "" ]] && {
|
[[ $FONT != "" ]] && {
|
||||||
setfont $FONT
|
setfont $FONT
|
||||||
check_for_error "set font $FONT" "$?" select_language
|
check_for_error "set font $FONT" $? select_language
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -301,7 +301,7 @@ rank_mirrors() {
|
|||||||
clear
|
clear
|
||||||
[[ ! -z "$(cat ${BRANCH})" ]] && {
|
[[ ! -z "$(cat ${BRANCH})" ]] && {
|
||||||
pacman-mirrors -gib "$(cat ${BRANCH})"
|
pacman-mirrors -gib "$(cat ${BRANCH})"
|
||||||
check_for_error "$FUNCNAME branch $(cat ${BRANCH})" "$?" configure_mirrorlist
|
check_for_error "$FUNCNAME branch $(cat ${BRANCH})" $? configure_mirrorlist
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -316,14 +316,14 @@ configure_mirrorlist() {
|
|||||||
|
|
||||||
case $(cat ${ANSWER}) in
|
case $(cat ${ANSWER}) in
|
||||||
"1") rank_mirrors
|
"1") rank_mirrors
|
||||||
check_for_error "rank mirrors" "$?"
|
check_for_error "rank mirrors" $?
|
||||||
;;
|
;;
|
||||||
"2") nano /etc/pacman-mirrors.conf
|
"2") nano /etc/pacman-mirrors.conf
|
||||||
check_for_error "edit pacman-mirrors.conf" "$?"
|
check_for_error "edit pacman-mirrors.conf" 0
|
||||||
;;
|
;;
|
||||||
"3") nano /etc/pacman.conf
|
"3") nano /etc/pacman.conf
|
||||||
DIALOG " $_MirrorPacman " --yesno "$_MIrrorPacQ" 0 0 && COPY_PACCONF=1 || COPY_PACCONF=0
|
DIALOG " $_MirrorPacman " --yesno "$_MIrrorPacQ" 0 0 && COPY_PACCONF=1 || COPY_PACCONF=0
|
||||||
check_for_error "edit pacman.conf" 0
|
check_for_error "edit pacman.conf $COPY_PACCONF" 0
|
||||||
pacman -Syy
|
pacman -Syy
|
||||||
;;
|
;;
|
||||||
*) install_base_menu
|
*) install_base_menu
|
||||||
@ -362,13 +362,16 @@ check_base() {
|
|||||||
|
|
||||||
# install a pkg in the live session if not installed
|
# install a pkg in the live session if not installed
|
||||||
inst_needed() {
|
inst_needed() {
|
||||||
[[ ! $(pacman -Q $1 2>/dev/null) ]] && echo "Install needed pkg $1." && pacman -Sy --noconfirm $1
|
if [[ ! $(pacman -Q $1 2>/dev/null) ]] ; then
|
||||||
|
echo "Install needed pkg $1." && pacman -Sy --noconfirm $1
|
||||||
|
check_for_error "Install needed pkg $1." $?
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# install a pkg in the chroot if not installed
|
# install a pkg in the chroot if not installed
|
||||||
check_pkg() {
|
check_pkg() {
|
||||||
if ! arch_chroot "pacman -Q $1" ; then
|
if ! arch_chroot "pacman -Q $1" ; then
|
||||||
basestrap "$1" 2>$ERR
|
basestrap "$1" 2>$ERR
|
||||||
check_for_error "install missing pkg $1 to target." "$?"
|
check_for_error "install missing pkg $1 to target." $?
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user