Discussion:
gpt formatting and uefi booting
Doll, Margaret Ann
2014-06-25 14:45:54 UTC
Permalink
I have a Dell PowerEdge T120 with 12 4Tb disks. I want to use the first
disk as the system disk and the remaining 11 as a raid 5.

I have the first disk set up as a raid 0. I installed RedHat 6.4 server
software on the first disk. I set up the Dell to use a uefi boot instead
of bios. However, I cannot boot up the new system as the bios does not
support the size of the system disk.

I gather I should set up gpt partitioning instead of the default mbr on
the first disk.

How do I do this?
--
redhat-list mailing list
unsubscribe mailto:redhat-list-***@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
m***@5-cent.us
2014-06-25 14:58:31 UTC
Permalink
Post by Doll, Margaret Ann
I have a Dell PowerEdge T120 with 12 4Tb disks. I want to use the first
disk as the system disk and the remaining 11 as a raid 5.
I have the first disk set up as a raid 0. I installed RedHat 6.4 server
software on the first disk. I set up the Dell to use a uefi boot instead
of bios. However, I cannot boot up the new system as the bios does not
support the size of the system disk.
First, update it to 6.5. Like, yesterday. 6.4 will contain things like the
heartbleed bug, etc.
Post by Doll, Margaret Ann
I gather I should set up gpt partitioning instead of the default mbr on
the first disk.
How do I do this?
You can either use the gui gparted, or the user hostile parted. Note that
if you do this, you'll probably have to reinstall - is that ok?

One other option would be to partition disk 0, say, into two 2GB
partitions, and RAID 1 them. Alternatively, what we're doing here for
drives 1TB and over is to make a root partition of 500GB, and the rest as
another partition.

