Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 4851  / 2 Years ago, fri, july 29, 2022, 6:36:59

I'm trying to install a dual boot on SSD 120 GB using win 7 and ubuntu 13.10/12.04. To avoid redundant trouble I'm trying to install win7 first (and partition the system there) and then use that partitioning to install linux. However, after a successful windows installation when I open gparted (from a live CD) and it says that all the devices have unallocated memory (only ssd shown on the screen but every single device has same thing). When I proceed to installation I get the same unallocated spaces thing.



Question: what can be the reason of this and how can I resolve it to simply install ubuntu on ssd?



enter image description here


More From » 12.04

 Answers
6

You apparently had partitioned the disk using GPT at one point, then used a non GPT aware partitioning tool ( fdisk maybe? ) to re-partition the disk using an msdos partition table. The GPT is still there, and that is what (g)parted is looking at instead of the msdos partition table. You need to remove the invalid GPT if you want to stick with msdos:



sudo apt-get install gdisk
sudo gdisk /dev/sda
x # xpert mode
z # zap gpt


This is the case for your sda only. Run sudo parted -l and add it to your question to see what's wrong with the other drives.


[#27794] Sunday, July 31, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
itchlos

Total Points: 486
Total Questions: 115
Total Answers: 110

Location: Macau
Member since Fri, Apr 28, 2023
1 Year ago
;