Jump to content

Any programs that let you create a bootable partition manager for free?

Lievre

My SSD got corrupted and nothing I've done has been able to reformat it. I've tried literally everything besides trying to do through a partition manager off of a live USB. But everything I've seen is asking for a $60-300 license just to be able to do that. 

Link to comment
Share on other sites

Link to post
Share on other sites

Can't you just download linux onto a usb stick and nuke it from there?

QUOTE/TAG ME WHEN REPLYING

Spend As Much Time Writing Your Question As You Want Me To Spend Responding To It.

If I'm wrong, please point it out. I'm always learning & I won't bite.

 

Desktop:

Delidded Core i7 4770K - GTX 1070 ROG Strix - 16GB DDR3 - Lots of RGB lights I never change

Laptop:

HP Spectre X360 - i7 8560U - MX150 - 2TB SSD - 16GB DDR4

Link to comment
Share on other sites

Link to post
Share on other sites

Rufus 

Wrong

CPU:i7 9700k 5047.5Mhz All Cores Mobo: MSI MPG Z390 Gaming Edge AC, RAM:Corsair Vengeance LPX 16GB 3200MHz DDR4 OC 3467Mhz GPU:MSI RTX 2070 ARMOR 8GB OC Storage:Samsung SSD 970 EVO NVMe M.2 250GB, 2x SSD ADATA PRO SP900 256GB, HDD WD CB 2TB, HDD GREEN 2TB PSU: Seasonic focus plus 750w Gold Display(s): 1st: LG 27UK650-W, 4K, IPS, HDR10, 10bit(8bit + A-FRC). 2nd: Samsung 24" LED Monitor (SE390), Cooling:Fazn CPU Cooler Aero 120T Push/pull Corsair ML PRO Fans Keyboard: Corsair K95 Platinum RGB mx Rapidfire Mouse:Razer Naga Chroma  Headset: Razer Kraken 7.1 Chroma Sound: Logitech X-540 5.1 Surround Sound Speaker Case: Modded Case Inverted, 5 intake 120mm, one exhaust 120mm.

Link to comment
Share on other sites

Link to post
Share on other sites

Any linux distro with a live usb, i.e. pretty much all of them.

F@H
Desktop: i9-13900K, ASUS Z790-E, 64GB DDR5-6000 CL36, RTX3080, 2TB MP600 Pro XT, 2TB SX8200Pro, 2x16TB Ironwolf RAID0, Corsair HX1200, Antec Vortex 360 AIO, Thermaltake Versa H25 TG, Samsung 4K curved 49" TV, 23" secondary, Mountain Everest Max

Mobile SFF rig: i9-9900K, Noctua NH-L9i, Asrock Z390 Phantom ITX-AC, 32GB, GTX1070, 2x1TB SX8200Pro RAID0, 2x5TB 2.5" HDD RAID0, Athena 500W Flex (Noctua fan), Custom 4.7l 3D printed case

 

Asus Zenbook UM325UA, Ryzen 7 5700u, 16GB, 1TB, OLED

 

GPD Win 2

Link to comment
Share on other sites

Link to post
Share on other sites

Sorry for being a bit more pessimistic, but since its a boot drive I'd assume you are trying to format it during windows install, which works more or less the same was as formatting from linux boot, if its unable to even format its likely the drive is destroyed, its either used up all reserve bits and has locked itself to read only, or something like the controller is dead.

Easiest way to test is to connect it to another computer if possible and try to see files on drive, if that works, try moving a small file to the drive, if that fails its locked to read only.

Link to comment
Share on other sites

Link to post
Share on other sites

If the OP explained their situation and intentions a bit better we'd be making better suggestions.

F@H
Desktop: i9-13900K, ASUS Z790-E, 64GB DDR5-6000 CL36, RTX3080, 2TB MP600 Pro XT, 2TB SX8200Pro, 2x16TB Ironwolf RAID0, Corsair HX1200, Antec Vortex 360 AIO, Thermaltake Versa H25 TG, Samsung 4K curved 49" TV, 23" secondary, Mountain Everest Max

