reconfiguring msdos to gpt

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
2
down vote

favorite
2












Im currently trying to make my sdb gpt and have partitions primary but I don't know how to proceed properly.



what I did was:



  1. sudo umount /dev/sdb1 and /dev/sdb5

  2. sudo parted /dev/sdb mklabel gpt

  3. sudo parted /dev/sdb mkpart primary ext3 0% 30%

  4. sudo parted /dev/sdb mkpart primary ext4 30% 90%

and it shows me this:





How to make type primary and file system like shown in the commands?







share|improve this question






















  • The process is after creating a partition you need to format those partitions as desired. Please follow the provided answer below. But note you need to quit parted first then format them
    – George Udosen
    May 27 at 6:35











  • @GeorgeUdosen ok and how do you make them primary since it's only the name?
    – PostMaloneM3m3r
    May 27 at 14:25







  • 1




    This is got not MBR, here you can have up to 128 primary partitions. You already have two primary partitions as per your parted command
    – George Udosen
    May 27 at 15:16










  • Ohhh because I see it's written name not type, so I thought it wasn't primary thanks for clearing that up!
    – PostMaloneM3m3r
    May 27 at 15:17














up vote
2
down vote

favorite
2












Im currently trying to make my sdb gpt and have partitions primary but I don't know how to proceed properly.



what I did was:



  1. sudo umount /dev/sdb1 and /dev/sdb5

  2. sudo parted /dev/sdb mklabel gpt

  3. sudo parted /dev/sdb mkpart primary ext3 0% 30%

  4. sudo parted /dev/sdb mkpart primary ext4 30% 90%

and it shows me this:





How to make type primary and file system like shown in the commands?







share|improve this question






















  • The process is after creating a partition you need to format those partitions as desired. Please follow the provided answer below. But note you need to quit parted first then format them
    – George Udosen
    May 27 at 6:35











  • @GeorgeUdosen ok and how do you make them primary since it's only the name?
    – PostMaloneM3m3r
    May 27 at 14:25







  • 1




    This is got not MBR, here you can have up to 128 primary partitions. You already have two primary partitions as per your parted command
    – George Udosen
    May 27 at 15:16










  • Ohhh because I see it's written name not type, so I thought it wasn't primary thanks for clearing that up!
    – PostMaloneM3m3r
    May 27 at 15:17












up vote
2
down vote

favorite
2









up vote
2
down vote

favorite
2






2





Im currently trying to make my sdb gpt and have partitions primary but I don't know how to proceed properly.



what I did was:



  1. sudo umount /dev/sdb1 and /dev/sdb5

  2. sudo parted /dev/sdb mklabel gpt

  3. sudo parted /dev/sdb mkpart primary ext3 0% 30%

  4. sudo parted /dev/sdb mkpart primary ext4 30% 90%

and it shows me this:





How to make type primary and file system like shown in the commands?







share|improve this question














Im currently trying to make my sdb gpt and have partitions primary but I don't know how to proceed properly.



what I did was:



  1. sudo umount /dev/sdb1 and /dev/sdb5

  2. sudo parted /dev/sdb mklabel gpt

  3. sudo parted /dev/sdb mkpart primary ext3 0% 30%

  4. sudo parted /dev/sdb mkpart primary ext4 30% 90%

and it shows me this:





How to make type primary and file system like shown in the commands?









share|improve this question













share|improve this question




share|improve this question








edited May 27 at 6:54









Kevin Bowen

13.8k145769




13.8k145769










asked May 27 at 2:49









PostMaloneM3m3r

355




355











  • The process is after creating a partition you need to format those partitions as desired. Please follow the provided answer below. But note you need to quit parted first then format them
    – George Udosen
    May 27 at 6:35











  • @GeorgeUdosen ok and how do you make them primary since it's only the name?
    – PostMaloneM3m3r
    May 27 at 14:25







  • 1




    This is got not MBR, here you can have up to 128 primary partitions. You already have two primary partitions as per your parted command
    – George Udosen
    May 27 at 15:16










  • Ohhh because I see it's written name not type, so I thought it wasn't primary thanks for clearing that up!
    – PostMaloneM3m3r
    May 27 at 15:17
















  • The process is after creating a partition you need to format those partitions as desired. Please follow the provided answer below. But note you need to quit parted first then format them
    – George Udosen
    May 27 at 6:35











  • @GeorgeUdosen ok and how do you make them primary since it's only the name?
    – PostMaloneM3m3r
    May 27 at 14:25







  • 1




    This is got not MBR, here you can have up to 128 primary partitions. You already have two primary partitions as per your parted command
    – George Udosen
    May 27 at 15:16










  • Ohhh because I see it's written name not type, so I thought it wasn't primary thanks for clearing that up!
    – PostMaloneM3m3r
    May 27 at 15:17















