Dualbooting: Difference between revisions
Prabuanand (talk | contribs) (Refactored the code by referring to other wiki pages) |
Prabuanand (talk | contribs) (rephrased the sentence) |
||
Line 26: | Line 26: | ||
{{Cmd|# mount /dev/esp /mnt/boot/efi}} | {{Cmd|# mount /dev/esp /mnt/boot/efi}} | ||
=== | === Install Alpine Linux === | ||
Follow the [[Setting_up_disks_manually#Custom_Layout| | Follow the [[Setting_up_disks_manually#Custom_Layout|custom Layout based Installation ]] to install Alpine Linux on the chosen partition. | ||
{{Cmd|# setup-disk -m sys /mnt}} | {{Cmd|# setup-disk -m sys /mnt}} | ||
Your dual boot installation can be considered complete. You be should be able to dual boot once you [[Installation#Reboot|reboot]]. Refer [[#Configure_bootloader|configure bootloader]] section, if you would like to make changes. | Your dual boot installation can be considered complete. You be should be able to dual boot once you [[Installation#Reboot|reboot]]. Refer [[#Configure_bootloader|configure bootloader]] section, if you would like to make additional changes. | ||
<!-- | <!-- |
Revision as of 15:10, 17 September 2024
It's assumed you have a box where you already run another operating system, and would like to be able to dual boot either the installed system or Alpine Linux.
Complete the basic setup
Follow the Installation steps until the base configuration. i.e set up Alpine without installing to a disk.
Identify and mount partition
To Dual boot Alpine Linux, it needs a separate partition. If you don't have a partition refer Manual partitioning to create and format it.
.
Follow the Hard Disk Installation using custom Layout to mount the chosen partition.
# mount /dev/sdXY /mnt
If you're using EFI, pay special attention to ESP partition. ESP partition is shared between Windows, Mac OS and most other operating systems. Make sure you create a mount point /mnt/boot/efi
.
# mkdir -p /mnt/boot/efi
Find the correct partition name for esp
partition and mount it on the above mount point :
# mount /dev/esp /mnt/boot/efi
Install Alpine Linux
Follow the custom Layout based Installation to install Alpine Linux on the chosen partition.
# setup-disk -m sys /mnt
Your dual boot installation can be considered complete. You be should be able to dual boot once you reboot. Refer configure bootloader section, if you would like to make additional changes.
Configure bootloader
There are different bootloaders to get a boot menu that allows selecting the operating system to boot. It is easiest to simply install and use rEFInd boot manager for dual boot between Alpine Linux and Windows.
Otherwise, one may adjust the bootloader that has already been installed by the other operating system.
Dual/Multiboot with Linux
The following example is given to give you some ideas for adjusting grub to boot Alpine.
Reboot your system (start Ubuntu).
Start a 'terminal' (ALT-F2 + "terminal" + [Run])
Take notes of the UUID of the partition you are planning to use:
# blkid /dev/sdXY
Start editing the grub2 configuration
# gedit /etc/grub.d/40_custom
I edited the file to look something like this:
Contents of /etc/grub.d/40_custom
Finally the configuration changes need to be applied to the grub2 bootloader:
update-grub
Now it's time to test. Reboot your box.
Dualboot with Windows
For Windows partitions to be detected with grub, you need `os-prober` and `grub-mount` installed at the time grub-mkconfig runs.
To upgrade the grub installation, the efi directory must be mounted in /boot/efi/. To know in which partition the efi is, we must examine the partition table, so if your main disk is /dev/sda then.
# fdisk -l /dev/sda
Device Start End Sectors Size Type /dev/sda1 2048 309247 307200 150M EFI System
# mkdir /boot/efi
# mount /dev/sda1 /boot/efi/
# apk add efibootmgr
(If your system supports UEFI. Most PC's from 2010, support UEFI)
Install grub
# grub-install –root-directory=/mnt
After grub re-installation, unmount efi partition:
# umount /boot/efi/