Mobile SFF rig: i9-9900K, Noctua NH-L9i, Asrock Z390 Phantom ITX-AC, 32GB, GTX1070, 2x1TB SX8200Pro RAID0, 2x5TB 2.5" HDD RAID0, Athena 500W Flex (Noctua fan), Custom 4.7l 3D printed case

 

Asus Zenbook UM325UA, Ryzen 7 5700u, 16GB, 1TB, OLED

 

GPD Win 2

Link to comment
Share on other sites

Link to post
Share on other sites

33 minutes ago, RadiatingLight said:

Can't you just download linux onto a usb stick and nuke it from there?

I've tried linux. When I say everything, I mean EVERYTHING outside of professional equipment. Linx is unable to even format the drive as it just says that its an unknown memory tyoe "PMBR"

Link to comment
Share on other sites

Link to post
Share on other sites

7 minutes ago, Psykicwarrior said:

Sorry for being a bit more pessimistic, but since its a boot drive I'd assume you are trying to format it during windows install, which works more or less the same was as formatting from linux boot, if its unable to even format its likely the drive is destroyed, its either used up all reserve bits and has locked itself to read only, or something like the controller is dead.

Easiest way to test is to connect it to another computer if possible and try to see files on drive, if that works, try moving a small file to the drive, if that fails its locked to read only.

I guess the drive is dead then, I've tried Linux and Windows boot installers, third party programs, nothing has worked. I'm able to recover data off the drive, but I cant actually reformat it back to NTFS. 

Link to comment
Share on other sites

Link to post
Share on other sites

Quote

Can't you just download linux onto a usb stick and nuke it from there?

I've tried Linux and that didn't work. It just reads it as an unrecognized PMBR partition and is unable to touch it 

Link to comment
Share on other sites

Link to post
Share on other sites

Hi Lievre,

 

Boot from the Linux Live USB again, open a terminal and do the following:

 

sudo fdisk -l

 

Look for you drive, if it's the only drive on the system, it should be /dev/sda. When you find the drive, do this:

 

dd if=/dev/zero of=/dev/sda bs=512 count=1

 

If your drive isn't dead, that should frag your drive and make it ready for formatting. If you get an error or you can't find your drive in the output of sudo fdisk -l, post up your output from the commands.

Link to comment
Share on other sites

Link to post
Share on other sites

2 hours ago, zogthegreat said:

Hi Lievre,

 

Boot from the Linux Live USB again, open a terminal and do the following:

 

sudo fdisk -l

 

Look for you drive, if it's the only drive on the system, it should be /dev/sda. When you find the drive, do this:

 

dd if=/dev/zero of=/dev/sda bs=512 count=1

 

If your drive isn't dead, that should frag your drive and make it ready for formatting. If you get an error or you can't find your drive in the output of sudo fdisk -l, post up your output from the commands.

Hello, the console was able to frag the drive (it seems) as I had no errors and was able to attempt to format it, only I was met with an I/O error presumably because Im doing it over a USB connection. However, I cannot attempt to format it through a pure sata connection as keeping it plugged into a sata connection during post keeps every PC I plug it into unable to boot past the manufacturer logo screen. So close yet so far. 

 

Edit: It didnt work on my main PC, but on one of my older laptops I was able to mess around in the BIOS settings and got it to work

Link to comment
Share on other sites

Link to post
Share on other sites

3 hours ago, Lievre said:

Edit: It didnt work on my main PC, but on one of my older laptops I was able to mess around in the BIOS settings and got it to work

So the drive is good? Or at least working? Please put it back on the machine that you ran the sudo fdisk -l command and run the command again. Copy the output and post it here so we can see what is happening with your drive. Instead of writing everything out by hand, open a text editor, (should be gedit, but just type "notepad" and what ever notepad app your distro should pop up), and do a copy/paste. When you save the output text file, be sure to append it with ".txt". Linux doesn't automatically save files in Windows format and you will probably have to manually edit the formatting to be readable, (you will understand once you do this. Don't worry, sounds complicated, but it's not.)

 

