Everytime Ubuntu boots, it creates a new mountpoint for my storage
I created a ext4 partition from the terabyte hard drive on my dual-boot (windows10 - ubunutu18.04.01) laptop, with GParted: by first resizing the existing NTFS partition down from the left side then creating the etx4 in the empty space.
I've rebooted three times and now have three separate mount points.
If I reboot again I'll have another.
every application, such as steam, OBS and audacity configured to save to this drive will write to the latest one. file explore (Nautilus)
only shows one partition with the name "linuxStorage" and when opened, opens up the latest.
on my first boot files were written to the first, on my second boot files were written to the second.
contents are not shared. files that existed in the previous boot's partition are not present in the new boot's partition.
they behave like separate folders.
the old folders are not recognized as a hard drive by Ubuntu while the new one is.
the files for the old ones, as I understand, are physically written in my boot M2 SSD instead of on the partition in the terabyte HDD.
why is this happening and how do I stop this?
dual-boot partitioning mount
add a comment |
I created a ext4 partition from the terabyte hard drive on my dual-boot (windows10 - ubunutu18.04.01) laptop, with GParted: by first resizing the existing NTFS partition down from the left side then creating the etx4 in the empty space.
I've rebooted three times and now have three separate mount points.
If I reboot again I'll have another.
every application, such as steam, OBS and audacity configured to save to this drive will write to the latest one. file explore (Nautilus)
only shows one partition with the name "linuxStorage" and when opened, opens up the latest.
on my first boot files were written to the first, on my second boot files were written to the second.
contents are not shared. files that existed in the previous boot's partition are not present in the new boot's partition.
they behave like separate folders.
the old folders are not recognized as a hard drive by Ubuntu while the new one is.
the files for the old ones, as I understand, are physically written in my boot M2 SSD instead of on the partition in the terabyte HDD.
why is this happening and how do I stop this?
dual-boot partitioning mount
I'd suggest creating an entry in/etc/fstab
(your file system table) for the drive, and have it always mount to a specific directory. When mounted, the drive shadows (or hides) the real directory it's mounted to. If it's being mounted to a different directory, the old-folders you mentioned are just directories and files go on the / partition or drive.
– guiverc
Jan 25 at 11:15
how would you go about doing that? I've saved the contents of the partition to another folder so now if the manipulations require destroying it, I can afford that. I'd like to also clear out the fake partitions, will deleting the contents of/media/$USER
suffice?
– tatsu
Jan 25 at 11:26
1
Where you mount is up to you, for my own things I mount in directories in / (eg. /de2900) as it's easy to type & that name means something to me. A common directory is also within /mnt/ but it's up to you (I think of /media/ as auto-mounted things so I'd not use it, but you can if you wish). I'd useblkid
to get the UUID's to add to fstab, but have a look at help.ubuntu.com/community/AutomaticallyMountPartitions and use your existing mounts (compare info provided by blkid with what you see in your fstab as a guide). Only worry about cleaning up once you've got your mount working.
– guiverc
Jan 25 at 11:56
ok i'll try this and use /mnt and then delete the contents of /media. any idea why this was happening?
– tatsu
Jan 25 at 13:09
add a comment |
I created a ext4 partition from the terabyte hard drive on my dual-boot (windows10 - ubunutu18.04.01) laptop, with GParted: by first resizing the existing NTFS partition down from the left side then creating the etx4 in the empty space.
I've rebooted three times and now have three separate mount points.
If I reboot again I'll have another.
every application, such as steam, OBS and audacity configured to save to this drive will write to the latest one. file explore (Nautilus)
only shows one partition with the name "linuxStorage" and when opened, opens up the latest.
on my first boot files were written to the first, on my second boot files were written to the second.
contents are not shared. files that existed in the previous boot's partition are not present in the new boot's partition.
they behave like separate folders.
the old folders are not recognized as a hard drive by Ubuntu while the new one is.
the files for the old ones, as I understand, are physically written in my boot M2 SSD instead of on the partition in the terabyte HDD.
why is this happening and how do I stop this?
dual-boot partitioning mount
I created a ext4 partition from the terabyte hard drive on my dual-boot (windows10 - ubunutu18.04.01) laptop, with GParted: by first resizing the existing NTFS partition down from the left side then creating the etx4 in the empty space.
I've rebooted three times and now have three separate mount points.
If I reboot again I'll have another.
every application, such as steam, OBS and audacity configured to save to this drive will write to the latest one. file explore (Nautilus)
only shows one partition with the name "linuxStorage" and when opened, opens up the latest.
on my first boot files were written to the first, on my second boot files were written to the second.
contents are not shared. files that existed in the previous boot's partition are not present in the new boot's partition.
they behave like separate folders.
the old folders are not recognized as a hard drive by Ubuntu while the new one is.
the files for the old ones, as I understand, are physically written in my boot M2 SSD instead of on the partition in the terabyte HDD.
why is this happening and how do I stop this?
dual-boot partitioning mount
dual-boot partitioning mount
edited Jan 25 at 13:08
tatsu
asked Jan 25 at 11:05
tatsutatsu
251333
251333
I'd suggest creating an entry in/etc/fstab
(your file system table) for the drive, and have it always mount to a specific directory. When mounted, the drive shadows (or hides) the real directory it's mounted to. If it's being mounted to a different directory, the old-folders you mentioned are just directories and files go on the / partition or drive.
– guiverc
Jan 25 at 11:15
how would you go about doing that? I've saved the contents of the partition to another folder so now if the manipulations require destroying it, I can afford that. I'd like to also clear out the fake partitions, will deleting the contents of/media/$USER
suffice?
– tatsu
Jan 25 at 11:26
1
Where you mount is up to you, for my own things I mount in directories in / (eg. /de2900) as it's easy to type & that name means something to me. A common directory is also within /mnt/ but it's up to you (I think of /media/ as auto-mounted things so I'd not use it, but you can if you wish). I'd useblkid
to get the UUID's to add to fstab, but have a look at help.ubuntu.com/community/AutomaticallyMountPartitions and use your existing mounts (compare info provided by blkid with what you see in your fstab as a guide). Only worry about cleaning up once you've got your mount working.
– guiverc
Jan 25 at 11:56
ok i'll try this and use /mnt and then delete the contents of /media. any idea why this was happening?
– tatsu
Jan 25 at 13:09
add a comment |
I'd suggest creating an entry in/etc/fstab
(your file system table) for the drive, and have it always mount to a specific directory. When mounted, the drive shadows (or hides) the real directory it's mounted to. If it's being mounted to a different directory, the old-folders you mentioned are just directories and files go on the / partition or drive.
– guiverc
Jan 25 at 11:15
how would you go about doing that? I've saved the contents of the partition to another folder so now if the manipulations require destroying it, I can afford that. I'd like to also clear out the fake partitions, will deleting the contents of/media/$USER
suffice?
– tatsu
Jan 25 at 11:26
1
Where you mount is up to you, for my own things I mount in directories in / (eg. /de2900) as it's easy to type & that name means something to me. A common directory is also within /mnt/ but it's up to you (I think of /media/ as auto-mounted things so I'd not use it, but you can if you wish). I'd useblkid
to get the UUID's to add to fstab, but have a look at help.ubuntu.com/community/AutomaticallyMountPartitions and use your existing mounts (compare info provided by blkid with what you see in your fstab as a guide). Only worry about cleaning up once you've got your mount working.
– guiverc
Jan 25 at 11:56
ok i'll try this and use /mnt and then delete the contents of /media. any idea why this was happening?
– tatsu
Jan 25 at 13:09
I'd suggest creating an entry in
/etc/fstab
(your file system table) for the drive, and have it always mount to a specific directory. When mounted, the drive shadows (or hides) the real directory it's mounted to. If it's being mounted to a different directory, the old-folders you mentioned are just directories and files go on the / partition or drive.– guiverc
Jan 25 at 11:15
I'd suggest creating an entry in
/etc/fstab
(your file system table) for the drive, and have it always mount to a specific directory. When mounted, the drive shadows (or hides) the real directory it's mounted to. If it's being mounted to a different directory, the old-folders you mentioned are just directories and files go on the / partition or drive.– guiverc
Jan 25 at 11:15
how would you go about doing that? I've saved the contents of the partition to another folder so now if the manipulations require destroying it, I can afford that. I'd like to also clear out the fake partitions, will deleting the contents of
/media/$USER
suffice?– tatsu
Jan 25 at 11:26
how would you go about doing that? I've saved the contents of the partition to another folder so now if the manipulations require destroying it, I can afford that. I'd like to also clear out the fake partitions, will deleting the contents of
/media/$USER
suffice?– tatsu
Jan 25 at 11:26
1
1
Where you mount is up to you, for my own things I mount in directories in / (eg. /de2900) as it's easy to type & that name means something to me. A common directory is also within /mnt/ but it's up to you (I think of /media/ as auto-mounted things so I'd not use it, but you can if you wish). I'd use
blkid
to get the UUID's to add to fstab, but have a look at help.ubuntu.com/community/AutomaticallyMountPartitions and use your existing mounts (compare info provided by blkid with what you see in your fstab as a guide). Only worry about cleaning up once you've got your mount working.– guiverc
Jan 25 at 11:56
Where you mount is up to you, for my own things I mount in directories in / (eg. /de2900) as it's easy to type & that name means something to me. A common directory is also within /mnt/ but it's up to you (I think of /media/ as auto-mounted things so I'd not use it, but you can if you wish). I'd use
blkid
to get the UUID's to add to fstab, but have a look at help.ubuntu.com/community/AutomaticallyMountPartitions and use your existing mounts (compare info provided by blkid with what you see in your fstab as a guide). Only worry about cleaning up once you've got your mount working.– guiverc
Jan 25 at 11:56
ok i'll try this and use /mnt and then delete the contents of /media. any idea why this was happening?
– tatsu
Jan 25 at 13:09
ok i'll try this and use /mnt and then delete the contents of /media. any idea why this was happening?
– tatsu
Jan 25 at 13:09
add a comment |
0
active
oldest
votes
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%2f1112746%2feverytime-ubuntu-boots-it-creates-a-new-mountpoint-for-my-storage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f1112746%2feverytime-ubuntu-boots-it-creates-a-new-mountpoint-for-my-storage%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
I'd suggest creating an entry in
/etc/fstab
(your file system table) for the drive, and have it always mount to a specific directory. When mounted, the drive shadows (or hides) the real directory it's mounted to. If it's being mounted to a different directory, the old-folders you mentioned are just directories and files go on the / partition or drive.– guiverc
Jan 25 at 11:15
how would you go about doing that? I've saved the contents of the partition to another folder so now if the manipulations require destroying it, I can afford that. I'd like to also clear out the fake partitions, will deleting the contents of
/media/$USER
suffice?– tatsu
Jan 25 at 11:26
1
Where you mount is up to you, for my own things I mount in directories in / (eg. /de2900) as it's easy to type & that name means something to me. A common directory is also within /mnt/ but it's up to you (I think of /media/ as auto-mounted things so I'd not use it, but you can if you wish). I'd use
blkid
to get the UUID's to add to fstab, but have a look at help.ubuntu.com/community/AutomaticallyMountPartitions and use your existing mounts (compare info provided by blkid with what you see in your fstab as a guide). Only worry about cleaning up once you've got your mount working.– guiverc
Jan 25 at 11:56
ok i'll try this and use /mnt and then delete the contents of /media. any idea why this was happening?
– tatsu
Jan 25 at 13:09