Jump to content

I own a laptop that has two OS installed in two different partitions in the hard drive. One is windows 10 and the other one is BOSS Linux. I want to switch the linux distro from BOSS to linux mint. but I am scared that it would kill my laptop which I don't want it to do. and also I have read that the GNU GRUB is in the linux partition and many say that if I wipe that linux partition my laptop won't boot up.

Please can anyone help me in this in a way where all my windows files and data remain untouched and my linux distro is changed?

Link to comment
https://linustechtips.com/topic/1424993-dual-boot-help/
Share on other sites

Link to post
Share on other sites

17 minutes ago, Akash Rai said:

I own a laptop that has two OS installed in two different partitions in the hard drive. One is windows 10 and the other one is BOSS Linux. I want to switch the linux distro from BOSS to linux mint. but I am scared that it would kill my laptop which I don't want it to do. and also I have read that the GNU GRUB is in the linux partition and many say that if I wipe that linux partition my laptop won't boot up.

Please can anyone help me in this in a way where all my windows files and data remain untouched and my linux distro is changed?

Well before anything back up the whole drive so nothing happens if you mess up 馃檪

check your cables!
samsung s10e | android enthusiast | Tech blogger | XC Athlete | Surface pro 4

Link to comment
https://linustechtips.com/topic/1424993-dual-boot-help/#findComment-15353009
Share on other sites

Link to post
Share on other sites

I've done this many times, installing new versions (updated) of Linux, or different versions of Linux. Currently running Mint. I've always just chose the something else option during the Mint install, wiped only the Linux partition. It will re-install / reconfigure Grub, and it should detect your Windows install.

Link to comment
https://linustechtips.com/topic/1424993-dual-boot-help/#findComment-15353056
Share on other sites

Link to post
Share on other sites

Also I don't have the key to the windows OS. as it came preinstalled. Just wanna make sure that if I get messed up and try to reinstall Windows will it get activated automatically? Cause I heard some people say that windows 8 and above authorise the motherboard with the key so unless I change the motherboard It would get automatically activated

Link to comment
https://linustechtips.com/topic/1424993-dual-boot-help/#findComment-15353619
Share on other sites

Link to post
Share on other sites

23 hours ago, Akash Rai said:

Also I don't have the key to the windows OS. as it came preinstalled. Just wanna make sure that if I get messed up and try to reinstall Windows will it get activated automatically? Cause I heard some people say that windows 8 and above authorise the motherboard with the key so unless I change the motherboard It would get automatically activated

There are two types of Windows licenses (actually 3 but the thrid is irrelevant). The first is a retail license. Retail licenses allow you to change hardware to your hearts content. They can also be migrateted to another PC. The second is an OEM license. OEM licenses are tied to the first computer they're installed on and allow all hardware upgrades except for the motherboard.

If you reinstall, Windows should already detect that your hardware has been activated and re-activate it. Just click "I don't have a product key". To be on the safe side, you should probably write down your product key just in the slight chance that it doesn't work. Now, this is very unlikely but it's better safe than sorry.

To do this, copy and paste this script into Notepad and save it as a .vbs file. When you run it, a dialog box will pop up showing your product key.

Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))

Function ConvertToKey(Key)
Const KeyOffset = 52
i = 28
Chars = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = Key(x + KeyOffset) + Cur
Key(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
If (((29 - i) Mod 6) = 0) And (i <> -1) Then
i = i -1
KeyOutput = "-" & KeyOutput
End If
Loop While i >= 0
ConvertToKey = KeyOutput
End Function

Pro tip: if you want someone to see your reply, try quoting them. Just click the single reply icon in the centre of the three icons on the bottom left of a post.

Due to my inability to think before I type, I frequently edit my posts. Please refresh before responding!

Tag me @drdrewnatic or quote me so I can see your response.

______________________________________________________________________________________________________________

CPU: INTEL CORE I5-12600K GPU: ASUS ROG STRIX GEFORCE RTX 2070 OC MB: GIGABYTE B660 AORUS MASTER DDR4 RAM: 2X8GB G.SKILL TRIDENT Z RGB 3200 CL16 BOOT: CRUCIAL P5 PLUS 1TB SSD: SAMSUNG 860 EVO 500GB HDD: SEAGATE 2TB 7200RPM PSU: EVGA G3 650W COOLER: THERMALRIGHT PEERLESS ASSASSIN 120 SE ARGO

01101100 01110100 01110100 01110011 01110100 01101111 01110010 01100101 00101110 01100011 01101111 01101101

Link to comment
https://linustechtips.com/topic/1424993-dual-boot-help/#findComment-15354861
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now