mirror of
https://gitlab.com/prism7/archery.git
synced 2025-02-15 08:29:17 +01:00
Partition Manager: Added extended info on the supported partition types and mountpoints that the installer expects, for the installation to proceed.
This commit is contained in:
parent
2c543a2ffd
commit
891e052ec0
1 changed files with 21 additions and 14 deletions
35
Amelia.sh
35
Amelia.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Amelia Installer
|
# Amelia Installer
|
||||||
# Version: 5.2
|
# Version: 5.3
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
trap 's=$?; echo "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR
|
trap 's=$?; echo "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR
|
||||||
|
@ -2255,22 +2255,29 @@ disk_mngr (){
|
||||||
${magenta}###${nc}------------------------------------${magenta}[ ${bwhite}Partition Manager${nc} ${magenta}]${nc}------------------------------------${magenta}###${nc}
|
${magenta}###${nc}------------------------------------${magenta}[ ${bwhite}Partition Manager${nc} ${magenta}]${nc}------------------------------------${magenta}###${nc}
|
||||||
"
|
"
|
||||||
cgdsk_nmbr=" "
|
cgdsk_nmbr=" "
|
||||||
|
|
||||||
while [[ -n "${cgdsk_nmbr}" ]]; do
|
while [[ -n "${cgdsk_nmbr}" ]]; do
|
||||||
NC "
|
line3
|
||||||
|
NC " [ SUPPORTED PARTITION TYPES & MOUNTPOINTS: ]"
|
||||||
Discoverable Partitions GUID Codes:
|
line2
|
||||||
|
REDBG " ------------------------------------------------------------------------------------------- "
|
||||||
${cyan}EFI${nc} system partition > ${bwhite}ef00${nc}
|
REDBG " ### Linux /Root x86-64 Partition [ GUID Code: 8304 ] Mountpoint: / ### "
|
||||||
|
REDBG " ------------------------------------------------------------------------------------------- "
|
||||||
Linux x86-64 ${cyan}/ROOT${nc} > ${bwhite}8304${nc}
|
echo
|
||||||
|
BLUEBG " ------------------------------------------------------------------------------------------- "
|
||||||
Linux ${cyan}/HOME${nc} > ${bwhite}8302${nc}
|
BLUEBG " ### EFI System Partition [ GUID Code: ef00 ] Mountpoint: /boot ### "
|
||||||
|
BLUEBG " ------------------------------------------------------------------------------------------- "
|
||||||
Linux ${cyan}/SWAP${nc} > ${bwhite}8200${nc}
|
echo
|
||||||
"
|
GREENBG " ------------------------------------------------------------------------------------------- "
|
||||||
|
GREENBG " ### Linux /Home Partition [ GUID Code: 8302 ] Mountpoint: /home ### "
|
||||||
|
GREENBG " ------------------------------------------------------------------------------------------- "
|
||||||
|
echo
|
||||||
|
YELLOWBG " ------------------------------------------------------------------------------------------- "
|
||||||
|
YELLOWBG " ### Linux Swap Partition [ GUID Code: 8200 ] Mountpoint: /swap ### "
|
||||||
|
YELLOWBG " ------------------------------------------------------------------------------------------- "
|
||||||
YELLOW "
|
YELLOW "
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
> Select a disk to Manage: "
|
> Select a disk to Manage: "
|
||||||
NC "
|
NC "
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue