Update the para-install warning

This commit is contained in:
Suikan 2021-07-01 07:55:02 +09:00
parent 03299295a4
commit 16bec48bdb
2 changed files with 41 additions and 24 deletions

View file

@ -228,17 +228,26 @@ The pre-install process is done. We are ready to install the Linux to the
target storage device. By pressing return key, Ubuntu Ubiquity installer target storage device. By pressing return key, Ubuntu Ubiquity installer
starts. starts.
Please pay attention to the partition mapping configuration. In this Please pay attention to the partition/logical vokume mapping configuration.
installation, you have to map the previously created partitions/logical In this installation, you have to map the previously created partitions/logical
volumes to the appropriate directory of the target system. volumes to the appropriate directories of the target system as followings :
Host Volume | Target Directory | Comment HEREDOC
-----------------------|------------------|-----------------------------------
/dev/sda1 | /boot/efi | Only EFI system needs. # In the EFI system, add this mapping
/dev/mapper/vg1-ubuntu | / | Host volume name is up to your if [ ${ISEFI} -eq 1 ] ; then
| | configuration parameter. echo "/boot/efi : ${DEV}${EFIPARTITION}"
/dev/mapper/swap | swap | Only the first distribution fi
| | requires this mapping.
# Root volume mapping
echo "/ : /dev/mapper/${VGNAME}-${LVROOTNAME}"
# In case of erased storage, add this mapping
if [ ${ERASEALL} -eq 1 ] ; then
echo "swap : /dev/mapper/${VGNAME}-${LVSWAPNAME}"
fi
cat <<HEREDOC
************************ CAUTION! CAUTION! CAUTION! **************************** ************************ CAUTION! CAUTION! CAUTION! ****************************

View file

@ -235,27 +235,35 @@ sed -i "s#loglevel=4#loglevel=4 rd.auto=1 cryptdevice=/dev/sda2:${LUKS_NAME} roo
cat <<HEREDOC cat <<HEREDOC
****************************************************************************** ******************************************************************************
The pre-install process is done. We are ready to install the Linux to the The pre-install process is done. We are ready to install the Linux to the
target storage device. By pressing return key, void-installer target storage device. By pressing return key, Ubuntu Ubiquity installer
starts. starts.
Please pay attention to the partition mapping configuration. In this Please pay attention to the partition/logical volume mapping configuration.
installation, you have to map the previously created partitions/logical In this installation, you have to map the previously created partitions/logical
volumes to the appropriate directory of the target system. volumes to the appropriate directories of the target system as followings :
Host Volume | Target Directory | Comment HEREDOC
-----------------------|------------------|-----------------------------------
/dev/sda1 | /boot/efi | Only EFI system needs. # In the EFI system, add this mapping
/dev/mapper/vg1-ubuntu | / | Host volume name is up to your if [ ${ISEFI} -eq 1 ] ; then
| | configuration parameter. echo "/boot/efi : ${DEV}${EFIPARTITION}"
/dev/mapper/swap | swap | Only the first distribution fi
| | requires this mapping.
# Root volume mapping
echo "/ : /dev/mapper/${VGNAME}-${LVROOTNAME}"
# In case of erased storage, add this mapping
if [ ${ERASEALL} -eq 1 ] ; then
echo "swap : /dev/mapper/${VGNAME}-${LVSWAPNAME}"
fi
cat <<HEREDOC
************************ CAUTION! CAUTION! CAUTION! **************************** ************************ CAUTION! CAUTION! CAUTION! ****************************
Make sure to click "NO", when the void-installer ask you to reboot at Make sure to click "Continue Testing", at the end of the Ubiquity installer.
the end of installation. Just exit the void-installer wihout reboot.
Type return key to start void-installer. Type return key to start Ubiquity.
HEREDOC HEREDOC
# waitfor a console input # waitfor a console input