I have 4 hard drives connected on my computer, 3 SSD and 1 HDD. One of the SSD contained Windows 10 OS and the HDD is actively used to store large applications for the Windows OS, and the other SSD is for Games. This leave me with one SSD 120GB that I plan to install Ubuntu 21.04 on. I tried installing ubuntu previously and found out that if I do default Ubuntu setup, Ubuntu bios bootloader and GRUB will be installed the Windows' SSD. I do not want any Ubuntu file or dependency stuff installed on it. So, My questions are
- If I do this, Can I access separate OS using my bios "select boot device" option if ubuntu bootloader/grub not installed on the Windows SSD?
- If I format my Ubuntu SSD, is it safe to assume that nothing linux/ubuntu/grub/bootloader will be left behind My computer?
Thank you.
grub
code is installed in the partition /boot/grub that you dictate, only the MBR (grub stage 0) which is outside of partitions (by definition it's the first 512 bytes of a drive which is reserved for that purpose) is outside of that. When you format a partition/disk you're not talking about the MBR or first 512 bytes (it's outside of data range). You can easily re-write a new MBR over an unwanted MBR though (windows, ubuntu & most OSes have a command for that). Your first point is firmware dependent; yes on many boxes (likely most). – guiverc May 23 '21 at 06:17