Missing partition.

Quick to answer questions about finding your way around Linux Mint as a new user.
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
selman555

Missing partition.

Post by selman555 »

HI,

I have a dualboot set up between Linux Mint 14 Cinnamon and Windows 8.
Everything is working flawlessly, but there's one thing I can't figure out. In windows I have two hard drives, one SSD with two partitions (one windows & one linux) and a 1tb hdd for user data (windows) and storage data.
The storage partition never mounts and I am unable to locate it... Can anyone help me with tis?

Here's the fdisk output:

Code: Select all

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
256 heads, 63 sectors/track, 121126 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x527cd163

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1  4294967295  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.

Disk /dev/sdb: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xc0f5b6b9

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *        2048      206847      102400    7  HPFS/NTFS/exFAT
/dev/sdb2          206848   175632927    87713040    7  HPFS/NTFS/exFAT
/dev/sdb3       175634430   183633919     3999745    5  Extended
/dev/sdb4       183633920   234440703    25403392   83  Linux
/dev/sdb5       175634432   183633919     3999744   82  Linux swap / Solaris
I find it strange that sda (1TB hdd) only has one partition while the Disks app show that there are 5.
The users partitions is there as well, but the size of the data partition is added to it.
The data partition remains visible within Windows 8. I suppose it should be sda5?
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
bigj231

Re: Missing partition.

Post by bigj231 »

You need to use gdisk or parted instead of fdisk. fdisk only works with MBR. The question is why aren't you using GPT on your SSD?
selman555

Re: Missing partition.

Post by selman555 »

bigj231 wrote:You need to use gdisk or parted instead of fdisk. fdisk only works with MBR. The question is why aren't you using GPT on your SSD?
I figured that would be the problem... I just don't know much about how linux works. I tried remounting the drive without any result.
I've read a thing or two about gpt, but I don't really know what it all means and what benifits it holds.
Can you please elaborate?
bigj231

Re: Missing partition.

Post by bigj231 »

The big one is more than 5 partitions. There are ways around this in MBR, but they are kind of a pain IMO. There's also some supposed SSD life benefits and speed increases, as well as EFI compatibility. If you're using BIOS, MBR is fine, but I still prefer GPT. If you have EFI, you will see a speed increase with GPT and EFI boot.
Can you see the drive in any file managers? Sometimes mounting partitions is weird. Try restarting and trying again. Also, try mounting via the mount command.
srs5694
Level 6
Level 6
Posts: 1386
Joined: Mon Feb 27, 2012 1:42 pm

Re: Missing partition.

Post by srs5694 »

Do not try to change your SSD to use GPT. Windows locks its boot mode to the firmware type: It boots in BIOS mode only from MBR disks, and in EFI mode only from GPT disks. Since you're booting Windows from the SSD, and it currently uses MBR, switching to GPT would render Windows unbootable.

For more background information on GPT, see my GPT fdisk documentation, and particularly its page describing GPT.

To help with your problem, I can think of several possible causes:
  • Damaged partition table -- You can check for this with GPT fdisk (gdisk), and in particular use its "v" command. If that reports problems, they may be the cause of your inability to access the disk. Repairs depend on what sort of problem you might find. See the GPT fdisk Web page on disk repairs for information, or post back with details.
  • Incorrect partition type code -- In gdisk, any NTFS partition on a GPT disk should have a type code of 0700 when you view the partition table with "p". If you don't see such a partition on your GPT disk, then it may simply have the wrong type code set. You can correct this with the "t" command followed by the "w" command to write your changes to disk.
  • Missing drivers -- It could be that your disk is plugged into a motherboard connector for which no Windows drivers are installed. There's a Windows hardware information tool. (I've forgotten what it's called or precisely how to locate it, and that might have changed with Windows 8, anyhow.) You can use that to see if Windows can identify the hardware at all, or if it's just the partition table or filesystem that seems to be missing.
  • Filesystem damage -- The filesystem may be damaged, or it might not be NTFS at all. Normally, you can correct damaged filesystems from Windows using the text-mode CHKDSK utility or its GUI counterparts; but if the filesystem isn't showing up at all, it might not actually be NTFS. The output of "sudo blkid" from Linux might be a useful diagnostic to help narrow down such possibilities.
There are likely other possible causes; these are just the ones that spring to the top of my head.
Locked

Return to “Beginner Questions”