Dual boot: Difference between revisions

From 太極
Jump to navigation Jump to search
Tags: mobile edit mobile web edit
Line 107: Line 107:
* http://razvangavril.com/linux-administration/custom-ubuntu-server-iso/ The instruction is organized and is very similar to the above.
* http://razvangavril.com/linux-administration/custom-ubuntu-server-iso/ The instruction is organized and is very similar to the above.
* http://amjjawad.blogspot.com/2013/07/ubuntu-mini-iso-installation-process.html It does not talk about creating a customized iso. It talks about how to install Ubuntu from the minimal CD (~40M). The minimal CD will download the packages in the installation process.
* http://amjjawad.blogspot.com/2013/07/ubuntu-mini-iso-installation-process.html It does not talk about creating a customized iso. It talks about how to install Ubuntu from the minimal CD (~40M). The minimal CD will download the packages in the installation process.
= Netboot =
* [https://help.ubuntu.com/community/Installation/Netboot Ubuntu Netboot Install]
* Videos
** [https://youtu.be/zQ-TQhmjhuc?t=86 Booting from the network with PXE] Concept!
** [https://youtu.be/5qyTLfJrQM4 PXE Explained: How to deploy an operating system]
** [https://youtu.be/S-gz9lizD2o Install Ubuntu 16.04 via PXE and network boot]
** [https://youtu.be/HTJ4jQhmkFE How To Install Windows 10/7/8/Linux OS Using Network (Step by Step)]
** [https://youtu.be/qHHGahJYAvw How to Install Windows 10 or any OS from Network Boot (PXE BOOT) Step by Step Guide]

Revision as of 08:40, 29 April 2022

Dual boot Windows and Ubuntu

Dual Booting with Windows. In your Windows install, open Control Panel and head to “Power Options”. Select “Choose what the power buttons do”, select “Change settings that are currently unavailable”, then disable the “fast startup” setting. Note that Windows updates may occasionally turn this setting back on without asking, so if you are unable to boot into Pop!_OS, check this setting first.

Dual Booting Ubuntu and Windows With a SSD and a HDD

My case

  • /dev/sda - Windows
  • /dev/sdb - bigdisk
  • /dev/sdc - Linux

When I need to upgrade Linux,

  • No need to unplug Windows SSD
  • Run the live Linux (it's a little slow to show the first screen on my 2008 ECS P45T-A computer)
  • Run GParted and delete all partitions on /dev/sdc
  • Accept the default option to install Linux Mint alongside Windows 10
  • Continue the installation

Change the default boot OS

See Grub.

Dual boot Pop!_OS and Windows

https://support.system76.com/articles/dual-booting/

Dual boot Ubuntu and Arch Linux

http://www.linuxandubuntu.com/home/dual-boot-ubuntu-and-arch-linux

MultiSystem – Create a MultiBoot USB from Linux

Create customized ubuntu iso

Note that the Ubuntu Mini Remix by default contains only 3 repositories. We may want to add some more.

deb http://archive.ubuntu.com/ubuntu/ trusty main restricted
deb http://security.ubuntu.com/ubuntu/ trusty-security main restricted
deb http://archive.ubuntu.com/ubuntu/ trusty-updates main restricted

while for example an official v14.04 xubuntu contains 22 sources,

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main

Netboot