The process is after creating a partition you need to format those partitions as desired. Please follow the provided answer below. But note you need to quit parted first then format them
– George Udosen
May 27 at 6:35





The process is after creating a partition you need to format those partitions as desired. Please follow the provided answer below. But note you need to quit parted first then format them
– George Udosen
May 27 at 6:35













@GeorgeUdosen ok and how do you make them primary since it's only the name?
– PostMaloneM3m3r
May 27 at 14:25





@GeorgeUdosen ok and how do you make them primary since it's only the name?
– PostMaloneM3m3r
May 27 at 14:25





1




1




This is got not MBR, here you can have up to 128 primary partitions. You already have two primary partitions as per your parted command
– George Udosen
May 27 at 15:16




This is got not MBR, here you can have up to 128 primary partitions. You already have two primary partitions as per your parted command
– George Udosen
May 27 at 15:16












Ohhh because I see it's written name not type, so I thought it wasn't primary thanks for clearing that up!
– PostMaloneM3m3r
May 27 at 15:17




Ohhh because I see it's written name not type, so I thought it wasn't primary thanks for clearing that up!
– PostMaloneM3m3r
May 27 at 15:17










2 Answers
2






active

oldest

votes

















up vote
3
down vote



accepted










After creating partitions on the disk in question you need to format the partitions to the desired form using the commands below after first quiting from parted:



sudo mkfs -t ext3 /dev/sdb1
sudo mkfs -t ext4 /dev/sdb2





share|improve this answer






















  • Ok it did change the file systems but, how do I make them both primary since it's only the name.
    – PostMaloneM3m3r
    May 27 at 14:22







  • 1




    @PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
    – mook765
    May 27 at 16:35










  • @mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
    – PostMaloneM3m3r
    May 27 at 20:30

















up vote
1
down vote













If you have a graphical desktop (for example standard Ubuntu), you can install gparted



sudo apt install gparted


and use it in an intuitive way to



  • create partition table via the pulldown menu 'Device - Create partition table'

  • create partitions and file systems

  • modify partitions (move, increase or decrease size, add labels and flags, change content (file system or swap))





share|improve this answer




















  • Sadly I don't have a graphical interface :(
    – PostMaloneM3m3r
    May 27 at 14:19










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
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',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1040757%2freconfiguring-msdos-to-gpt%23new-answer', 'question_page');

);

Post as a guest






























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
3
down vote



accepted










After creating partitions on the disk in question you need to format the partitions to the desired form using the commands below after first quiting from parted:



sudo mkfs -t ext3 /dev/sdb1
sudo mkfs -t ext4 /dev/sdb2





share|improve this answer






















  • Ok it did change the file systems but, how do I make them both primary since it's only the name.
    – PostMaloneM3m3r
    May 27 at 14:22







  • 1




    @PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
    – mook765
    May 27 at 16:35










  • @mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
    – PostMaloneM3m3r
    May 27 at 20:30














up vote
3
down vote



accepted










After creating partitions on the disk in question you need to format the partitions to the desired form using the commands below after first quiting from parted:



sudo mkfs -t ext3 /dev/sdb1
sudo mkfs -t ext4 /dev/sdb2





share|improve this answer






















  • Ok it did change the file systems but, how do I make them both primary since it's only the name.
    – PostMaloneM3m3r
    May 27 at 14:22







  • 1




    @PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
    – mook765
    May 27 at 16:35










  • @mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
    – PostMaloneM3m3r
    May 27 at 20:30












up vote
3
down vote



accepted







up vote
3
down vote



accepted






After creating partitions on the disk in question you need to format the partitions to the desired form using the commands below after first quiting from parted:



