reconfiguring msdos to gpt

Clash Royale CLAN TAG#URR8PPP up vote
2
down vote
favorite
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:
sudo umount /dev/sdb1 and /dev/sdb5sudo parted /dev/sdb mklabel gptsudo parted /dev/sdb mkpart primary ext3 0% 30%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?
partitioning mount partitions parted
add a comment |Â
up vote
2
down vote
favorite
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:
sudo umount /dev/sdb1 and /dev/sdb5sudo parted /dev/sdb mklabel gptsudo parted /dev/sdb mkpart primary ext3 0% 30%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?
partitioning mount partitions parted
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
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
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:
sudo umount /dev/sdb1 and /dev/sdb5sudo parted /dev/sdb mklabel gptsudo parted /dev/sdb mkpart primary ext3 0% 30%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?
partitioning mount partitions parted
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:
sudo umount /dev/sdb1 and /dev/sdb5sudo parted /dev/sdb mklabel gptsudo parted /dev/sdb mkpart primary ext3 0% 30%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?
partitioning mount partitions parted
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
add a comment |Â
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
add a comment |Â
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
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
add a comment |Â
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))
Sadly I don't have a graphical interface :(
â PostMaloneM3m3r
May 27 at 14:19
add a comment |Â
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
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
add a comment |Â
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
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
add a comment |Â
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
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
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
add a comment |Â
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
add a comment |Â
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))
Sadly I don't have a graphical interface :(
â PostMaloneM3m3r
May 27 at 14:19
add a comment |Â
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))
Sadly I don't have a graphical interface :(
â PostMaloneM3m3r
May 27 at 14:19
add a comment |Â
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))
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))
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
add a comment |Â
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
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
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