GParted detects 3 partitions instead of 1?
So, I want to use my 2nd HDD for Arch Linux and as storage for my Windows 10 installation. My 2nd HDD only has 1 partition on it (as seen by Windows 10's disk management utility) and that's where all my files are. I wanted to use GParted to chop off the beginning and use it for Linux, but upon booting up my live USB, this is what I saw:
Soo, it looks like I have a tiny partition with the label that Windows uses for the only partition, and then a normal one, an unknown one, and 1MiB of unallocated space?
Also, I can't seem to resize these, since there are the yellow triangles (unable to read the contents of this file system)...
My 1st HDD (okay, it's an SSD but it doesn't matter rn.) seems to work ok here tho..
I tried to use the terminal to find out what's happening and well... have a look!
user@debian:/$ cd mnt/
user@debian:/mnt$ ls /dev/sdb*
/dev/sdb /dev/sdb1
user@debian:/mnt$ sudo mkdir sdb1
user@debian:/mnt$ sudo ntfs-3g /dev/sdb1 /mnt/sdb1/
user@debian:/mnt$ cd sdb1/
And suprisingly, sdb1 had all the files from the partition Windows 10 sees (1tb), and there were no sdb2, or sdb3 in /dev...
Can someone help me fix it and finally resize my partition?
(I tried: chkdsk /f (on the right drive,ofc.), but no luck)
Reply to comment 'cause of long text:
user@debian:~$ sudo fdisk -t dos -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x778bafcd
Device Boot Start End Sectors Size Id Type
/dev/sdb1 63 2047 1985 992.5K 42 SFS
/dev/sdb2 * 2048 1953519615 1953517568 931.5G 42 SFS
/dev/sdb3 1953519616 1953523119 3504 1.7M 42 SFS
Partition 1 does not start on physical sector boundary.
user@debian:~$ sudo fdisk -t gpt -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
linux windows-10 hard-drive partitioning gparted
add a comment |
So, I want to use my 2nd HDD for Arch Linux and as storage for my Windows 10 installation. My 2nd HDD only has 1 partition on it (as seen by Windows 10's disk management utility) and that's where all my files are. I wanted to use GParted to chop off the beginning and use it for Linux, but upon booting up my live USB, this is what I saw:
Soo, it looks like I have a tiny partition with the label that Windows uses for the only partition, and then a normal one, an unknown one, and 1MiB of unallocated space?
Also, I can't seem to resize these, since there are the yellow triangles (unable to read the contents of this file system)...
My 1st HDD (okay, it's an SSD but it doesn't matter rn.) seems to work ok here tho..
I tried to use the terminal to find out what's happening and well... have a look!
user@debian:/$ cd mnt/
user@debian:/mnt$ ls /dev/sdb*
/dev/sdb /dev/sdb1
user@debian:/mnt$ sudo mkdir sdb1
user@debian:/mnt$ sudo ntfs-3g /dev/sdb1 /mnt/sdb1/
user@debian:/mnt$ cd sdb1/
And suprisingly, sdb1 had all the files from the partition Windows 10 sees (1tb), and there were no sdb2, or sdb3 in /dev...
Can someone help me fix it and finally resize my partition?
(I tried: chkdsk /f (on the right drive,ofc.), but no luck)
Reply to comment 'cause of long text:
user@debian:~$ sudo fdisk -t dos -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x778bafcd
Device Boot Start End Sectors Size Id Type
/dev/sdb1 63 2047 1985 992.5K 42 SFS
/dev/sdb2 * 2048 1953519615 1953517568 931.5G 42 SFS
/dev/sdb3 1953519616 1953523119 3504 1.7M 42 SFS
Partition 1 does not start on physical sector boundary.
user@debian:~$ sudo fdisk -t gpt -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
linux windows-10 hard-drive partitioning gparted
Can you showfdisk -t dos -l /dev/sdb
andfdisk -t gpt -l /dev/sdb
?
– grawity
Jan 6 at 14:37
@grawity ok,just a few minutes 'till I reboot and do it
– VDavid003
Jan 6 at 14:41
@grawity it seems to detect 3 partitions as well.. I included the GPT command as well, but I don't think it has anything interesting since it's in MBR format. It's too long, but I added it in the question.
– VDavid003
Jan 6 at 14:54
add a comment |
So, I want to use my 2nd HDD for Arch Linux and as storage for my Windows 10 installation. My 2nd HDD only has 1 partition on it (as seen by Windows 10's disk management utility) and that's where all my files are. I wanted to use GParted to chop off the beginning and use it for Linux, but upon booting up my live USB, this is what I saw:
Soo, it looks like I have a tiny partition with the label that Windows uses for the only partition, and then a normal one, an unknown one, and 1MiB of unallocated space?
Also, I can't seem to resize these, since there are the yellow triangles (unable to read the contents of this file system)...
My 1st HDD (okay, it's an SSD but it doesn't matter rn.) seems to work ok here tho..
I tried to use the terminal to find out what's happening and well... have a look!
user@debian:/$ cd mnt/
user@debian:/mnt$ ls /dev/sdb*
/dev/sdb /dev/sdb1
user@debian:/mnt$ sudo mkdir sdb1
user@debian:/mnt$ sudo ntfs-3g /dev/sdb1 /mnt/sdb1/
user@debian:/mnt$ cd sdb1/
And suprisingly, sdb1 had all the files from the partition Windows 10 sees (1tb), and there were no sdb2, or sdb3 in /dev...
Can someone help me fix it and finally resize my partition?
(I tried: chkdsk /f (on the right drive,ofc.), but no luck)
Reply to comment 'cause of long text:
user@debian:~$ sudo fdisk -t dos -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x778bafcd
Device Boot Start End Sectors Size Id Type
/dev/sdb1 63 2047 1985 992.5K 42 SFS
/dev/sdb2 * 2048 1953519615 1953517568 931.5G 42 SFS
/dev/sdb3 1953519616 1953523119 3504 1.7M 42 SFS
Partition 1 does not start on physical sector boundary.
user@debian:~$ sudo fdisk -t gpt -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
linux windows-10 hard-drive partitioning gparted
So, I want to use my 2nd HDD for Arch Linux and as storage for my Windows 10 installation. My 2nd HDD only has 1 partition on it (as seen by Windows 10's disk management utility) and that's where all my files are. I wanted to use GParted to chop off the beginning and use it for Linux, but upon booting up my live USB, this is what I saw:
Soo, it looks like I have a tiny partition with the label that Windows uses for the only partition, and then a normal one, an unknown one, and 1MiB of unallocated space?
Also, I can't seem to resize these, since there are the yellow triangles (unable to read the contents of this file system)...
My 1st HDD (okay, it's an SSD but it doesn't matter rn.) seems to work ok here tho..
I tried to use the terminal to find out what's happening and well... have a look!
user@debian:/$ cd mnt/
user@debian:/mnt$ ls /dev/sdb*
/dev/sdb /dev/sdb1
user@debian:/mnt$ sudo mkdir sdb1
user@debian:/mnt$ sudo ntfs-3g /dev/sdb1 /mnt/sdb1/
user@debian:/mnt$ cd sdb1/
And suprisingly, sdb1 had all the files from the partition Windows 10 sees (1tb), and there were no sdb2, or sdb3 in /dev...
Can someone help me fix it and finally resize my partition?
(I tried: chkdsk /f (on the right drive,ofc.), but no luck)
Reply to comment 'cause of long text:
user@debian:~$ sudo fdisk -t dos -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x778bafcd
Device Boot Start End Sectors Size Id Type
/dev/sdb1 63 2047 1985 992.5K 42 SFS
/dev/sdb2 * 2048 1953519615 1953517568 931.5G 42 SFS
/dev/sdb3 1953519616 1953523119 3504 1.7M 42 SFS
Partition 1 does not start on physical sector boundary.
user@debian:~$ sudo fdisk -t gpt -l /dev/sdb
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: WDC WD10JPVX-60J
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
linux windows-10 hard-drive partitioning gparted
linux windows-10 hard-drive partitioning gparted
edited Jan 6 at 14:57
VDavid003
asked Jan 6 at 14:23
VDavid003VDavid003
16
16
Can you showfdisk -t dos -l /dev/sdb
andfdisk -t gpt -l /dev/sdb
?
– grawity
Jan 6 at 14:37
@grawity ok,just a few minutes 'till I reboot and do it
– VDavid003
Jan 6 at 14:41
@grawity it seems to detect 3 partitions as well.. I included the GPT command as well, but I don't think it has anything interesting since it's in MBR format. It's too long, but I added it in the question.
– VDavid003
Jan 6 at 14:54
add a comment |
Can you showfdisk -t dos -l /dev/sdb
andfdisk -t gpt -l /dev/sdb
?
– grawity
Jan 6 at 14:37
@grawity ok,just a few minutes 'till I reboot and do it
– VDavid003
Jan 6 at 14:41
@grawity it seems to detect 3 partitions as well.. I included the GPT command as well, but I don't think it has anything interesting since it's in MBR format. It's too long, but I added it in the question.
– VDavid003
Jan 6 at 14:54
Can you show
fdisk -t dos -l /dev/sdb
and fdisk -t gpt -l /dev/sdb
?– grawity
Jan 6 at 14:37
Can you show
fdisk -t dos -l /dev/sdb
and fdisk -t gpt -l /dev/sdb
?– grawity
Jan 6 at 14:37
@grawity ok,just a few minutes 'till I reboot and do it
– VDavid003
Jan 6 at 14:41
@grawity ok,just a few minutes 'till I reboot and do it
– VDavid003
Jan 6 at 14:41
@grawity it seems to detect 3 partitions as well.. I included the GPT command as well, but I don't think it has anything interesting since it's in MBR format. It's too long, but I added it in the question.
– VDavid003
Jan 6 at 14:54
@grawity it seems to detect 3 partitions as well.. I included the GPT command as well, but I don't think it has anything interesting since it's in MBR format. It's too long, but I added it in the question.
– VDavid003
Jan 6 at 14:54
add a comment |
1 Answer
1
active
oldest
votes
Fixed it!
Turns out the disk was "Dynamic" as Windows said, but after converting it back to basic, it works perfectly now!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1391175%2fgparted-detects-3-partitions-instead-of-1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Fixed it!
Turns out the disk was "Dynamic" as Windows said, but after converting it back to basic, it works perfectly now!
add a comment |
Fixed it!
Turns out the disk was "Dynamic" as Windows said, but after converting it back to basic, it works perfectly now!
add a comment |
Fixed it!
Turns out the disk was "Dynamic" as Windows said, but after converting it back to basic, it works perfectly now!
Fixed it!
Turns out the disk was "Dynamic" as Windows said, but after converting it back to basic, it works perfectly now!
answered Jan 6 at 17:00
VDavid003VDavid003
16
16
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1391175%2fgparted-detects-3-partitions-instead-of-1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you show
fdisk -t dos -l /dev/sdb
andfdisk -t gpt -l /dev/sdb
?– grawity
Jan 6 at 14:37
@grawity ok,just a few minutes 'till I reboot and do it
– VDavid003
Jan 6 at 14:41
@grawity it seems to detect 3 partitions as well.. I included the GPT command as well, but I don't think it has anything interesting since it's in MBR format. It's too long, but I added it in the question.
– VDavid003
Jan 6 at 14:54