In this guide, you will learn how to Dual boot Arch Linux with Windows 10 on UEFI system. This guide assumes that you already have Windows 10 installed on your system.
Prerequisites
Before you begin configuring the dual-boot setup, ensure that the following requirements are met:
- A bootable installation medium of Arch Linux (Either USB or DVD). To download the latest Arch Linux ISO, proceed to the official Arch Linux download page. Once you have downloaded the ISO image, grab an 8GB USB drive and make it bootable using Rufus tool or any other application that can create a bootable USB drive.
- A fast and stable internet connection for downloading and installing software packages.
Step 1) Create a separate partition for installation of Arch Linux
For the dual boot setup to work, we need to create a separate partition on the hard drive on which Arch Linux will be installed. To do so, head over to the disk management utility by pressing Windows Key + R. In the dialogue box, type diskmgmt.msc and hit ENTER.
This launches the disk management utility displaying the various disk partitions on your hard drive. We are going to create an unallocated partition by shrinking the C drive. If you have a bigger partition than the C drive, feel free to use it for creating the separate partition,
So, we are going to right-click on drive C and select the ‘Shrink Volume’ option as shown
On the pop-up dialogue box that appears, we are going to specify the amount to shrink as shown. This is the amount that will be designated for the installation of Arch Linux. In our example, we have shrunk 20 GB of hard disk space will serve as the unallocated space.
Once you are satisfied, click on the ‘Shrink’ button.
Your unallocated space will be indicated as shown below. In our case, we have set aside approximately 20G for the installation of Arch Linux.
With the unallocated partition in place, plug in your bootable USB and reboot your PC.
Step 2) Configure BIOS to boot from bootable medium
Before you begin with the installation process, it’s prudent to set the boot priority in the BIOS to select your bootable medium as the most preferred option. Depending on your vendor, you can press the Esc, or F10 key to enter the BIOS and navigate to the boot priority Menu.
Also note that we are using the UEFI mode for installation.
Once you have selected your boot medium, press the ESC button to continue with the booting process.
Step 3) Begin the installation of Arch Linux
On the bootup screen, you will be presented with options as shown below. Select the first option – Arch Linux install medium (x86_64, UEFI) and hit ENTER.
This initialize Arch Linux as evidenced by the boot messages on the screen.
After a few seconds, this ushers you to the prompt as shown below.
To confirm that you have EFI support, run the command:
# ls /sys/firmware/efi/efivars
You should get some entries on the screen as shown. If nothing is listed on your screen, then it means you are using MBR and this guide won’t work for you in configuring up a dual boot setup.
As you begin the installation, you might want to ensure that you have internet connectivity. Internet connectivity is crucial in setting time and date.
You can ping Google’s DNS as shown:
# ping 8.8.8.8 -c 4
You should get a positive reply as shown.
Step 4) Update time and date
Next, we are going to update the system time and date using the timedatectl command as shown.
# timedatectl set-ntp true
You can thereafter confirm the time and date using the command
# timedatectl status
Step 5) Create & format Linux partitions
Next, we are going to partition our hard drive and create some Linux partitions. An easy way of doing this is using the cfdisk utility. Run the command:
# cfdisk
This displays all the partitions available including Windows partitions.
As you can see, we have some free space of 19.5G that we created earlier in step 1 from shrinking drive C on the Windows side. Using this partition, we shall create the following Linux partitions :
- Root partition / 12G
- swap partition 4G
To achieve this, we will navigate to the free space with 19.5G just after /dev/sda3 volume and hit ENTER. We will then specify the volume as 12G for the root partition as shown below. Then hit ENTER.
The root partition will be created with the Linux filesystem type as shown.
Next, we will create another partition for swap. Using the same method, we will proceed to the remaining free partition of 7G and select the ‘New’ option.
Specify the partition size as 4G
Since this will be our swap partition, we need to go the extra step and modify the partition type. Therefore, we will select the ‘type’ option and hit ENTER.
In the list that appears, select ‘Linux Swap’ and hit ENTER.
At this point, both the root and Linux swap partitions are created as seen from the partition table below.
To save the partitions, select the ‘Write’ option and hit ENTER.
When prompted if you want to write the partition to disk, simply type ‘yes’ and hit ENTER.
To exit cfdisk utility, select the ‘Quit’ option and hit ENTER.
Step 6) Format and mount the partitions
For the partitions to become usable and available for use, we need to format them and later mount them.
To format the root partition, run the command:
# mkfs.ext4 /dev/sda5
For swap partition, use the command:
# mkswap /dev/sda6
Then enable swap using the swapon command shown:
# swapon /dev/sda6
Next, mount the root partition to the /mnt directory
# mount /dev/sda5 /mnt
Additionally, we are going to create a directory for the EFI partition on which we will mount the Windows EFI system which , in our case is located on the /dev/sda1 partition.
# mkdir /mnt/efi
Then mount the EFI partition on the EFI mount point.
# mount /dev/sda1 /mnt/efi
Step 7) Install base system and other required Linux firmware packages
Next, we are going to install the central packages for our Linux system including the base and Linux-firmware packages.
# pacstrap /mnt base linux linux-firmware
This is going to take quite some time. At this point, you can take a much-deserved break and head out for a stroll and grab some coffee. When the installation is successful, you should get the following output.
Step Generate fstab file
The next step will be to generate the fstab file on the /mnt directory as follows.
# genfstab -U /mnt >> /mnt/etc/fstab
Step 9) Setup timezone
After generating the ftab file, navigate to the newly created root filesystem
# arch-chroot /mnt
You can verify that you are in the root filesystem using the command as shown.
# ls
Time zone information is found in the /usr/share/zoneinfo/ directory. To set your timezone, create a symbolic link to the /etc/localtime
Path.
# ln -sf /usr/share/zoneinfo/US/Pacific /etc/localtime
Next, sync the hardware clock using the command:
# hwclock --systohc
Step 10) Set up locale
The locale determines the system language, currency format, numbering and date on your system. This information is contained in the /etc/locale.gen file. So, open the file using the vim editor.
# vim /etc/locale.gen
NOTE: To install the vim editor, use the pacman command as follows:
# pacman -Sy vim
Once you have accessed the file, scroll and uncomment your preferred locale. In this case, we have decided to go with en_US.UTF-8 UTF-8
Save and exit the file. Next generate the locale configuration using the command.
# locale-gen
Next, create a new locale configuration file and save the locale as shown.
# echo "LANG=EN_US.UTF-8" > /etc/locale.conf
Step 11) Set up hostname
Next, we are going to configure the hostname of our Arch System. First, create a new file and specify the hostname as shown.
# echo linuxtechi > /etc/hostname
Afterwards, modify the /etc/hosts file as follows.
# echo "127.0.1.1 linuxtechi" >> /etc/hosts
Step 12) Install netctl Network Manager
To use the internet once the installation is complete and upon a reboot, we need to install a network manager. In this example we wil install the netctl network manager as follows
# pacman -Sy netctl
During the installation some optional dependencies for netctl are listed. We are going to install the following dependencies. These are:
- dhcpcd – For DHCP support
- wpa-supplicant – For wireless networking
- ifplugd – For wired connections networking
These dependencies will help you set up networking without a problem when you next boot in to Arch Linux.
To install the optional dependencies, run the command below:
# pacman -Sy dhcpcd wpa-supplicant ifplugd
Step 13) Create a regular user
Next, we will create a regular user called linuxtechi and place him in the wheel group as follows.
# useradd -G wheel -m linuxtechi
The next step will be to assign a password to the user.
# passwd linuxtechi
Step 14) Install GRUB bootloader
We are getting close to the finish line. In this step, we will install the grub bootloader to enable us boot into our Arch Linux system upon a reboot.
We will install the grub bootloader package alongside the efi boot manager package since we are using the UEFI mode.
# pacman -S grub efibootmgr
Next, install the os-prober package which will enable Arch Linux to detect the Windows operating system.
# pacman -S os-prober
Then install grub on the EFI directory as shown.
# grub-install --target=x86_64-efi --efi-directory=/efi --bootloader-id=GRUB
And install a grub configuration file as shown.
# grub-mkconfig -o /boot/grub/grub.cfg
The last line is an indication that Arch has detected the presence of Windows Boot manager on /dev/sda1 partition. Perfect!
The finally, set a password for the root user as shown.
# passwd
Then exit and reboot your system.
# exit # reboot
Step 15) Boot into Arch Linux
When booting, the GRUB bootloader will display various options including booting into Arch Linux, which is the first option, and also booting into Windows which is the last option in my case.
Log in as your regular user as shown
Step 16) Post Installation tasks
One of the things I noted when I logged in is that I do not have any internet connection. This is an issue caused by the default dhcp profile settings which need to be modified to accommodate the network interface attached to the Arch Linux system.
To find the interfaces attached run the command:
$ ip link
The output confirms that our network interface is enp0s3
We need to modify the ethernet-dhcp file in the /etc/netctl/examples/ path and edit out network interface.
But first, lets copy the file to the /etc/netctl directory.
Switch to the root user
# su
Copy the ethernet-dhcp file to the /etc/netctl directory.
# cp /etc/netctl/examples/ethernet-dhcp /etc/netctl/custom-dhcp-profile
Next, navigate to the /etc/netctl directory.
# cd /etc/netctl
Use the vim editor to edit the file.
# vim custom-dhcp-profile
The interface attribute is set to eth0.
However, as we saw earlier, our network interface is enp0s3. Therefore, modify it to enp0s3. Additionally, uncomment the line starting with the DHCPClient parameter.
DHCPClient=dhcpcd
This enables the system to accept IP addresses using the dhcp service.
Save and exit the configuration file. Next, enable the custom dhcp profile.
# netctl enable custom-dhcp-profile
And finally enable the dhcp service.
# systemctl enable dhcpcd.service
Your interface should now pick an IP address from the router and you should have an internet connection.
You can install an X windows system as shown,
$ sudo pacman -S xorg xorg-server
Then install a display manager. For example, to install GNOME, run:
$ sudo pacman -S gnome
Then start and enable gdm service
$ sudo systemctl start gdm $ sudo systemctl enable gdm
This brings us to the end of this lengthy topic. Hopefully, you are now in a position to Dual boot Arch Linux with Windows on UEFI system.
Read Also : How to Create and Configure Sudo User on Arch Linux
This is an article detailing different methods of Arch/Windows coexistence.
Important information
Windows UEFI vs BIOS limitations
Microsoft imposes limitations on which firmware boot mode and partitioning style can be supported based on the version of Windows used:
Note: The following points only list configurations supported by the Windows Setup even though Windows itself may still work on these unsupported configurations. A good example of this is Windows 11 which still works on a BIOS/MBR configuration once the Windows Setup check is bypassed.
- Windows 8/8.1 and 10 x86 32-bit support booting in IA32 UEFI mode from GPT disk only, OR in BIOS mode from MBR disk only. They do not support x86_64 UEFI boot from GPT/MBR disk, x86_64 UEFI boot from MBR disk, or BIOS boot from GPT disk. On market, the only systems known to ship with IA32 (U)EFI are some old Intel Macs (pre-2010 models?) and Intel Atom System-on-Chip (Clover trail and Bay Trail) Windows Tablets, which boot ONLY in IA32 UEFI mode and ONLY from GPT disk.
- Windows 8/8.1 and 10 x86_64 versions support booting in x86_64 UEFI mode from GPT disk only, OR in BIOS mode from MBR disk only. They do not support IA32 UEFI boot, x86_64 UEFI boot from MBR disk, or BIOS boot from GPT disk.
- Windows 11 only supports x86_64 and a boot in UEFI mode from GPT disk.
In case of pre-installed Systems:
- All systems pre-installed with Windows XP, Vista or 7 32-bit, irrespective of Service Pack level, bitness, edition (SKU) or presence of UEFI support in firmware, boot in BIOS/MBR mode by default.
- MOST of the systems pre-installed with Windows 7 x86_64, irrespective of Service Pack level, bitness or edition (SKU), boot in BIOS/MBR mode by default. Very few late systems pre-installed with Windows 7 are known to boot in x86_64 UEFI/GPT mode by default.
- ALL systems pre-installed with Windows 8/8.1, 10 and 11 boot in UEFI/GPT mode. Up to Windows 10, the firmware bitness matches the bitness of Windows, ie. x86_64 Windows boot in x86_64 UEFI mode and 32-bit Windows boot in IA32 UEFI mode.
The best way to detect the boot mode of Windows is to do the following[1]:
- Boot into Windows
- Press
Win+R
keys to start the Run dialog - In the Run dialog type
msinfo32.exe
and press Enter - In the System Information windows, select System Summary on the left and check the value of BIOS mode item on the right
- If the value is
UEFI
, Windows boots in UEFI/GPT mode. If the value isLegacy
, Windows boots in BIOS/MBR mode.
In general, Windows forces type of partitioning depending on the firmware mode used, i.e. if Windows is booted in UEFI mode, it can be installed only to a GPT disk. If Windows is booted in Legacy BIOS mode, it can be installed only to an MBR disk. This is a limitation enforced by Windows Setup, and as of April 2014 there is no officially (Microsoft) supported way of installing Windows in UEFI/MBR or BIOS/GPT configuration. Thus Windows only supports either UEFI/GPT boot or BIOS/MBR configuration.
Tip: Windows 10 version 1703 and newer supports converting from BIOS/MBR to UEFI/GPT using MBR2GPT.EXE.
Such a limitation is not enforced by the Linux kernel, but can depend on which boot loader is used and/or how the boot loader is configured. The Windows limitation should be considered if the user wishes to boot Windows and Linux from the same disk, since installation procedure of boot loader depends on the firmware type and disk partitioning configuration. In case where Windows and Linux dual boot from the same disk, it is advisable to follow the method used by Windows, ie. either go for UEFI/GPT boot or BIOS/MBR boot. See https://support.microsoft.com/kb/2581408 for more information.
Install media limitations
Intel Atom System-on-Chip Tablets (Clover trail and Bay Trail) provide only IA32 UEFI firmware without Legacy BIOS (CSM) support (unlike most of the x86_64 UEFI systems), due to Microsoft Connected Standby Guidelines for OEMs. Due to lack of Legacy BIOS support in these systems, and the lack of 32-bit UEFI boot in Arch Official Install ISO (FS#53182), the official install media cannot boot on these systems. See Unified Extensible Firmware Interface#UEFI firmware bitness for more information and available workarounds.
Bootloader UEFI vs BIOS limitations
Most of the linux bootloaders installed for one firmware type cannot launch or chainload bootloaders of the other firmware type. That is, if Arch is installed in UEFI/GPT or UEFI/MBR mode in one disk and Windows is installed in BIOS/MBR mode in another disk, the UEFI bootloader used by Arch cannot chainload the BIOS installed Windows in the other disk. Similarly if Arch is installed in BIOS/MBR or BIOS/GPT mode in one disk and Windows is installed in UEFI/GPT in another disk , the BIOS bootloader used by Arch cannot chainload UEFI installed Windows in the other disk.
The only exceptions to this are GRUB in Apple Macs in which GRUB in UEFI mode can boot BIOS installed OS via appleloader
command (does not work in non-Apple systems), and rEFInd which technically supports booting legacy BIOS OS from UEFI systems, but does not always work in non-Apple UEFI systems as per its author Rod Smith.
However if Arch is installed in BIOS/GPT in one disk and Windows is installed in BIOS/MBR mode in another disk, then the BIOS boot loader used by Arch CAN boot the Windows in the other disk, if the boot loader itself has the ability to chainload from another disk.
Note: To dual-boot with Windows on same disk, Arch should follow the same firmware boot mode and partitioning combination used by the Windows installation.
Windows Setup creates a 100 MiB EFI system partition (except for Advanced Format 4K native drives where it creates a 300 MiB ESP), so multiple kernel usage is limited. Workarounds include:
- Mount ESP to
/efi
and use a boot loader that has file system drivers and is capable of launching kernels that reside on other partitions. - Expand the EFI system partition, typically either by decreasing the Recovery partition size or moving the Windows partition (UUIDs will change).
- Backup and delete unneeded fonts in
esp/EFI/Microsoft/Boot/Fonts/
[2]. - Backup and delete unneeded language directories in
esp/EFI/Microsoft/Boot/
(e.g. to only keepen-US
). - Use a higher, but slower, compression for the initramfs images. E.g.
COMPRESSION="xz"
withCOMPRESSION_OPTIONS=(-9e)
.
UEFI Secure Boot
All pre-installed Windows 8/8.1, 10 and 11 systems by default boot in UEFI/GPT mode and have UEFI Secure Boot enabled by default. This is mandated by Microsoft for all OEM pre-installed systems.
Arch Linux install media does not support Secure Boot yet. See Secure Boot#Booting an installation medium.
It is advisable to disable UEFI Secure Boot in the firmware setup manually before attempting to boot Arch Linux. Windows 8/8.1, 10 and 11 SHOULD continue to boot fine even if Secure boot is disabled. The only issue with regards to disabling UEFI Secure Boot support is that it requires physical access to the system to disable secure boot option in the firmware setup, as Microsoft has explicitly forbidden presence of any method to remotely or programmatically (from within OS) disable secure boot in all Windows 8/8.1 and above pre-installed systems
Note:
- If Windows used Bitlocker and stored the key in the TPM for automatic unlock on boot, it fails to boot when Secure Boot is disabled, instead showing a Bitlocker recovery screen. This is not permanent however, and you can easily boot Windows again by simply re-enabling Secure Boot.
- On Windows 11, disabling Secure Boot after install will not cause problems as long as TPM is working normally.
Fast Startup and hibernation
There are two OSs that can be hibernated, you can hibernate Windows and boot Linux (or another OS), or you can hibernate Linux and boot Windows, or hibernate both OSs.
Warning: Data loss can occur if Windows hibernates and you dual boot into another OS and make changes to files on a filesystem (such as NTFS) that can be read and written to by Windows and Linux, and that has been mounted by Windows [3]. Similarly, data loss can occur if Linux hibernates, and you dual boot into another OS etc. Windows may hibernate even when you press shutdown, see section #Windows settings.
For the same reason, if you share one EFI system partition between Windows and Linux, then the EFI system partition may be damaged if you hibernate (or shutdown with Fast Startup enabled) Windows and then start Linux, or hibernate Linux and then start Windows.
ntfs-3g added a safe-guard to prevent read-write mounting of hibernated NTFS filesystems, but the NTFS driver within the Linux kernel has no such safeguard.
Windows cannot read filesystems such as ext4 by default that are commonly used for Linux. These filesystems do not have to be considered, unless you install a Windows driver for them.
Windows settings
Fast Startup is a feature in Windows 8 and above that hibernates the computer rather than actually shutting it down to speed up boot times.
There are multiple options regarding the Windows settings for Fast Startup and hibernation that are covered in the next sections.
- disable Fast Startup and disable hibernation
- disable Fast Startup and enable hibernation
- enable Fast Startup and enable hibernation
The procedure of disabling Fast Startup is described in the tutorials for Windows 8, Windows 10 and Windows 11. In any case if you disable a setting, make sure to disable the setting and then shut down Windows, before installing Linux; note that rebooting is not sufficient.
Disable Fast Startup and disable hibernation
This is the safest option, and recommended if you are unsure about the issue, as it requires the least amount of user awareness when rebooting from one OS into the other. You may share the same EFI system partition between Windows and Linux.
Disable Fast Startup and enable hibernation
This option requires user awareness when rebooting from one OS into the other.
If you want to start Linux while Windows is hibernated, which is a common use case, then
- you must use a separate EFI system partition (ESP) for Windows and Linux, and ensure that Windows does not mount the ESP used for Linux. As there can only be one ESP per drive, the ESP used for Linux must be located on a separate drive than the ESP used for Windows. In this case Windows and Linux can still be installed on the same drive in different partitions, if you place the ESP used by linux on another drive than the Linux root partition.
- you can not read-write mount any filesystem in Linux, that is mounted by Windows while Windows is hibernated. You should be extremely careful about this, and also consider Automount behaviour.
- If you shut down Windows fully, rather than hibernating, then you can read-write mount the filesystem.
Note: You can avoid this issue for a drive by mounting a drive as an external drive in Windows and ejecting the drive in Windows before hibernating.
Enable Fast Startup and enable hibernation
The same considerations apply as in case «Disable Fast Startup and enable hibernation», but since Windows can not be shut down fully, only hibernated, you can never read-write mount any filesystem that was mounted by Windows while Windows is hibernated.
Note: Windows updates may re-enable Fast Startup, as reported in [4].
Windows filenames limitations
Windows is limited to filepaths being shorter than 260 characters.
Windows also puts certain characters off limits in filenames for reasons that run all the way back to DOS:
<
(less than)>
(greater than):
(colon)"
(double quote)/
(forward slash)\
(backslash)|
(vertical bar or pipe)?
(question mark)*
(asterisk)
These are limitations of Windows and not NTFS: any other OS using the NTFS partition will be fine. Windows will fail to detect these files and running chkdsk
will most likely cause them to be deleted. This can lead to potential data-loss.
NTFS-3G applies Windows restrictions to new file names through the windows_names
option: ntfs-3g(8) § Windows_Filename_Compatibility (see fstab).
Installation
The recommended way to setup a Linux/Windows dual booting system is to first install Windows, only using part of the disk for its partitions. When you have finished the Windows setup, boot into the Linux install environment where you can create and resize partitions for Linux while leaving the existing Windows partitions untouched. The Windows installation will create the EFI system partition which can be used by your Linux boot loader.
Windows before Linux
BIOS systems
Using a Linux boot loader
You may use any multi-boot supporting BIOS boot loader.
Using the Windows Vista/7/8/8.1 boot loader
This section explains how to : install a linux bootloader on a partition instead of the MBR ; copy this bootloader to a partition readable by the windows bootloader ; use the windows bootloader to start said copy of the linux bootloader.
Note: Some documents state that the partition being loaded by the Windows boot loader must be a primary partition but usage of an extended partition has been documented as working.
- When installing the boot loader, install it on your
/boot
partition rather than the MBR. For details on doing this with GRUB, see GRUB/Tips and tricks#Install to partition or partitionless disk, for Syslinux, see the note at Syslinux#Manual install, for LILO see LILO#Install to partition or partitionless disk.
- Make a copy of the VBR:
dd if=/dev/disk of=/path/to/linux.bin bs=512 count=1
where
/dev/disk
is the path of the partition on which your bootloader is installed and/path/to/
is the mounted filesystem on which you want the copy to be readable by the Windows bootloader.
- On Windows, the linux.bin file should now be accessible. Run cmd with administrator privileges (navigate to Start > All Programs > Accessories, right-click on Command Prompt and select Run as administrator):
bcdedit /create /d "Linux" /application BOOTSECTOR
BCDEdit will return a UUID for this entry. This will be refered to as
UUID
in the remaining steps.bcdedit /set UUID device partition=c: (or the drive letter on which linux.bin is kept) bcdedit /set UUID path \path\to\linux.bin bcdedit /displayorder UUID /addlast bcdedit /timeout 30
On reboot, both Windows and Linux should now show up in the Windows bootloader.
Note: On some hardware, the Windows boot loader is used to start another OS with a second power button (e.g. Dell Precision M4500).
For more details, see https://www.iceflatline.com/2009/09/how-to-dual-boot-windows-7-and-linux-using-bcdedit/
UEFI systems
If you already have Windows installed, it will already have created some partitions on a GPT-formatted disk:
- a Windows Recovery Environment partition, generally of size 499 MiB, containing the files required to boot Windows (i.e. the equivalent of Linux’s
/boot
), - an EFI system partition with a FAT32 filesystem,
- a Microsoft Reserved Partition, generally of size 128 MiB,
- a Microsoft basic data partition with a NTFS filesystem, which corresponds to
C:
, - potentially system recovery and backup partitions and/or secondary data partitions (corresponding often to
D:
and above).
Using the Disk Management utility in Windows, check how the partitions are labelled and which type gets reported. This will help you understand which partitions are essential to Windows, and which others you might repurpose. The Windows Disk Management utility can also be used to shrink Windows (NTFS) partitions to free up disk space for additional partitions for Linux.
Warning: The first 4 partitions in the above list are essential, do not delete them.
You can then proceed with partitioning, depending on your needs. The boot loader needs to support chainloading other EFI applications to dual boot Windows and Linux. An additional EFI system partition should not be created, as it may prevent Windows from booting.
Note: It only appears when Linux is installed on the second hard disk and a new EFI system partition is created on the second hard disk.
Simply mount the existing partition.
Tip:
- rEFInd and systemd-boot will autodetect Windows Boot Manager (
\EFI\Microsoft\Boot\bootmgfw.efi
) and show it in their boot menu automatically. For GRUB follow either GRUB#Windows installed in UEFI/GPT mode to add boot menu entry manually or GRUB#Detecting other operating systems for a generated configuration file. - To save space on the EFI system partition, especially for multiple kernels, increase the initramfs compression.
Computers that come with newer versions of Windows often have Secure Boot enabled. You will need to take extra steps to either disable Secure Boot or to make your installation media compatible with secure boot (see above and in the linked page).
Linux before Windows
Even though the recommended way to setup a Linux/Windows dual booting system is to first install Windows, it can be done the other way around. In contrast to installing Windows before Linux, you will have to set aside a partition for Windows, say 40GB or larger, in advance. Or have some unpartitioned disk space, or create and resize partitions for Windows from within the Linux installation, before launching the Windows installation.
UEFI firmware
Windows will use the already existing EFI system partition. In contrast to what was stated earlier, it is unclear if a single partition for Windows, without the Windows Recovery Environment and without Microsoft Reserved Partition, will not do.
Follows an outline, assuming Secure Boot is disabled in the firmware.
- Boot into windows installation. Watch to let it use only the intended partition, but otherwise let it do its work as if there is no Linux installation.
- Follow the #Fast Startup and hibernation section.
- Fix the ability to load Linux at start up, perhaps by following #Cannot boot Linux after installing Windows. It was already mentioned in #UEFI systems that some Linux boot managers will autodetect Windows Boot Manager. Even though newer Windows installations have an advanced restart option, from which you can boot into Linux, it is advised to have other means to boot into Linux, such as an arch installation media or a live CD.
Windows 10 with GRUB
The following assumes GRUB is used as a boot loader (although the process is likely similar for other boot loaders) and that Windows 10 will be installed on a GPT block device with an existing EFI system partition (see the «System partition» section in the Microsoft documentation for more information).
Create with program gdisk
on the block device the following three new partitions. See [5] for more precise partition sizes.
Min size | Code | Name | File system |
---|---|---|---|
16 MB | 0C01 | Microsoft reserved | N/A |
~40 GB | 0700 | Microsoft basic data | NTFS |
300 MB | 2700 | Windows RE | NTFS |
Create NTFS file systems on the new Microsoft basic data and Windows RE (recovery) partitions using the mkntfs program from package ntfs-3g.
Reboot the system into a Windows 10 installation media. When prompted to install select the custom install option and install Windows on the Microsoft basic data partition created earlier. This should also install Microsoft EFI files in the EFI system partition.
After installation (set up of and logging into Windows not required), reboot into Linux and generate a GRUB configuration for the Windows boot manager to be available in the GRUB menu on next boot.
Troubleshooting
Couldn’t create a new partition or locate an existing one
See #Windows UEFI vs BIOS limitations.
Cannot boot Linux after installing Windows
See Unified Extensible Firmware Interface#Windows changes boot order.
Restoring a Windows boot record
By convention (and for ease of installation), Windows is usually installed on the first partition and installs its partition table and reference to its bootloader to the first sector of that partition. If you accidentally install a bootloader like GRUB to the Windows partition or damage the boot record in some other way, you will need to use a utility to repair it. Microsoft includes a boot sector fix utility FIXBOOT
and an MBR fix utility called FIXMBR
on their recovery discs, or sometimes on their install discs. Using this method, you can fix the reference on the boot sector of the first partition to the bootloader file and fix the reference on the MBR to the first partition, respectively. After doing this you will have to reinstall GRUB to the MBR as was originally intended (that is, the GRUB bootloader can be assigned to chainload the Windows bootloader).
If you wish to revert back to using Windows, you can use the FIXBOOT
command which chains from the MBR to the boot sector of the first partition to restore normal, automatic loading of the Windows operating system.
Of note, there is a Linux utility called ms-sys
(package ms-sysAUR in AUR) that can install MBR’s. However, this utility is only currently capable of writing new MBRs (all OS’s and file systems supported) and boot sectors (a.k.a. boot record; equivalent to using FIXBOOT
) for FAT file systems. Most LiveCDs do not have this utility by default, so it will need to be installed first, or you can look at a rescue CD that does have it, such as Parted Magic.
First, write the partition info (table) again by:
# ms-sys --partition /dev/sda1
Next, write a Windows 2000/XP/2003 MBR:
# ms-sys --mbr /dev/sda # Read options for different versions
Then, write the new boot sector (boot record):
# ms-sys -(1-6) # Read options to discover the correct FAT record type
ms-sys
can also write Windows 98, ME, Vista, and 7 MBRs as well, see ms-sys -h
.
Restoring an accidentally deleted EFI system partition
If you have a GPT-partitioned disk and erased (e.g. with mkfs.fat -F32 /dev/sdx
) the EFI system partition, you will notice that Windows Boot Manager will either disappear from your boot options, or selecting it will send you back to the UEFI.
To remedy it, boot with a Windows installation media, press Shift+F10
to open the console (or click NEXT > Repair Computer > Troubleshoot… > Advanced > Command Prompt), then start the diskpart utility:
X:\Sources> diskpart DISKPART> list disk
Select the appropriate hard drive by typing:
DISKPART> select disk number
Make sure that there is a partition of type system (the EFI system partition):
DISKPART> list partition
Select this partition:
DISKPART> select partition number
and assign a temporary drive letter to it:
DISKPART> assign letter=G:
DiskPart successfully assigned the drive letter or mount point.
To make sure that drive letter is correctly assigned:
DISKPART> list vol
Volume ### Ltr Label Fs Type Size Status Info ---------- --- ----------- ----- ---------- ------- --------- -------- Volume 0 E DVD-ROM 0 B No Media Volume 1 C NTFS Partition 195 GB Healthy Boot Volume 2 WINRE NTFS Partition 400 MB Healthy Hidden Volume 3 G FAT32 Partition 499 MB Healthy System
Close diskpart:
DISKPART> exit
Navigate to C:\
(or what your system drive letter is):
X:\Sources> cd /d C:\
Next is the «magic» command, which recreate the BCD store (with /s
for the mount point, /f
for firmware type, optionally add /v
for verbose):
C:\> bcdboot C:\Windows /s G: /f UEFI
Tip: If it hangs up after a minute, hit Ctrl+c
. This happens sometimes, but you will get a message like boot files successfully created
and it will have worked just fine.
You should now have Windows Boot Manager working as a boot option, and thus have access to Windows. Just make sure to never format your EFI system partition again!
Note: Remove the drive letter G assigned to the EFI system partition to keep it from showing up in My Computer.
See [6], [7] and [8].
The EFI system partition created by Windows Setup is too small
By default, Windows Setup creates a 100 MiB EFI system partition (except for Advanced Format 4K native drives where it creates a 300 MiB ESP). This is generally too small to fit everything you need. You can try different tools to resize this partition, but there are usually other partitions in the way, making it, at the very least, difficult.
If you are installing Windows from scratch, you can dictate the size of the EFI system partition during installation[9]:
- Select your installation target and make sure it has no partitions.
- Click New and then the Apply buttons. The Windows installer will then generate the expected partitions (allocating nearly everything to its primary partition) and just 100MB to the EFI.
- Use the UI to delete the
System
,MSR
, andPrimary
partitions. Leave theRecovery
partition (if present) alone. - Press
Shift+F10
to open the Command Prompt. - Type
diskpart.exe
and pressEnter
to open the disk partitioning tool. - Type
list disk
and pressEnter
to list your disks. Find the one you intend to modify and note its disk number. - Type
select disk disk_number
with the disk number to modify. - Type
create partition efi size=size
with the desired size of the ESP in Mebibytes (MiB), and pressEnter
. See the note at EFI system partition#Create the partition for the recommended sizes. - Type
format quick fs=fat32 label=System
and pressEnter
to format the ESP - Type
exit
and pressEnter
to exit the disk partitioning tool andexit
followed byEnter
again.
Once Windows is installed, you can resize the primary partition down within Windows and then reboot and go about your usual Arch install, filling the space you just created.
Alternatively, you can use the Arch install media to create a single EFI system partition of your preferred size before you install Windows on the drive. Windows Setup will use the EFI system partition you made instead of creating its own.
Unable to install Windows Cumulative Update on BIOS system
On BIOS systems, Windows cumulative updates may fail with the error We couldn’t complete the updates. Undoing changes. Don’t turn off your computer. In such case, while in Windows, you need to set the Windows partition as active.
C:\> diskpart DISKPART> list disk DISKPART> select disk number DISKPART> list partition DISKPART> select partition number DISKPART> active DISKPART> exit
After successfully installing the Windows update, mark back your Linux partition as active, using commands above.
Time standard
- Recommended: Set both Arch Linux and Windows to use UTC, following System time#UTC in Microsoft Windows. Some versions of Windows revert the hardware clock back to localtime if they are set to synchronize the time online. This issue appears to be fixed in Windows 10.
- Not recommended: Set Arch Linux to localtime and disable all time synchronization daemons. This will let Windows take care of hardware clock corrections and you will need to remember to boot into Windows at least two times a year (in Spring and Autumn) when DST kicks in. So please do not ask on the forums why the clock is one hour behind or ahead if you usually go for days or weeks without booting into Windows.
Bluetooth pairing
When it comes to pairing Bluetooth devices with both the Linux and Windows installation, both systems have the same MAC address, but will use different link keys generated during the pairing process. This results in the device being unable to connect to one installation, after it has been paired with the other. To allow a device to connect to either installation without re-pairing, follow Bluetooth#Dual boot pairing.
See also
- Booting Windows from a desktop shortcut
- One-time boot into Windows partition from desktop shortcut
- Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)
Установка Arch Linux рядом с Windows 10. UEFI.systemd-boot (без GRUB)
Предлагаю посмотреть на базовую установку Arch Linux 64 рядом с Windows UEFI с использованием менеджера загрузки systemd-boot
Исходные данные
Комп ASUS K53BR x64 с UEFI
Графика AMD
Оператива 4 Gb
Винт 465,8 Gb с системой разделов GPT
Установлена Windows 10 64-бит
Сеть WIFI
Требуется
Установка базовой системы Arch Linux 64-bit рядом с Windows 10. UEFI.
Использование менеджера загрузки systemd-boot.
Запускаемся с USB в режиме EFI
Проверяем режим EFI
efivar -l
Должны вывестись список строк.
Подключаем интернет
wifi-menu
Выбираем сеть, вводим пароль.
Проверяем наличие интернет
ping ya.ru
Должны начать выводиться списки загружаемых пакетов
Прерываем и выходим из ping командой ctrl+c
Синхронизация системных часов
timedatectl set-ntp true
Посмотрим наши старые загрузочные записи (если есть)
efibootmgr
1. Видим, что загрузились через USB UEFI
2. Загрузчик Windows
3-5. Записи прочих загрузчиков. Если в свое время устанавливались другие дистрибутивы в раздел EFI, то таких записей может быть несколько. В любом случае визуально все можно понять.
Удаляем не нужные записи командой efibootmgr -b x -B, где x — номер записи в списке по последней цифре. В моем случае это записи 3,4,5.
efibootmgr -b 0 -B
efibootmgr -b 2 -B
efibootmgr -b 5 -B
Просмотрим разделы Windows
Видим, что раздел EFI находится на /dev/sda2. Сюда будем подключать наш загрузчик.
/dev/sda3 и /dev/sda4 — это, соответственно, диски C и D на Windows.
Разметка диска
cfdisk
На свободном месте добавляем разделы
Для root
new 20G type system linux подтверждаем write
Для swap
new 4.8G type linux swap подтверждаем write
Раздел /dev/sda2 с EFI не трогаем, раздел под /home я не создавал, так как пользоваться им практически не придется. Вся инфа лежит на windows разделе. Размер для root и swap, каждый выбирает на свое усмотрение.
Выходим из cfdisk через quit
Получaем разделы
root — sda5
boot — sda2
swap — sda6
Форматирование и подключение
#root
mkfs.ext4 /dev/sda5 -L «ARCH»
mount /dev/sda5 /mnt
#boot
mkdir -p /mnt/boot
mount /dev/sda2 /mnt/boot
#swap
mkswap /dev/sda6
swapon /dev/sda6
Просматриваем и проверяем разделы и подключение
cfdisk
Выходим из cfdisk
Обновляем пакеты
pacman -Syy
При обновлении пакетов видна скорость скачивания с сервера. Если устраивает,то следующий пункт можно пропустить.
Настройка сервера загрузки, как пример, для российского сервера.
nano /etc/pacman.d/mirrorlist
Вверху прописываем
Записываем изменения командой ctrl+o
Подтверждаем enter Выходим из редактора ctrl+x
Устанавливаем базовую систему и пакет для будущего использования AUR.
pacstrap /mnt base linux linux-firmware base-devel
Генерируем fstab
genfstab -U /mnt >> /mnt/etc/fstab
Просмотрим созданный fstab
nano /mnt/etc/fstab
Переходим в систему
arch-chroot /mnt
Устанавливаем редактор nano
pacman -S nano
Настроим локаль, время, имя компьютера
loadkeys ru
setfont cyr-sun16
nano /etc/locale.gen
Здесь раскомментирум строки
en_US.UTF-8 UTF-8
ru_RU.UTF-8 UTF-8
Записываем изменения командой ctrl+o
Подтверждаем enter
Выходим из редактора ctrl+x
locale-gen
nano /etc/locale.conf
Прописываем строку
LANG=ru_RU.UTF-8
Записываем изменения командой ctrl+o
Подтверждаем enter
Выходим из редактора ctrl+x
export LANG=ru_RU.UTF-8
nano /etc/vconsole.conf
Прописываем строки
KEYMAP=ru
FONT=cyr-sun16
Записываем изменения командой ctrl+o
Подтверждаем enter
Выходим из редактора ctrl+x
Настраиваем зону и системное время, как пример, для Россия Москва
ln -sf /usr/share/zoneinfo/Europe/Moscow /etc/localtime
hwclock —systohc
Настраиваем имя компьютера
nano /etc/hostname
Прописываем
userhost — имя вашего компьютера
Записываем изменения командой ctrl+o
Подтверждаем enter
Выходим из редактора ctrl+x
nano /etc/hosts
Прописываем строчку
127.0.1.1 userhost.localdomain userhost
Записываем изменения командой ctrl+o
Подтверждаем enter
Выходим из редактора ctrl+x
Устанавливаем пароль для root
passwd
Здесь же добавляю нового пользователя
useradd -G wheel -s /bin/bash -m username
где username — ваше имя пользователя
Открываем права для нового пользователя
nano /etc/sudoers
Раскомментируем строку %wheel ALL=(ALL) ALL
Записываем изменения командой ctrl+o
Подтверждаем enter
Выходим из редактора ctrl+x
Устанавливаем пароль для нового пользователя
passwd username
Устанавливаем дополнительные пакеты (и пакеты, которые вы считаете нужными)
pacman -S efibootmgr iw wpa_supplicant dialog netctl dhcpcd
Для работы с дисками
pacman -S ntfs-3g mtools fuse2
Запускаем менеджер загрузки
bootctl install
Будут созданы необходимые директории и точка входа загрузчика
Настраиваем менеджер загрузки
nano /boot/loader/loader.conf
Закомментируем все строки, добавим свои
default arch
timeout 5
editor 1
Инфа из WIKI
Получаем
Создаем файлы конфигурации
Для пользователей процессоров Intel нужно установить дополнительный пакет
pacman -S intel-ucode
nano /boot/loader/entries/arch.conf
title Arch Linux
linux /vmlinuz-linux
# initrd /intel-ucode.img # раскомментировать для пользователей Intel
initrd /initramfs-linux.img
options root=/dev/sda5 rw
Здесь sda5 — это наш примонтированный root раздел
Просмотрим последовательность при запуске системы
efibootmgr
Установим выбранную последовательность загрузки
efibootmgr -o 0,3,4,1 # в моем случае Arch будет первым
Выходим
exit
Отмонтируем диски
umount -R /mnt
Перегружаемся
reboot
Базовая система установлена. Остальное устанавливаем на свой вкус и цвет.
…далее
Arch «будет тем, что вы из него сделаете»
Удачи!
Newb’s Guide to installing Arch Next to Pre-installed Windows 10
The steps I took to dual boot Arch Linux alongside the preinstalled Windows 10 that came with my new Lenovo Ideapad. I used Ubuntu exclusively for the last 6 years so I’m Window’s illiterate. I don’t know a whole lot about the inner workings of Linux either.
Pre-Instllation Steps
Prepare the preinstalled Windows to share the system.
Verify the boot mode…
- Boot into Windows
- Press Win key and ‘R’ to start the Run dialog
- In the Run dialog type «msinfo32» and press Enter
- In the System Information windows, select System Summary on the left and check the value of BIOS mode item on the right.
- Make sure the value is UEFI, which means Windows boots in UEFI/GPT mode
Disable secure boot
- Open Settings (The gear icon in the start menu)
- Click «Updates & Security»
- In the «Recovery» menu, click «Restart now» under the «Advanced startup» header
- After restart, choose the «Troubleshoot» option.
- Choose «Advanced Options»
- Choose «UEFI Firmware Settings»
- Press the restart button to load the UEFI firmware
- In the Security settings find and disable Secure Boot
- In the Boot settings also find and disable Fast Boot
Disable Fast Startup
- Open Control Panel (Press Windows key, Type «Control Panel» and press enter)
- In the «View by» menu, choose «Small Icons» and click on «Power Options».
- Open «Choose what power buttons do» on the left side menu.
- Click «Change settings that are currently unavailable»
- Uncheck «Turn on Fast Startup» and save changes.
Shrink the Windows partition
- Press Windows Key + R and type diskmgmt.msc — hit enter
- Right click the C drive and choose «Shrink Volume»
- Enter the amount of space to shrink the partition (I shrunk mine by 200000mb — 200 gigs)
- Click «Shrink»
Make a bootable USB
- Choose a mirror from www.archlinux.org/download — I used the American pair.com mirror because it’s the first reputable domain I recognised.
- Download the .iso file.
- Download Rufus from https://rufus.akeo.ie/
- Plug in a new USB stick and open Rufus
- Select the USB drive and the downloaded Linux iso.
- Choose the GPT partition scheme, FAT32 file system
- Press start
Install Arch
We’re ready to boot and install Arch.
Boot the USB
- Plug in the USB
- Hold down the shift key while clicking Restart
- Choose «Troubleshoot» then «Advanced Options» then «UEFI Firmware Settings» then restart.
- In the Boot menu, find your bootable USB and move it up above the Windows boot manager so it will boot the USB first.
- Save and exit
Load keyboard layout & locale
- Type
loadkeys us
at the command line and press enter - Type
locale-gen
at the command line and press enter
Hookup them internets
- At the command line type
rfkill unblock wifi
and press enter - Type
iw dev
and press enter. It will tell you the name of the Wifi interface. - Type
wifi-menu <wifi_interface_name>
(using your actual interface name) and press enter. - A UI will show allowing you to choose a network and log into it.
- After logging in,
ping google.com
to verify the internets work. After a few packets are sent, CTRL+C to stop pinging — if it says no packets were lost then we’re good.
Partitioning
- First type
free -m
, hit enter. Take note of the amount of total memory available. - Type
gdisk /dev/sda
and hit enter to start the GPT partitioning program - Create SWAP partition
- At the prompt, type
n
, press enter to create a new partition - It will prompt for a partition number. Just hit enter to use the default.
- It asks where to start the first sector. Press enter to accept the default which is automatically the start of unallocated space.
- It asks for the last sector. Type
+12GB
(I have 12 gigs of memory — if you have more or less you should adjust accordingly) and press enter. - If it says anything other than «Linux Filesystem» type
8200
at the next prompt. Hit enter.
- At the prompt, type
- Create Root partition
- At the prompt, type
n
, press enter to create a new partition - It will prompt for a partition number. Just hit enter to use the default.
- It asks where to start the first sector. Press enter to accept the default which is automatically the start of unallocated space.
- It asks for the last sector. Press Enter to accept the default and use all of remaining unallocated space.
- If it says anything other than «Linux Filesystem» type
8300
at the next prompt. Hit enter.
- At the prompt, type
- At the prompt, type
W
, press enter to write changes to the drive. When prompted, typeY
and press enter to confirm.
Create SWAP space
- Type
gdisk -l /dev/sda
, press enter and take note of the partition number of the Swap part. - Type
mkswap -L "Linux Swap" /dev/sda7
(My swap partition was number 7 — if yours is 5 use /dev/sda5 instead). Hit enter. - Type
swapon /dev/sda7
(again, using the apprpriate swap partition number). Hit enter. - Verify status of swap space by typing
free -m
and press enter. If the last line starts with «Swap:» we’re good.
Format and mount the root partition
- Type
gdisk -l /dev/sda
, press enter and take note of the partition number of the Root part. - Type
mkfs.ext4 -L /dev/sda8
(My root partition was number 7 — if yours is 6 use /dev/sda6 instead). Hit enter. - Type
mount /dev/sda8 /mnt
(again, using the apprpriate swap partition number). Hit enter.
Start the installation
- Type
pacstrap /mnt base
, hit enter.
Mount the EFI partition
- Type
gdisk -l /dev/sda
, press enter and take note of the partition number of the EFI part. - Type
mount /dev/sda1 /mnt/boot/efi
(My efi partition was number 1 — if yours is 2 use /dev/sda2 instead). Hit enter.
Configure the system
- Type
genfstab -U /mnt >> /mnt/etc/fstab
. Hit enter. - Type
cat /mnt/etc/fstab
, press enter, to verify the file was created correctly. - Change root into the new installation: type
arch-chroot /mnt
and press enter.
Set the timezone
- Type
cd /usr/share/zoneinfo && ls
press enter. Take note of the appropriate region and use it as follows… - Type
cd <region> && ls
(replacing<region>
with the most appropriate region.) press enter. Take note of the most appropraite city. - Type
ln -sf /usr/share/zoneinfo/<region>/<city> /etc/localtime
(replacing<region>
and<city>
with the most appropriate region and city.) - Type
hwclock --systohc
. Hit enter.
Set the host
- Create the file
/etc/hostname
and write your hostnme in it with nano or vim - Create the file
etc/hosts
and populate it like this (replacingmyhostname
with whatever you put in your hostname file.)
127.0.0.1 localhost
::1 localhost
127.0.1.1 myhostname.localdomain myhostname
Create the root user’s password
- Type
passwd
and press enter - Enter a new root password and press enter. verify it and press enter.
Create new initramfs image
- Type
mkinitcpio -p linux
. Hit enter.
Install Grub bootloader
- Type
pacman -Syu grub efibootmgr
and hit enter. - Type
pacman -Syu efibootmgr
and hit enter. - Type
grub-mkconfig -o /boot/grub/grub.cfg
. Hit enter. - Type
grub-install /dev/sda
. Hit enter. - Verify the install… Type
ls -l /boot/efi/EFI/arch/
. Hit Enter. If you see a file called grubx64.efi then all is well.
Create new user
- Type
useradd -s /bin/bash -m username
(replace «username» with the new user’s name). Hit enter. - Type
passwd username
(replace «username» with the new user’s name). Hit enter. - Enter and verify the password.
Install a desktop environment and some important packages
- Type
pacman -Syu gnome-desktop
. Hit enter. - Type
pacman -Syu gdm
. Hit enter. - Type
systemctl enable gdm
. Hit enter. - Type
pacman -Syu xterm
. Hit enter. - Type
pacman -Syu iw
. Hit enter. - Type
pacman -Syu dialog
. Hit enter. - Type
pacman -Syu vim
. Hit enter. - Type
pacman -Syu wpa_supplicant
. Hit enter. - Type
pacman -Syu os-prober
. Hit enter. - Type
grub-mkconfig -o /boot/grub/grub.cfg
. Hit enter.
Unmount and reboot
- Remove USB
- Type
exit
. Hit enter. - Type
umount -R /mnt
. Hit enter. - Type
reboot
. Hit enter. - After a moment it will load back into Arch, this time with a desktop GUI.
Почти каждый пользователь сегодня слышал про бесплатную операционную систему Linux. Открытая для разработки платформа и доступность системы сделали её весьма популярной. Но если вы никогда не пользовались ей, устанавливать её вместо Windows может быть опрометчиво. Гораздо удобнее установить какую-либо из версий Linux второй операционной системой на ваше устройство.
Windows 10 является новейшей операционной системой от компании Microsoft. Она успешна и многофункциональна. Немногие пользователи смогут полностью отказаться от её использования ради установки Linux. В свою очередь, Linux имеет ряд преимуществ перед другими операционными системами:
- свобода и многообразие — сборок Linux множество и каждая из них распространяется бесплатно. Их загрузка, установка, использование и даже изменение — полностью легальны;
- низкие требования — некоторые сборки Linux заработают даже на очень старых компьютерах. Операционная система занимает мало места и потребляет немного оперативной памяти, а это значит, что больше ресурсов останется для ваших программ;
- меньше вирусов — вирусные программы для Linux, конечно, существует, но шанс наткнуться на них куда меньше, чем в операционной системе от Microsoft. Как следствие, избавиться от них получается проще;
- бесплатные программы — на Linux существует очень много бесплатного программного обеспечения на любой вкус. Это могут быть как аналоги платных программ на Windows, так и полностью новый софт. Найти нужную программу можно очень просто;
- хорошая совместимость с другими системами — крайне важный пункт. Linux спокойно устанавливается и работает с любыми операционными системами: как Windows, так и Mac.
Минусы, впрочем, также очевидны:
- расчёт на опытных пользователей — установить Linux совсем нетрудно, но некоторые действия в самой системе требуют большой технической подкованности;
- проблемы с поддержкой программ и игр других операционных систем — далеко не все игры или программы поддерживают Linux, а способ запуска через wine не всегда работает корректно.
При установке Linux в качестве второй операционной системы вы ничего не потеряете, а если она вам понравится, сможете и вовсе полностью перебраться на неё.
Установка различных сборок Linux
Так как Linux открыт для разработки пользователями, существует множество различных версий этой операционной системы.
Каждому пользователю стоит выбрать сборку под свои нужды перед тем, как приступать непосредственно к установке.
Приготовления до установки
До того как начинать устанавливать версию Linux, которую вы выбрали, следует выполнить некоторые подготовительные действия с вашим жёстким диском. Для начала стоит сохранить все необходимые файлы на накопитель, так как во время установки есть риск их потерять. Затем следует разбить диск на разделы для корректной установки второй операционной системы.
Разметка раздела с помощью системной программы «Управление дисками»
- Чтобы разбить диск на разделы, нажмите Win+R для открытия окна «Выполнить» и введите туда команду diskmgmt.msc.
Введите команду diskmgmt.msc в окно «Выполнить», нажмите ОК - Откроется программа «Управление дисками». Выберите тот диск, на который вы хотите совершить установку, и кликните левой кнопкой мыши для вызова контекстного меню. В нём выберите сжатие тома.
Кликните правой кнопкой мыши по диску и выберите «Сжать том» - В следующем окне укажите объём, который хотите отделить. Для установки Linux не понадобится много, но если есть возможность, стоит оставить хотя бы 10 гигабайт. При этом место на жёстком диске должно быть свободно для «сжатия».
Введите необходимый размер и выберите кнопку «Сжать» - Область, которую вы сжали, будет отмечена чёрным цветом — именно в этот раздел и нужно производить установку.
После всех манипуляций должна отобразиться нераспределённая область на диске, отмеченная чёрным
Разбить раздел можно и непосредственно во время установки Linux. Но если сделать это заранее, то можно избежать некоторых ненужных рисков во время установки.
Разметка раздела с помощью установщика Linux
Вне зависимости от того, какую версию Linux вы устанавливаете, вам понадобится разделить ваш диск. Если вы не сделали этого до установки, то во время установки это также можно совершить.
- Для этого при выборе типа установки укажите пункт «Другой вариант».
При установке выберите строку «Другой вариант» и нажмите «Продолжить» - Будет выполнен запуск необходимой утилиты. Тут вы сможете увидеть разделы своего жёсткого диска. Для установки лучше делить раздел, который не является системным.
Linux имеет собственную утилиту для работы с дисками, с помощью которой также можно разбить том - Выберите несистемный раздел и нажмите клавишу «Изменить».
Выберите раздел, на котором достаточно свободного места, и нажмите «Изменить» - Укажите другой размер жёсткого диска. Рекомендуется устанавливать значение больше 20 тыс. Мб, чтобы места хватило и для системы, и для нормального обеспечения её работы. Всё «лишнее» пространство будет отрезано и станет неразмеченной областью. Разумеется, необходимо, чтобы это пространство не было занято файлами.
В окне «Изменить раздел» можно увидеть общее количество свободного места на диске - Подтвердите изменение размера нажатием кнопки ОК.
В окошке «Изменить раздел» введите вес пространства, которое вы хотите отделить, и нажмите ОК - Появится предупреждение о необратимости процесса. Вновь согласитесь с изменениями и выберите кнопку «Продолжить».
Ознакомьтесь и подтвердите внесение изменений при создании раздела в Linux - Разделение будет совершено и вы увидите строку «свободное место». Выберите её и нажмите на плюсик.
Выберите новый раздел и нажмите на плюс, чтобы создать раздел - Заполните форму создания раздела. Для установки Linux потребуется создать корневой раздел, раздел подкачки и раздел для хранения файлов. Для создания корневого раздела укажите размер около 15 Гб, установите «Логический» тип раздела и в строке «Точка монтирования» укажите знак «/», чтобы раздел считался корневым.
Введите необходимые данные для создания корневого раздела и намжмите ОК - Таким же образом создайте раздел для подкачки системы, выбрав соответствующий тип раздела. Места под него стоит выделить столько же, сколько у вас имеется оперативной памяти.
Внесите необходимые данные для создания раздела подкачки и нажмите ОК - В последний раздел для хранения файлов выделите всё место, которое осталось. В качестве точки монтирования выберите тип «/home».
Введите необходимые данные для создания домашнего раздела и нажмите ОК
Создание разделов завершено и это значит, что вы можете продолжать установку.
Устанавливаем Linux Ubuntu рядом с Windows 10
Вы можете загрузить свежую версию системы Linux Ubuntu на её официальном сайте. После этого выполните следующие действия:
- Запишите образ системы на флешку. Это можно сделать с помощью любой удобной вам программы. Например, программа Rufus может помочь вам. Скачайте и запустите её.
- Выберите устройство для записи в верхней строчке. Это может быть предназначенный для записи диск или флеш-накопитель.
Укажите ваш накопитель в программе Rufus - Укажите схему раздела — «GPT для компьютеров с UEFI».
Выберите GPT в качестве схемы раздела - Затем нажмите на значок образа. В открывшемся проводнике укажите путь до вашего образа Linux.
Нажмите на значок диска и выберите образ Linux, который вы скачали с официального сайта - Убедитесь, что установлена галочка «Создать загрузочный диск», и нажмите «Старт».
- После того как загрузочный диск будет создан, перезагрузите компьютер и зайдите в Boot Menu. Выберите там загрузку вашего накопителя.
Выберите тип вашего накопителя в Boot Menu - Появится стартовое окно для установки Linux Ubuntu. Установите в левой панели необходимый язык и начните установку.
Выберите язык системы и нажмите «Установить Ubuntu» - Так как раздел уже создан ранее, выберите пункт «Установить Ubuntu рядом с Windows 10».
Из всех типов установки выберите «Установить Ubuntu рядом с Windows 10» - Затем выберите раздел. Он будет иметь тип fat32, если сделан правильным образом.
Выберите раздел fat32, в котором должно быть достаточно места - Если раздела нет, но имеется неразмеченная область — создайте его. Для этого во вкладке devices выберите Create Partition Table. В качестве типа раздела установите GPT.
- В следующем окне укажите размер раздела, выберите fat32 в качестве файловой системы и в строку Label введите EFI.
Вес раздела укажите на своё усмотрение - После выбора раздела установка будет полностью автоматической. Для этого просто выберите Ubuntu при следующей загрузке системы.
После перезагрузки выберите Ubuntu в качестве операционной системы - После установки укажите на карте свой часовой пояс.
Установите часовой пояс в настройках установки Ubuntu - Затем выберите язык и раскладку клавиатуры.
Выберите раскладку клавиатуры по умолчанию для Ubuntu - Придумайте и введите данные вашей новой учётной записи и нажмите «Продолжить».
Введите данные от вашей новой учётной записи на Ubuntu - Установка выполнит последние действия и потребует перезагрузку системы. Выполните её.
Согласитесь на перезагрузку компьютера, нажав «Перезагрузить»
Видео: подробная установка Linux Ubuntu на компьютер с BIOS
Устанавливаем Linux Mint рядом с Windows 10
Для установки Linux Mint требуется сделать следующее:
- Зайдите на официальный сайт этой сборки и выберите версию для загрузки. Выбирать стоит исходя из необходимых опций и разрядности системы.
Загрузите нужную версию Linux Mint с официального сайта - В качестве способа загрузки выберите торрент или загрузите клиент с одного из зеркал.
Загрузите Linux Mint любым из предложенных на сайте способов - Потом запишите образ Linux Mint на загрузочный накопитель. Сделать это можно с помощью уже знакомой вам программы Rufus.
Запишите образ Linux Mint на загрузочный накопитель - После начала установки вы увидите окно с отсчётом времени.
Дождитесь, пока таймер истечёт для начала установки Linux Mint - Если вы нажмёте какую-либо клавишу, появится окно дополнительных настроек. Делать это необязательно, но если сделали — выберите первый пункт для начала установки. Или же просто дождитесь, пока время выйдет.
Выберите пункт Start Linux Mint для входа в систему - После короткой загрузки вы увидите перед собой рабочий стол новой операционной системы. Но установка ещё не завершена. На рабочем столе найдите файл Install Linux Mint и откройте его двойным кликом.
Запустите файл Install Linux Mint на рабочем столе - Откроются языковые настройки. Выберите необходимый язык и продолжите установку.
Выберите ваш язык для системы Linux Mint - Установите галочку в следующем окне для автоматической установки программного обеспечения.
Установите галочку на пункт установки дополнительных программ и нажмите «Продолжить» - Затем выберите тип установки. Если вы заранее выполнили разбивку диска и отделили область установки, выберите «Установить Linux Mint рядом с Windows 10».
Для установки Linux Mint вместе с Windows 10 выберите соответствующий пункт - После выбора раздела установки откроется выбор часового пояса. Укажите свой регион.
Выберите ваш регион для корректной настройки часового пояса - Затем выберите языки раскладки вашей клавиатуры.
Выберите раскладку клавиатуры, которую вы хотите использовать в новой системе - Придумайте и задайте имя вашего аккаунта и пароль, если он необходим.
Введите данные для входа в аккаунт Linux Mint и подтвердите их - Дождитесь окончания хода установки. Прогресс можно отслеживать с помощью полоски внизу экрана.
Дождитесь окончания хода установки для доступа к системе - Установка завершена и после перезапуска компьютера вы можете приступить к использованию операционной системы.
Выполните перезапуск вашего компьютера, когда появится запрос
Видео: установка Linux Mint на компьютер c другой ОС
Устанавливаем Kali Linux рядом с Windows 10
Установка сборки Kali несколько отличается от предыдущих.
- Загрузите образ с официального сайта сборки, выбрав подходящую вам версию.
Выберите версию Kali Linux для загрузки на официальном сайте - Выполните запись образа на загрузочный накопитель с помощью программы Rufus.
- После запуска загрузочной программы с флешки вы увидите варианты установки. Установка с графикой (Graphical install) будет проще всего, поэтому мы выбираем её.
Выберите графическую установку для более наглядного процесса - Появится список языковых конфигураций. Выберите необходимый язык и подтвердите выбор.
Укажите язык для установки Kali Linux - Если появится окно о невозможности корректно монтировать установочный диск, просто выберите пункт «Да», предварительно подключив накопитель в другой разъём.
При ошибке установите накопитель с операционной системой в другой разъём и нажмите «Да» - Введите придуманный пароль для главного аккаунта, а затем повторите его в строке ниже.
Дважды введите пароль для Kali Linux, который будет использоваться при изменениях в системе - Выполните настройку часового пояса для правильной синхронизации времени на вашем компьютере.
Выберите в списке подходящий часовой пояс - Откроется окно разметки диска. Укажите, что хотите вручную выбрать раздел.
Укажите, что хотите выбрать область вручную - Укажите неразмеченную область («Свободное место»), которую создали ранее.
Выберите неразмеченную область: она подписана как «Свободное место» - Затем выберите «Автоматически разметить свободное место».
Укажите пункт «Автоматически разметить свободное место» - В следующем меню нажмите на пункт «Все файлы в одном разделе».
Выберите пункт «Все файлы в одном разделе» - Выберите диск, с которым вы работали, нажмите «Закончить и записать изменения на диск».
Выберите раздел и нажмите «Закончить разметку…» - Компьютер обнаружит вашу операционную систему Windows 10. Выберите пункт «Да», чтобы при загрузке компьютера выбрать одну из операционных систем, и продолжите установку.
Выберите «Да» для продолжения установки при обнаружении Windows 10 - Укажите системный диск вручную в следующем окне и установка будет завершена.
Вручную укажите на системный диск для установки загрузчика операционной системы
Видео: как установить Kali Linux на компьютер
Установка Kubuntu рядом с Windows 10
Процесс установки Kubuntu Linux похож на установку Ubuntu, что совсем неудивительно. Для установки Kubuntu рядом с вашей Windows выполните следующие шаги:
- Скачайте систему с официального сайта и выполните её запись на загрузочный накопитель. Перезагрузите компьютер, и, вызвав Boot Menu нажатием F12 при появлении соответствующей надписи, выберите нужное устройство для начала установки.
Загрузите образ Kubuntu с официального сайта - Нажмите любую клавишу во время мигающего значка для открытия опций.
Когда появится значок клавиатуры, нажмите любую клавишу - Выберите Start Kubuntu для начала установки ОС.
Выберите Start Kubuntu для начала установки операционной системы - Дождитесь, пока загрузится графическая оболочка установки.
Дождитесь окончания загрузки графической оболочки Kubuntu - В следующем окне выберите язык системы и нажмите «Запустить Kubuntu». Нужно выбрать именно этот вариант, чтобы система была доступна для использования во время установки на жёсткий диск.
Выберите «Запустить Kubuntu» для доступа в операционую систему - Дождитесь окончания загрузки системы.
Загрузка рабочего стола без установки может занять некоторое время - Затем запустите установку, нажав на ярлык установочной программы.
Выберите файл Install Kubuntu для начала установки - Откроется окно установки. Выберите русский язык для продолжения.
Укажите язык, который вы хотите видеть в ходе установки и в самой системе - Будет выполнена проверка подключения к интернету и на наличие свободного места для установки. После её окончания нажмите «Продолжить».
Просле проверки интернета нажмите кнопку «Продолжить» - Запустится окно для выбора раздела. Если хотите выполнить установку вместе с другой операционной системой, выберите установку «Вручную». Автоматическую разметку можно использовать, если жёсткий диск полностью свободен от файлов.
Так как необходимо сохранить Windows 10, выберите тип установки «Вручную» - Необходимо создать поочерёдно четыре раздела. Сам процесс не отличается от создания разделов в Ubuntu. Создайте разделы:
- boot для загрузочных данных;
- root — содержит в себе файлы операционной системы;
- swap для файлов подкачки;
- home для всех остальных файлов.
Создайте неоходимые для установки Kubuntu разделы
- Как только разделы будут созданы, подтвердите внесение изменений и установка начнётся.
Для продолжения установки Kubuntu примите изменения - Пока файлы будут копироваться на жёсткий диск, выберите настройки часового пояса.
Настройте часовой пояс новой операционной системы, выбрав ваш регион - В следующем окне выберите язык раскладки.
Наглядная раскладка клавиатуры поможет вам удостовериться в верном выборе языка - В последнем экране настроек задайте данные от учётной записи.
Введите данные для новой учётной записи и нажмите «Продолжить» - После этого дождитесь окончания установки системы.
Дождтесь, пока процесс установки Kubuntu не будет завершён - Когда установка закончится, перезапустите компьютер.
Выполните перезапуск, когда появится окно с запросом
Установка Rosa Linux рядом с Windows 10
Как и в случае с другими сборками, для установки Rosa Linux вам требуется скачать необходимый образ и записать его на носитель.
- Зайдите в Boot Menu, нажав F12 после перезагрузки компьютера. Выберите загрузку вашего накопителя. Появится окно с различными действиями по диагностике. Выберите строку Install ROSA Desktop Fresh R6.
Выберите пункт Install ROSA Desktop для начала установки - Откроется панель выбора языка. Установите необходимый и продолжите установку.
Выберите ваш язык при установке системы - Изучите и примите лицензионное соглашение Rosa Linux.
Примите условия лицензионного соглашения для продолжения установки - Укажите вашу раскладку клавиатуры.
Выберите также язык раскладки клавиатуры - В следующем окне укажите удобный для себя способ переключения между раскладками.
Укажите желаемый способ переключения языковой раскладки - Укажите часовой пояс для корректного определения времени.
Укажите ваш часовой пояс в списке регионов - Для окончания настройки времени выберите тип его отображения.
Выберите метод отображения времени в вашей системе - В выборе раздела укажите «Использовать свободное место», если хотите, чтобы система сама создала необходимые разделы в неразмеченной области.
Выберите пункт «Использовать свободное место» при установке rosa linux - Дождитесь окончания установки.
Подождите пока установка закончится, в процессе будут изменяться слайды - Выберите раздел в качестве загрузочного устройства и задайте задержку при загрузке, если она необходима.
Укажите системный диск для загрузчика операционной системы - Установите пароль для системных изменений.
Установите любой пароль на свой вкус, но запомните его - Добавьте нового пользователя и введите его данные.
Вбейте данные для аккаунта в новой операцонной системе - Укажите имя для вашего компьютера.
Задайте любое имя для вашего устройства - Галочками отметьте службы, которые должны запускаться при включении компьютера.
Настройте автоматический запуск сервисов операционной системы - После сообщения о завершении установки выполните перезагрузку компьютера.
После окончания установки системы требуется перезагрузить компьютер - Установка завершена — остаётся лишь войти в систему.
Войдите в систему с помощью пароля учётной записи
Видео: установка Rosa Linux на компьютер с Windows
Устанавливаем Arch Linux рядом с windows 10
Установка Arch Linux будет значительно более сложной, чем установка других. Если вы не являетесь опытным пользователем, рекомендуется выбрать другую сборку. В ином случае, выполните следующие действия для подготовки к установке системы:
- Скачайте образ системы с официального сайта.
Скачайте сборку Arch Linux с официального сайта - Выполните запись образа на диск. Это можно сделать с помощью специальных программ или средствами Windows — через контекстное меню.
Запишите Arch Linux на носитель удобнм для вас способом - Подключите загрузочный накопитель к компьютеру и перезагрузите компьютер. Во время перезагрузки перейдите в Boot Menu, клавиша для этого появится на экране (обычно F12).
Нажмите F12 для входа в Boot Menu - Установите приоритет загрузки на устройство вашего накопителя. Так, если это загрузочный диск, установите загрузку дисковода перед загрузкой жёсткого диска.
Установите ваш накопитель на первое место в порядке запуска - После этого при перезапуске компьютера вы увидите выбор действий. Нажмите на пункт Boot Arch Linux для начала установки.
Выберите Boot Arch Linux - Будет выполнена проверка на наличие подключения к сети. Введите команду «ping -c 3 www.google.com».
Введите команду для проверки сети перед установкой - Затем создайте разделы системы из свободного пространства. Для запуска этой утилиты используйте команду cgdisk /dev/sda.
Выберите свободное пространство и поочередно создайте разделы для установки - Создайте раздел root для записи системных файлов. Рекомендуется выделить для него хотя бы 20 Гб свободного места.
- Из места, которое осталось, создайте раздел Home. Здесь будут храниться ваши файлы. Но стоит оставить около 1 Гб для EFI-пространства.
- Выделите остаток места в EFI-пространство. Затем нажмите «Записать», чтобы начать установку Windows в созданные разделы.
- Затем отформатируйте каждый из разделов. Для этого используйте следующие команды для форматирования всех трёх разделов поочерёдно:
- mkfs.ext4 /dev/sda1;
- mkfs.ext4 /dev/sda;
- mkfs.fat -F32 /dev/sda3.
Поочередено введите команды для форматирования каждого из разделов
- Затем привяжите разделы к каталогам с помощью следующих команд:
- mount /dev/sda1 /mnt;
- mkdir /mnt/home;
- mount /dev/sda2 /mnt/home;
- mkdir /mnt/boot;
- mount /dev/sda3 /mnt/boot.
Введите команды для привязки разделов к каталогам
Непосредственно установка Arch Linux также потребует от вас ввода команд:
- Введите команду pacstrap -i /mnt base base-devel. Это начнёт установку операционной системы. Дождитесь окончания этого процесса.
Введите команду для начала установки и подтвердите ввод - Затем введите genfstab -U -p /mnt >> /mnt/etc/fstab. Это необходимо для обнаружения системой раздела.
Введите команду для обнаружения разделов в ходе установки - Введите запрос arch-chroot /mnt /bin/bash для доступа к новой ОС.
Введите последнюю команду для доступа к операционной системе arch linux - Задайте формат денежных единиц, введя nano /etc/locale.gen. Найдите строку с записью своей страны и удалите значок решётки около неё. Затем введите команду locale-gen и, после подтверждения, команду echo LANG=en_US.UTF-8 > /etc/locale.conf, где вместо en_US.UTF-8 должна быть строка, у которой вы удалили решётку.
С помощью приведённой команды, установите регион для валюты - Для принятия языковых настроек введите export LANG=en_US.UTF-8 также с соответствующим языком вместо указанного.
Задайте также языковую зону с помощью специалной команды - Следующей настройкой будет установка часового пояса. Введите команду ls /usr/share/zoneinfo/ для отображения доступных часовых поясов, а затем введите команду ln -s /usr/share/zoneinfo/Zone/Subzone /etc/localtime, где вместо Subzone будет указан ваш регион.
- Для установки времени по Гринвичу введите команду hwclock —systohc –-utc.
Введите команду для синхронизации времени операционной системы по Гринвичу - Введите команду echo myhostname > /etc/hostname, где вместо myhostname будет имя вашего компьютера для сети.
- Установите пароль для использования компьютером с помощью команды passwd. Он может быть любым, но важно запомнить его.
Задайте пароль с помощью команды passwd - И затем остаётся задать загрузчик системы. Для современного биоса UEFI это выполняется командами:
- pacman -S grub;
- grub-install —target=x86_64-efi —efi-directory=/boot —bootloader-id=arch_grub —recheck;
- grub-mkconfig -o /boot/grub/grub.cfg.
Установите загрузчик системы с помощью одной из двух команд
- При обычном BIOS команды будут другие:
- pacman -S grub;
- grub-mkconfig -o /boot/grub/grub.cfg.
- Выйдите из установки командой exit и затем введите Reboot для перезапуска компьютера.
Завершите установку командой exit и перезапустите систему командой reboot - После перезапуска введите пароль для входа в систему. Установка завершена.
Водйите в систему arch linux, используя пароль
Установка Ubuntu на VirtualBox Windows 10
Перед установкой операционной системы Ubuntu на VirtualBox необходимо выполнить следующие действия:
- Загрузите непосредственно образ Ubuntu на свой компьютер с официального сайта.
Загрузите образ операционной системы Ubuntu с официального сайта - Установите VirtualBox в свою операционную систему.
Установите VirtualBox на ваш компьютер с помощью автоматического установщика
После этого откройте VirtualBox и выполните следующие шаги:
- Нажмите на значок с надписью New для открытия мастера по созданию виртуальной машины.
Нажмите на кнопку New, панели VirtualBox - Название виртуальной машины может быть любым, а в поле «Тип» выберите Linux.
Введите любое имя для виртуальной машины и нажмите Next - В следующем окне подтвердите количество памяти для виртуальной машины. В зависимости от типа установки значение будет выставлено само. Вы можете увеличить его при необходимости.
Можете оставить значение по умолчанию, если оно устраивает вас - Убедитесь, что маркер установлен на создание новой виртуальной машины, и нажмите на кнопку Create.
Выберите создание новой виртуальой машины и нажмите кнопку Create - Выберите «Динамический» (Dynamically allocated) тип виртуального диска и нажмите «Далее».
Установите динамический размер диска виртуальной машины - В меню расположения и размера диска оставьте значения по умолчанию или же задайте необходимый размер.
Значение диска виртуальной машины также можно оставить по умолчанию - И, наконец, вновь нажмите Create для окончания создания виртуальной машины.
Когда все настройки виртуального диска будут заданы, нажмите Create - Кликните по виртуальной машине, которую вы создали, и перейдите в её настройки.
Выберите виртуальную машину, которую вы создали - Во вкладке Storage добавьте новый носитель, нажав на синюю иконку с плюсом под полем с носителями.
Нажмите на значок с плюсом под обзором носителей - В качестве носителя укажите образ вашей Ubuntu, который вы скачали ранее.
Загрузите образ Ubuntu на вашу виртуальную машину - Откройте этот образ двойным кликом, чтобы он был помещён в систему.
После двойного клика по образу, он должен был загрузиться в меню носителей - В системном разделе настроек убедитесь, что в разделе Boot Order дисковод CD/DVD помещён выше, чем Hard Disk.
Укажите CD/DVD как приоритет загрузки, чтобы образ монтировался при старте системы - Теперь перейдите к запуску и настройке операционной системы. Для этого выберите виртуальную машину и нажмите на кнопку Start.
Нажмите Start для запуска виртуальной системы - Дождитесь окончания загрузки системы.
Дождитесь окончания загрузки системы при первом запуске - Выберите пункт Install Ubuntu. Вы попадёте в окно языковых настроек. Выберите нужный язык и нажмите Continue.
Выберите язык для установки системы в виртуальной машине - Установите галочку для загрузки обновлений во время установки системы.
Установите галочку на загрузку обновлений и намжите Continue - Так как вы ставите операционную систему на виртуальную машину, смело выберите вариант Erase disk and install Ubuntu, при котором все остальные файлы на диске будут стёрты.
Выберите очистку диска — так как мы устанавливаем систему на виртуальную машину, файлы не пострадают - Установите часовой пояс на тот, в котором находится ваш регион.
Для установки времени выберите регион, где вы находитесь - Выберите язык раскладки для клавиатуры.
Выберите язык раскладки и нажмите Continue - Введите данные учётной записи для входа в систему. Пароль необязателен.
Введите данные для дальнейшего входа в систему - Дождитесь окончания установки операционной системы на вашу виртуальную машину.
Дождитесь окончания установки Ubuntu на виртуальную машину - Выполните перезапуск компьютера после окончания установки, нажав Restart Now.
Перезагрузите виртуальную машину, нажатием кнопки Restart Now - Введите пароль и войдите в систему. Установка Ubuntu на виртуальную машину завершена.
Введите пароль для входа в систему
Восстановление загрузки Windows 10 после установки Ubuntu
В случае возникновения ошибок при установке системы может возникнуть сбой загрузчика Windows. Это приведёт к тому, что запустить Windows 10 будет невозможно. К счастью, это не сложно исправить. Вам понадобится установочный диск Windows 10, подготовить который вы можете так же, как и любой другой загрузочный накопитель. Важно, чтобы версия Windows полностью совпадала с той, что у вас установлена. Монтируйте образ, а затем сделайте следующее:
- Выберите пункт «Восстановление системы» в левом нижнем углу экрана.
Нажмите кнопку «Восстановление системы» в левом углу экрана - Перейдите в раздел устранения неисправностей.
Выберите раздел «Поиск и устранение неиспраностей» - Выберите пункт «Восстановление при загрузке». Он произведёт автоматическую проверку системы и исправить проблемы, которые могли возникнуть при загрузке Windows.
Нажмите на кнопку «Восстановление при загрузке
Поставить второй операционной системой Linux — хорошее решение, но важно подобрать сборку исходя из своих целей и технических знаний. При наличии определённых навыков вы сможете без особого труда установить любую из сборок. Использование Linux вместе с Windows 10 поможет вам максимально раскрыть потенциал вашего компьютера.
- Распечатать
Всем привет! Мне нравится писать для людей, о компьютерной сфере — будь то работа в различных программах или развлечение в компьютерных играх. Стараюсь писать только о вещах, с которым знаком лично. Люблю путешествовать и считаю, что только в пути можно по-настоящему познать себя.
Оцените статью:
- 5
- 4
- 3
- 2
- 1
(7 голосов, среднее: 5 из 5)
Поделитесь с друзьями!