sudo mkfs -t ext3 /dev/sdb1
sudo mkfs -t ext4 /dev/sdb2





share|improve this answer














After creating partitions on the disk in question you need to format the partitions to the desired form using the commands below after first quiting from parted:



sudo mkfs -t ext3 /dev/sdb1
sudo mkfs -t ext4 /dev/sdb2






share|improve this answer














share|improve this answer



share|improve this answer








edited May 27 at 6:37









George Udosen

16.1k93356




16.1k93356










answered May 27 at 6:10









muclux

2,1181521




2,1181521











  • Ok it did change the file systems but, how do I make them both primary since it's only the name.
    – PostMaloneM3m3r
    May 27 at 14:22







  • 1




    @PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
    – mook765
    May 27 at 16:35










  • @mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
    – PostMaloneM3m3r
    May 27 at 20:30
















  • Ok it did change the file systems but, how do I make them both primary since it's only the name.
    – PostMaloneM3m3r
    May 27 at 14:22







  • 1




    @PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
    – mook765
    May 27 at 16:35










  • @mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
    – PostMaloneM3m3r
    May 27 at 20:30















Ok it did change the file systems but, how do I make them both primary since it's only the name.
– PostMaloneM3m3r
May 27 at 14:22





Ok it did change the file systems but, how do I make them both primary since it's only the name.
– PostMaloneM3m3r
May 27 at 14:22





1




1




@PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
– mook765
May 27 at 16:35




@PostMaloneM3m3r All partitions in GPT are primary partitions, no need to do anything.
– mook765
May 27 at 16:35












@mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
– PostMaloneM3m3r
May 27 at 20:30




@mook765 thanks for clearing that up I really thought they weren't primary partitions. I marked this post as the accepted because my partitions are primary and also because all I'll have to do is follow the instructions on this post.
– PostMaloneM3m3r
May 27 at 20:30












up vote
1
down vote













If you have a graphical desktop (for example standard Ubuntu), you can install gparted



sudo apt install gparted


and use it in an intuitive way to



  • create partition table via the pulldown menu 'Device - Create partition table'

  • create partitions and file systems

  • modify partitions (move, increase or decrease size, add labels and flags, change content (file system or swap))





share|improve this answer




















  • Sadly I don't have a graphical interface :(
    – PostMaloneM3m3r
    May 27 at 14:19














up vote
1
down vote













If you have a graphical desktop (for example standard Ubuntu), you can install gparted



sudo apt install gparted


and use it in an intuitive way to



  • create partition table via the pulldown menu 'Device - Create partition table'

  • create partitions and file systems

  • modify partitions (move, increase or decrease size, add labels and flags, change content (file system or swap))





share|improve this answer




















  • Sadly I don't have a graphical interface :(
    – PostMaloneM3m3r
    May 27 at 14:19












up vote
1
down vote










up vote
1
down vote









If you have a graphical desktop (for example standard Ubuntu), you can install gparted



sudo apt install gparted


and use it in an intuitive way to



  • create partition table via the pulldown menu 'Device - Create partition table'

  • create partitions and file systems

  • modify partitions (move, increase or decrease size, add labels and flags, change content (file system or swap))





share|improve this answer












If you have a graphical desktop (for example standard Ubuntu), you can install gparted



sudo apt install gparted


and use it in an intuitive way to



  • create partition table via the pulldown menu 'Device - Create partition table'

  • create partitions and file systems

  • modify partitions (move, increase or decrease size, add labels and flags, change content (file system or swap))






share|improve this answer












share|improve this answer



share|improve this answer










answered May 27 at 7:47









sudodus

19.8k32666




19.8k32666











  • Sadly I don't have a graphical interface :(
    – PostMaloneM3m3r
    May 27 at 14:19
















  • Sadly I don't have a graphical interface :(
    – PostMaloneM3m3r
    May 27 at 14:19















Sadly I don't have a graphical interface :(
– PostMaloneM3m3r
May 27 at 14:19




Sadly I don't have a graphical interface :(
– PostMaloneM3m3r
May 27 at 14:19












 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1040757%2freconfiguring-msdos-to-gpt%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

Which professions warranted travel in Medieval times?

How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

Trouble downloading packages list due to a “Hash sum mismatch” error