BTW, what is the make and model of your drive? 

Link to comment
Share on other sites

Link to post
Share on other sites

2 hours ago, zogthegreat said:

So the drive is good? Or at least working? Please put it back on the machine that you ran the sudo fdisk -l command and run the command again. Copy the output and post it here so we can see what is happening with your drive. Instead of writing everything out by hand, open a text editor, (should be gedit, but just type "notepad" and what ever notepad app your distro should pop up), and do a copy/paste. When you save the output text file, be sure to append it with ".txt". Linux doesn't automatically save files in Windows format and you will probably have to manually edit the formatting to be readable, (you will understand once you do this. Don't worry, sounds complicated, but it's not.)

 

BTW, what is the make and model of your drive? 

The drive is a Samsung 860 Evo 2TB. I was able to format it in another machine and it works in Linux, but I cant get the drive to work properly when I plug it into a machine when its running windows via sata to USB connection. And in the main machine I had it in, for some reason the PC will not boot past the manufacture logo when it detects this specific drive in the sata slot. I'm sure this has something to do with secure boot or legacy BIOS settings, as disabling/enabling those got it to work in the older laptop, but changing the former didn't do anything, and I can't find the latter anywhere in BIOS settings. 

 

Plugging it into a Windows machine makes it show up as a 0 byte drive I cant access (in Windows explorer that is). I'm currently reformatting it while also wiping all data in linux on the older laptop to see if that fixes anything. I'll try the command again if this doesn't work and post the output logs. 

 

Edit: It should be noted, I was able to install Windows on the drive, I just cant use it on another machine for some reason when its not the boot drive. Along with the problem of not being able to boot into Windows if Legacy BIOS settings is not disabled

 

Edit 2: I'm not sure if the output is supposed to display more than this, but this is what my console says after fragging the drive:

1+0 records in
1+0 records out
512 bytes copied, 0.00243022 s, 211 kB/s

which I assume is completely normal

Link to comment
Share on other sites

Link to post
Share on other sites

Hmm, yes, it does sound like a problem with your computer(s), although it's strange that it happens on multiple computers. 

 

I have a Inspiron 7720 laptop that I have a similar problem with. When I'm switching OS's, (I run Windows, Linux and Mac on the machine), I have to go into the BIOS and on the page where you choose "Exit and Save", there is a setting that says "Load BIOS defaults". Load your BIOS defaults, then go back and reset your preferences, but include the following:

 

Sata Operaton -> AHCI
Secure Boot -> Disabled
Boot List Option -> UEFI. 
Enable Legacy Option ROMs

 

Save and reboot. Hopefully this will fix your problem.

Link to comment
Share on other sites

Link to post
Share on other sites

Unfortunately, this PC doesn't seem to have a Boot List option to change to UEFI mode, or legacy ROMs. It seems Asus didn't want you to run anything besides Windows on their laptop. Which also explains why I was never able to get Linux to run on this. 

Link to comment
Share on other sites

Link to post
Share on other sites

Have you tried a BIOS update? Many manufactures have updated BIOS's that have advanced features. On my Inspiron 7720, the BIOS that the machine shipped with didn't have any uEFI options but after doing a BIOS update, the options were available.

 

Just to ask, are you booting with a legacy, (MBR), bootable USB or an uEFI bootable USB? It could be that your using the wrong type of boot stick.

Link to comment
Share on other sites

Link to post
Share on other sites

This whole problem actually started after updating to a more stable BIOS (I cannot role back the BIOS update to see if that fixes anything). Not sure what happened but the 860 in the system just got corrupted and stopped working after that. And I've tried MBR, legacy, and bootable USB. I can actually boot with the SSD plugged in via USB now, but its still not usable in the machine(s) and I still get hung during post when its in a SATA slot. 

Link to comment
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

×