$ parted -a opt
Post by Doll, Margaret Ann
mklabel gpt
mkpart pri (don't be confused - when they say "name, they mean
primary or extended....)
Post by Doll, Margaret Ann
start: 0.0GB (will make sure it's actually aligned)
end: 100%
q
will make you one big drive.

mark
--
redhat-list mailing list
unsubscribe mailto:redhat-list-***@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
Doll, Margaret Ann
2014-06-25 15:05:43 UTC
Permalink
Thanks, Mark.

I will look for the 6.5 download.

Don't I have to run the parted -a opt on a RedHat system?
Is parted available from the installation DVD?
Post by m***@5-cent.us
Post by Doll, Margaret Ann
I have a Dell PowerEdge T120 with 12 4Tb disks. I want to use the first
disk as the system disk and the remaining 11 as a raid 5.
I have the first disk set up as a raid 0. I installed RedHat 6.4 server
software on the first disk. I set up the Dell to use a uefi boot instead
of bios. However, I cannot boot up the new system as the bios does not
support the size of the system disk.
First, update it to 6.5. Like, yesterday. 6.4 will contain things like the
heartbleed bug, etc.
Post by Doll, Margaret Ann
I gather I should set up gpt partitioning instead of the default mbr on
the first disk.
How do I do this?
You can either use the gui gparted, or the user hostile parted. Note that
if you do this, you'll probably have to reinstall - is that ok?
One other option would be to partition disk 0, say, into two 2GB
partitions, and RAID 1 them. Alternatively, what we're doing here for
drives 1TB and over is to make a root partition of 500GB, and the rest as
another partition.
$ parted -a opt
Post by Doll, Margaret Ann
mklabel gpt
mkpart pri (don't be confused - when they say "name, they mean
primary or extended....)
Post by Doll, Margaret Ann
start: 0.0GB (will make sure it's actually aligned)
end: 100%
q
will make you one big drive.
mark
--
redhat-list mailing list
https://www.redhat.com/mailman/listinfo/redhat-list
--
redhat-list mailing list
unsubscribe mailto:redhat-list-***@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
m***@5-cent.us
2014-06-25 15:17:38 UTC
Permalink
Post by Doll, Margaret Ann
Thanks, Mark.
I will look for the 6.5 download.
Yeah, or run yum update.
Post by Doll, Margaret Ann
Don't I have to run the parted -a opt on a RedHat system?
Is parted available from the installation DVD?
I'm not sure. We run mostly CentOS at work, so the same as RHEL, and it's
available when we're doing our PXEboot installs.

mark
Post by Doll, Margaret Ann
Post by Doll, Margaret Ann
Post by Doll, Margaret Ann
I have a Dell PowerEdge T120 with 12 4Tb disks. I want to use the
first
Post by Doll, Margaret Ann
disk as the system disk and the remaining 11 as a raid 5.
I have the first disk set up as a raid 0. I installed RedHat 6.4
server
Post by Doll, Margaret Ann
software on the first disk. I set up the Dell to use a uefi boot
instead
Post by Doll, Margaret Ann
of bios. However, I cannot boot up the new system as the bios does
not
Post by Doll, Margaret Ann
support the size of the system disk.
First, update it to 6.5. Like, yesterday. 6.4 will contain things like the
heartbleed bug, etc.
Post by Doll, Margaret Ann
I gather I should set up gpt partitioning instead of the default mbr
on
Post by Doll, Margaret Ann
the first disk.
How do I do this?
You can either use the gui gparted, or the user hostile parted. Note that
if you do this, you'll probably have to reinstall - is that ok?
One other option would be to partition disk 0, say, into two 2GB
partitions, and RAID 1 them. Alternatively, what we're doing here for
drives 1TB and over is to make a root partition of 500GB, and the rest as
another partition.
$ parted -a opt
Post by Doll, Margaret Ann
mklabel gpt
mkpart pri (don't be confused - when they say "name, they mean
primary or extended....)
Post by Doll, Margaret Ann
start: 0.0GB (will make sure it's actually aligned)
end: 100%
q
will make you one big drive.
mark
--
redhat-list mailing list
https://www.redhat.com/mailman/listinfo/redhat-list
--
redhat-list mailing list
https://www.redhat.com/mailman/listinfo/redhat-list
--
redhat-list mailing list
unsubscribe mailto:redhat-list-***@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
Doll, Margaret Ann
2014-06-25 15:30:54 UTC
Permalink
Thanks again, Mark. The University does have some PXEboot install tools.
I will try those.
Post by m***@5-cent.us
Post by Doll, Margaret Ann
Thanks, Mark.
I will look for the 6.5 download.
Yeah, or run yum update.
Post by Doll, Margaret Ann
Don't I have to run the parted -a opt on a RedHat system?
Is parted available from the installation DVD?
I'm not sure. We run mostly CentOS at work, so the same as RHEL, and it's
available when we're doing our PXEboot installs.
mark
Post by Doll, Margaret Ann
Post by Doll, Margaret Ann
Post by Doll, Margaret Ann
I have a Dell PowerEdge T120 with 12 4Tb disks. I want to use the
first
Post by Doll, Margaret Ann
disk as the system disk and the remaining 11 as a raid 5.
I have the first disk set up as a raid 0. I installed RedHat 6.4
server
Post by Doll, Margaret Ann
software on the first disk. I set up the Dell to use a uefi boot
instead
Post by Doll, Margaret Ann
of bios. However, I cannot boot up the new system as the bios does
not
Post by Doll, Margaret Ann
support the size of the system disk.
First, update it to 6.5. Like, yesterday. 6.4 will contain things like the
heartbleed bug, etc.
Post by Doll, Margaret Ann
I gather I should set up gpt partitioning instead of the default mbr
on
Post by Doll, Margaret Ann
the first disk.
How do I do this?
You can either use the gui gparted, or the user hostile parted. Note that
if you do this, you'll probably have to reinstall - is that ok?
One other option would be to partition disk 0, say, into two 2GB
partitions, and RAID 1 them. Alternatively, what we're doing here for
drives 1TB and over is to make a root partition of 500GB, and the rest as
another partition.
$ parted -a opt
Post by Doll, Margaret Ann
mklabel gpt
mkpart pri (don't be confused - when they say "name, they mean
primary or extended....)
Post by Doll, Margaret Ann
start: 0.0GB (will make sure it's actually aligned)
end: 100%
q
will make you one big drive.
mark
--
redhat-list mailing list
https://www.redhat.com/mailman/listinfo/redhat-list
--
redhat-list mailing list
https://www.redhat.com/mailman/listinfo/redhat-list
--
redhat-list mailing list
https://www.redhat.com/mailman/listinfo/redhat-list
--
redhat-list mailing list
unsubscribe mailto:redhat-list-***@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
m***@5-cent.us
2014-06-25 17:04:21 UTC
Permalink
Post by Doll, Margaret Ann
Post by m***@5-cent.us
Post by Doll, Margaret Ann
Don't I have to run the parted -a opt on a RedHat system?
Is parted available from the installation DVD?
I'm not sure. We run mostly CentOS at work, so the same as RHEL, and
it's available when we're doing our PXEboot installs.
Thanks again, Mark. The University does have some PXEboot install tools.
I will try those.
Make sure you tell it graphical mode install. I would think that the text
mode just goes and partitions and installs. I forget whether graphical
mode will allow you to do GPT, but what you can do, when it asks for "how
do you want to use the disk", is <f2> (?<f4?) anyway, that gets you to a
command line, and then you can manually partition it, using parted. Then,
after you've created the GPT and partitions, go back to the GUI, and tell
it custom, and then you'll be able to just assign mount points.

mark
--
redhat-list mailing list
unsubscribe mailto:redhat-list-***@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
Loading...