Proper way of partitioning a secondary hard drive for ubuntu
Since I have two hard drives (C and D) and my D hard drive has a lot more unused space, I want to partition it so I can put ubuntu on it. There are two main concerns I have. The first is if I will still be able to put stuff on the unused space (the partition without ubuntu) of the D drive from windows. The second is if I can just put the grub bootloader on the D drive, that way windows will automatically load unless I intentionally boot from D. This seems doable from the little bit of research I've done but I want to take the proper precautionary steps. I'm also a bit unsure of how the file systems will work (NTFS vs ext4).
boot grub2 partitioning hard-drive
add a comment |
Since I have two hard drives (C and D) and my D hard drive has a lot more unused space, I want to partition it so I can put ubuntu on it. There are two main concerns I have. The first is if I will still be able to put stuff on the unused space (the partition without ubuntu) of the D drive from windows. The second is if I can just put the grub bootloader on the D drive, that way windows will automatically load unless I intentionally boot from D. This seems doable from the little bit of research I've done but I want to take the proper precautionary steps. I'm also a bit unsure of how the file systems will work (NTFS vs ext4).
boot grub2 partitioning hard-drive
add a comment |
Since I have two hard drives (C and D) and my D hard drive has a lot more unused space, I want to partition it so I can put ubuntu on it. There are two main concerns I have. The first is if I will still be able to put stuff on the unused space (the partition without ubuntu) of the D drive from windows. The second is if I can just put the grub bootloader on the D drive, that way windows will automatically load unless I intentionally boot from D. This seems doable from the little bit of research I've done but I want to take the proper precautionary steps. I'm also a bit unsure of how the file systems will work (NTFS vs ext4).
boot grub2 partitioning hard-drive
Since I have two hard drives (C and D) and my D hard drive has a lot more unused space, I want to partition it so I can put ubuntu on it. There are two main concerns I have. The first is if I will still be able to put stuff on the unused space (the partition without ubuntu) of the D drive from windows. The second is if I can just put the grub bootloader on the D drive, that way windows will automatically load unless I intentionally boot from D. This seems doable from the little bit of research I've done but I want to take the proper precautionary steps. I'm also a bit unsure of how the file systems will work (NTFS vs ext4).
boot grub2 partitioning hard-drive
boot grub2 partitioning hard-drive
asked Mar 14 at 5:33
Bdh2991Bdh2991
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can take help of this link dual boot windows and ubuntu if you want to perform every step with utmost caution. It will also guide you on the partitioning Windows
OS the right way.
Once you are done installing Ubuntu, perform the following steps to setup your grub menu:
- Boot into
Windows
OS - Combine
Windows
+r
together and typecmd
to open command prompt. - Type
bcdedit /set "{bootmgr}" path EFIubuntugrubx64.efi
and hitenter
key
P.S - You do not need to have admin rights on command prompt before you perform the above action.
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
add a comment |
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',
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%2faskubuntu.com%2fquestions%2f1125504%2fproper-way-of-partitioning-a-secondary-hard-drive-for-ubuntu%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
You can take help of this link dual boot windows and ubuntu if you want to perform every step with utmost caution. It will also guide you on the partitioning Windows
OS the right way.
Once you are done installing Ubuntu, perform the following steps to setup your grub menu:
- Boot into
Windows
OS - Combine
Windows
+r
together and typecmd
to open command prompt. - Type
bcdedit /set "{bootmgr}" path EFIubuntugrubx64.efi
and hitenter
key
P.S - You do not need to have admin rights on command prompt before you perform the above action.
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
add a comment |
You can take help of this link dual boot windows and ubuntu if you want to perform every step with utmost caution. It will also guide you on the partitioning Windows
OS the right way.
Once you are done installing Ubuntu, perform the following steps to setup your grub menu:
- Boot into
Windows
OS - Combine
Windows
+r
together and typecmd
to open command prompt. - Type
bcdedit /set "{bootmgr}" path EFIubuntugrubx64.efi
and hitenter
key
P.S - You do not need to have admin rights on command prompt before you perform the above action.
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
add a comment |
You can take help of this link dual boot windows and ubuntu if you want to perform every step with utmost caution. It will also guide you on the partitioning Windows
OS the right way.
Once you are done installing Ubuntu, perform the following steps to setup your grub menu:
- Boot into
Windows
OS - Combine
Windows
+r
together and typecmd
to open command prompt. - Type
bcdedit /set "{bootmgr}" path EFIubuntugrubx64.efi
and hitenter
key
P.S - You do not need to have admin rights on command prompt before you perform the above action.
You can take help of this link dual boot windows and ubuntu if you want to perform every step with utmost caution. It will also guide you on the partitioning Windows
OS the right way.
Once you are done installing Ubuntu, perform the following steps to setup your grub menu:
- Boot into
Windows
OS - Combine
Windows
+r
together and typecmd
to open command prompt. - Type
bcdedit /set "{bootmgr}" path EFIubuntugrubx64.efi
and hitenter
key
P.S - You do not need to have admin rights on command prompt before you perform the above action.
answered Mar 14 at 6:10
Manu MathurManu Mathur
54129
54129
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
add a comment |
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
I'm assuming the instructions on that link are the same for doing it on a primary and secondary hard drive right? But also doesnt the bcedit command you posted make grub always the default bootloader? I was wondering if there was a way to have grub only on the secondary drive, that way my PC will normally boot with windows unless I choose which drive to boot from. Hopefully what I'm asking makes sense.
– Bdh2991
Mar 14 at 17:03
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
The process remains the same brother irrespective of the hard drive. You just need to be sure before you hit the Enter key on any step. Also, you are right. The 'Bcdedit" command makes GRUB the default and I guess - no way exists which allows you to have grub only on the secondary drive. I have never seen any such guide/link/method that could allow you to do so. So, my recommendation would be to stick with this else you might damage your hard disk or any partition in particular.
– Manu Mathur
Mar 14 at 17:14
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
alright thanks for the help and clarification
– Bdh2991
Mar 14 at 17:27
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1125504%2fproper-way-of-partitioning-a-secondary-hard-drive-for-ubuntu%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