What mount point should I use for HDD if I install /, swap and /home on SSD?
I'm a complete beginner so please bear with me.
My desktop has 500GB of SSD and 2TB of HDD - I want to dual boot Windows 10 and Ubuntu on it. I've installed Windows 10 so now I have ~260GB SSD and ~975GB HDD for Ubuntu. My RAM is 16 GB so I thought of using ~50GB for /
, ~16GB for swap
and the rest for /home
(all on SSD).
I intend to use the HDD to store videos and whatnot. But I'm not sure which mount point I should choose for this free space:
Do I just create a mount point like /mnt
? I was reading other threads about this but I wasn't sure if it should be left as free space during installation then mounted afterwards. I don't really understand 'mounting' to be honest.
- Set up your HDD to mount automatically on boot Easiest way to do this imo is through the gnome-disks GUI tool (to use it, just open a
terminal - Ctrl+Alt+T, type in sudo gnome-disks and enter your
password). Select your HDD, click on the cogwheels -> "Edit Mount
Options...", enable "Mount at system startup" and choose a mount point
(for example, /mnt/sda1 or whatever that device is identified as, or
/media/user/DATA).
https://askubuntu.com/a/1048871
dual-boot partitioning system-installation mountpoint
New contributor
add a comment |
I'm a complete beginner so please bear with me.
My desktop has 500GB of SSD and 2TB of HDD - I want to dual boot Windows 10 and Ubuntu on it. I've installed Windows 10 so now I have ~260GB SSD and ~975GB HDD for Ubuntu. My RAM is 16 GB so I thought of using ~50GB for /
, ~16GB for swap
and the rest for /home
(all on SSD).
I intend to use the HDD to store videos and whatnot. But I'm not sure which mount point I should choose for this free space:
Do I just create a mount point like /mnt
? I was reading other threads about this but I wasn't sure if it should be left as free space during installation then mounted afterwards. I don't really understand 'mounting' to be honest.
- Set up your HDD to mount automatically on boot Easiest way to do this imo is through the gnome-disks GUI tool (to use it, just open a
terminal - Ctrl+Alt+T, type in sudo gnome-disks and enter your
password). Select your HDD, click on the cogwheels -> "Edit Mount
Options...", enable "Mount at system startup" and choose a mount point
(for example, /mnt/sda1 or whatever that device is identified as, or
/media/user/DATA).
https://askubuntu.com/a/1048871
dual-boot partitioning system-installation mountpoint
New contributor
1
You already know your mount points: /, /home, and /swap. Map those locations to the appropriate partitions (sda1, etc) in the file /etc/fstab
– user535733
Dec 18 at 3:18
1
@user535733 You mean I just manually type out /etc/fstab? This is my first time using Linux so I'm not familiar with the file system
– 5areductase
Dec 18 at 3:35
No. Look up how to use /etc/fstab. Honestly, were I in your shoes, I wouldn't muck about with extra partitions and mount points at all; those are intermediate-level stuff, and not easy for a beginner. The Ubuntu installer defaults are sane and safe for most new users - try them. Many new users try a bunch of different things in their first year, and some (repartition and) reinstall Ubuntu more than once. Don't paint yourself into a corner by chopping up your disk into a dozen partitions needlessly.
– user535733
Dec 18 at 3:48
See How to use manual partitioning during installation? When you install Ubuntu have both drives attached to the system, and during installation use advanced partitioning option to map mountpoints ( yes, they are exactly/
,/home
) to appropriate drives. 18.04 comes with swap file by default, which would be in/
so consider just using that if you have sufficiently large RAM. Changes will be written to/etc/fstab
by the installer
– Sergiy Kolodyazhnyy
Dec 18 at 5:05
Yeah I think I get what to do for the SSD portion. What I don't know is what I should do for the ~975GB of HDD portion as seen in the screenshot.
– 5areductase
Dec 18 at 15:13
add a comment |
I'm a complete beginner so please bear with me.
My desktop has 500GB of SSD and 2TB of HDD - I want to dual boot Windows 10 and Ubuntu on it. I've installed Windows 10 so now I have ~260GB SSD and ~975GB HDD for Ubuntu. My RAM is 16 GB so I thought of using ~50GB for /
, ~16GB for swap
and the rest for /home
(all on SSD).
I intend to use the HDD to store videos and whatnot. But I'm not sure which mount point I should choose for this free space:
Do I just create a mount point like /mnt
? I was reading other threads about this but I wasn't sure if it should be left as free space during installation then mounted afterwards. I don't really understand 'mounting' to be honest.
- Set up your HDD to mount automatically on boot Easiest way to do this imo is through the gnome-disks GUI tool (to use it, just open a
terminal - Ctrl+Alt+T, type in sudo gnome-disks and enter your
password). Select your HDD, click on the cogwheels -> "Edit Mount
Options...", enable "Mount at system startup" and choose a mount point
(for example, /mnt/sda1 or whatever that device is identified as, or
/media/user/DATA).
https://askubuntu.com/a/1048871
dual-boot partitioning system-installation mountpoint
New contributor
I'm a complete beginner so please bear with me.
My desktop has 500GB of SSD and 2TB of HDD - I want to dual boot Windows 10 and Ubuntu on it. I've installed Windows 10 so now I have ~260GB SSD and ~975GB HDD for Ubuntu. My RAM is 16 GB so I thought of using ~50GB for /
, ~16GB for swap
and the rest for /home
(all on SSD).
I intend to use the HDD to store videos and whatnot. But I'm not sure which mount point I should choose for this free space:
Do I just create a mount point like /mnt
? I was reading other threads about this but I wasn't sure if it should be left as free space during installation then mounted afterwards. I don't really understand 'mounting' to be honest.
- Set up your HDD to mount automatically on boot Easiest way to do this imo is through the gnome-disks GUI tool (to use it, just open a
terminal - Ctrl+Alt+T, type in sudo gnome-disks and enter your
password). Select your HDD, click on the cogwheels -> "Edit Mount
Options...", enable "Mount at system startup" and choose a mount point
(for example, /mnt/sda1 or whatever that device is identified as, or
/media/user/DATA).
https://askubuntu.com/a/1048871
dual-boot partitioning system-installation mountpoint
dual-boot partitioning system-installation mountpoint
New contributor
New contributor
edited Dec 18 at 4:38
muru
1
1
New contributor
asked Dec 18 at 3:01
5areductase
1
1
New contributor
New contributor
1
You already know your mount points: /, /home, and /swap. Map those locations to the appropriate partitions (sda1, etc) in the file /etc/fstab
– user535733
Dec 18 at 3:18
1
@user535733 You mean I just manually type out /etc/fstab? This is my first time using Linux so I'm not familiar with the file system
– 5areductase
Dec 18 at 3:35
No. Look up how to use /etc/fstab. Honestly, were I in your shoes, I wouldn't muck about with extra partitions and mount points at all; those are intermediate-level stuff, and not easy for a beginner. The Ubuntu installer defaults are sane and safe for most new users - try them. Many new users try a bunch of different things in their first year, and some (repartition and) reinstall Ubuntu more than once. Don't paint yourself into a corner by chopping up your disk into a dozen partitions needlessly.
– user535733
Dec 18 at 3:48
See How to use manual partitioning during installation? When you install Ubuntu have both drives attached to the system, and during installation use advanced partitioning option to map mountpoints ( yes, they are exactly/
,/home
) to appropriate drives. 18.04 comes with swap file by default, which would be in/
so consider just using that if you have sufficiently large RAM. Changes will be written to/etc/fstab
by the installer
– Sergiy Kolodyazhnyy
Dec 18 at 5:05
Yeah I think I get what to do for the SSD portion. What I don't know is what I should do for the ~975GB of HDD portion as seen in the screenshot.
– 5areductase
Dec 18 at 15:13
add a comment |
1
You already know your mount points: /, /home, and /swap. Map those locations to the appropriate partitions (sda1, etc) in the file /etc/fstab
– user535733
Dec 18 at 3:18
1
@user535733 You mean I just manually type out /etc/fstab? This is my first time using Linux so I'm not familiar with the file system
– 5areductase
Dec 18 at 3:35
No. Look up how to use /etc/fstab. Honestly, were I in your shoes, I wouldn't muck about with extra partitions and mount points at all; those are intermediate-level stuff, and not easy for a beginner. The Ubuntu installer defaults are sane and safe for most new users - try them. Many new users try a bunch of different things in their first year, and some (repartition and) reinstall Ubuntu more than once. Don't paint yourself into a corner by chopping up your disk into a dozen partitions needlessly.
– user535733
Dec 18 at 3:48
See How to use manual partitioning during installation? When you install Ubuntu have both drives attached to the system, and during installation use advanced partitioning option to map mountpoints ( yes, they are exactly/
,/home
) to appropriate drives. 18.04 comes with swap file by default, which would be in/
so consider just using that if you have sufficiently large RAM. Changes will be written to/etc/fstab
by the installer
– Sergiy Kolodyazhnyy
Dec 18 at 5:05
Yeah I think I get what to do for the SSD portion. What I don't know is what I should do for the ~975GB of HDD portion as seen in the screenshot.
– 5areductase
Dec 18 at 15:13
1
1
You already know your mount points: /, /home, and /swap. Map those locations to the appropriate partitions (sda1, etc) in the file /etc/fstab
– user535733
Dec 18 at 3:18
You already know your mount points: /, /home, and /swap. Map those locations to the appropriate partitions (sda1, etc) in the file /etc/fstab
– user535733
Dec 18 at 3:18
1
1
@user535733 You mean I just manually type out /etc/fstab? This is my first time using Linux so I'm not familiar with the file system
– 5areductase
Dec 18 at 3:35
@user535733 You mean I just manually type out /etc/fstab? This is my first time using Linux so I'm not familiar with the file system
– 5areductase
Dec 18 at 3:35
No. Look up how to use /etc/fstab. Honestly, were I in your shoes, I wouldn't muck about with extra partitions and mount points at all; those are intermediate-level stuff, and not easy for a beginner. The Ubuntu installer defaults are sane and safe for most new users - try them. Many new users try a bunch of different things in their first year, and some (repartition and) reinstall Ubuntu more than once. Don't paint yourself into a corner by chopping up your disk into a dozen partitions needlessly.
– user535733
Dec 18 at 3:48
No. Look up how to use /etc/fstab. Honestly, were I in your shoes, I wouldn't muck about with extra partitions and mount points at all; those are intermediate-level stuff, and not easy for a beginner. The Ubuntu installer defaults are sane and safe for most new users - try them. Many new users try a bunch of different things in their first year, and some (repartition and) reinstall Ubuntu more than once. Don't paint yourself into a corner by chopping up your disk into a dozen partitions needlessly.
– user535733
Dec 18 at 3:48
See How to use manual partitioning during installation? When you install Ubuntu have both drives attached to the system, and during installation use advanced partitioning option to map mountpoints ( yes, they are exactly
/
, /home
) to appropriate drives. 18.04 comes with swap file by default, which would be in /
so consider just using that if you have sufficiently large RAM. Changes will be written to /etc/fstab
by the installer– Sergiy Kolodyazhnyy
Dec 18 at 5:05
See How to use manual partitioning during installation? When you install Ubuntu have both drives attached to the system, and during installation use advanced partitioning option to map mountpoints ( yes, they are exactly
/
, /home
) to appropriate drives. 18.04 comes with swap file by default, which would be in /
so consider just using that if you have sufficiently large RAM. Changes will be written to /etc/fstab
by the installer– Sergiy Kolodyazhnyy
Dec 18 at 5:05
Yeah I think I get what to do for the SSD portion. What I don't know is what I should do for the ~975GB of HDD portion as seen in the screenshot.
– 5areductase
Dec 18 at 15:13
Yeah I think I get what to do for the SSD portion. What I don't know is what I should do for the ~975GB of HDD portion as seen in the screenshot.
– 5areductase
Dec 18 at 15:13
add a comment |
1 Answer
1
active
oldest
votes
Easy:
/
andswap
onsda
(your SSD)
/home
onsdb
(your HDD)
That way, your OS and the swap are on the SSD and your videos, documents, music are on the HDD.
Start with that until you know more and for the next install read this first
1
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
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
});
}
});
5areductase is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1102712%2fwhat-mount-point-should-i-use-for-hdd-if-i-install-swap-and-home-on-ssd%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
Easy:
/
andswap
onsda
(your SSD)
/home
onsdb
(your HDD)
That way, your OS and the swap are on the SSD and your videos, documents, music are on the HDD.
Start with that until you know more and for the next install read this first
1
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
add a comment |
Easy:
/
andswap
onsda
(your SSD)
/home
onsdb
(your HDD)
That way, your OS and the swap are on the SSD and your videos, documents, music are on the HDD.
Start with that until you know more and for the next install read this first
1
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
add a comment |
Easy:
/
andswap
onsda
(your SSD)
/home
onsdb
(your HDD)
That way, your OS and the swap are on the SSD and your videos, documents, music are on the HDD.
Start with that until you know more and for the next install read this first
Easy:
/
andswap
onsda
(your SSD)
/home
onsdb
(your HDD)
That way, your OS and the swap are on the SSD and your videos, documents, music are on the HDD.
Start with that until you know more and for the next install read this first
answered Dec 19 at 0:25
Fabby
26.3k1360159
26.3k1360159
1
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
add a comment |
1
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
1
1
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
Agree! Important to keep /home as separate thing. Makes it much easier to install new OS that can access old home. I also suggest putting /usr/local and /opt (if you use it) in partitions so you can easily use them if you decide to erase / and put in new OS. I've switched in new Ubuntu and Debian derivatives and had minimal trouble.
– pauljohn32
Dec 19 at 4:35
add a comment |
5areductase is a new contributor. Be nice, and check out our Code of Conduct.
5areductase is a new contributor. Be nice, and check out our Code of Conduct.
5areductase is a new contributor. Be nice, and check out our Code of Conduct.
5areductase is a new contributor. Be nice, and check out our Code of Conduct.
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1102712%2fwhat-mount-point-should-i-use-for-hdd-if-i-install-swap-and-home-on-ssd%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
1
You already know your mount points: /, /home, and /swap. Map those locations to the appropriate partitions (sda1, etc) in the file /etc/fstab
– user535733
Dec 18 at 3:18
1
@user535733 You mean I just manually type out /etc/fstab? This is my first time using Linux so I'm not familiar with the file system
– 5areductase
Dec 18 at 3:35
No. Look up how to use /etc/fstab. Honestly, were I in your shoes, I wouldn't muck about with extra partitions and mount points at all; those are intermediate-level stuff, and not easy for a beginner. The Ubuntu installer defaults are sane and safe for most new users - try them. Many new users try a bunch of different things in their first year, and some (repartition and) reinstall Ubuntu more than once. Don't paint yourself into a corner by chopping up your disk into a dozen partitions needlessly.
– user535733
Dec 18 at 3:48
See How to use manual partitioning during installation? When you install Ubuntu have both drives attached to the system, and during installation use advanced partitioning option to map mountpoints ( yes, they are exactly
/
,/home
) to appropriate drives. 18.04 comes with swap file by default, which would be in/
so consider just using that if you have sufficiently large RAM. Changes will be written to/etc/fstab
by the installer– Sergiy Kolodyazhnyy
Dec 18 at 5:05
Yeah I think I get what to do for the SSD portion. What I don't know is what I should do for the ~975GB of HDD portion as seen in the screenshot.
– 5areductase
Dec 18 at 15:13