Is it wrong to fill the reserved space in an external USB drive for archiving purposes?
Clash Royale CLAN TAG#URR8PPP
I have been filling a hard drive and a couple of backup drives with the family pictures and videos. Once a video goes into the archive, it remains there in a folder correctly labeled with the date. The data collection has grown up to the point where I need a new drive (and new backup drives).
But I wonder why should I leave the reserved blank space linux enforces in the drive, which now is above 50 GB I could fill with more videos. It is easy to do that by invoking the 'cp' command as root.
Since I am not going to do anything else with the drive other than archival purposes, I wonder if filling that reserved space would be a bad practice, in this case, and why. I know I shouldn't do that with the main drive inside the laptop, otherwise the system may become unstable, but what about that external drive holding only archival data?
filesystems storage external-hdd removable-storage
add a comment |
I have been filling a hard drive and a couple of backup drives with the family pictures and videos. Once a video goes into the archive, it remains there in a folder correctly labeled with the date. The data collection has grown up to the point where I need a new drive (and new backup drives).
But I wonder why should I leave the reserved blank space linux enforces in the drive, which now is above 50 GB I could fill with more videos. It is easy to do that by invoking the 'cp' command as root.
Since I am not going to do anything else with the drive other than archival purposes, I wonder if filling that reserved space would be a bad practice, in this case, and why. I know I shouldn't do that with the main drive inside the laptop, otherwise the system may become unstable, but what about that external drive holding only archival data?
filesystems storage external-hdd removable-storage
BTW, I would like to know about solutions to store this 2 to 4 TB collection in some kind of cloud solution to make sure it lasts many years. But I cannot add this to the main question.
– Mephisto
Mar 4 at 20:22
1
webapps.stackexchange.com is a good place to ask about that.
– K7AAY
Mar 4 at 21:39
add a comment |
I have been filling a hard drive and a couple of backup drives with the family pictures and videos. Once a video goes into the archive, it remains there in a folder correctly labeled with the date. The data collection has grown up to the point where I need a new drive (and new backup drives).
But I wonder why should I leave the reserved blank space linux enforces in the drive, which now is above 50 GB I could fill with more videos. It is easy to do that by invoking the 'cp' command as root.
Since I am not going to do anything else with the drive other than archival purposes, I wonder if filling that reserved space would be a bad practice, in this case, and why. I know I shouldn't do that with the main drive inside the laptop, otherwise the system may become unstable, but what about that external drive holding only archival data?
filesystems storage external-hdd removable-storage
I have been filling a hard drive and a couple of backup drives with the family pictures and videos. Once a video goes into the archive, it remains there in a folder correctly labeled with the date. The data collection has grown up to the point where I need a new drive (and new backup drives).
But I wonder why should I leave the reserved blank space linux enforces in the drive, which now is above 50 GB I could fill with more videos. It is easy to do that by invoking the 'cp' command as root.
Since I am not going to do anything else with the drive other than archival purposes, I wonder if filling that reserved space would be a bad practice, in this case, and why. I know I shouldn't do that with the main drive inside the laptop, otherwise the system may become unstable, but what about that external drive holding only archival data?
filesystems storage external-hdd removable-storage
filesystems storage external-hdd removable-storage
asked Mar 4 at 20:19
MephistoMephisto
331215
331215
BTW, I would like to know about solutions to store this 2 to 4 TB collection in some kind of cloud solution to make sure it lasts many years. But I cannot add this to the main question.
– Mephisto
Mar 4 at 20:22
1
webapps.stackexchange.com is a good place to ask about that.
– K7AAY
Mar 4 at 21:39
add a comment |
BTW, I would like to know about solutions to store this 2 to 4 TB collection in some kind of cloud solution to make sure it lasts many years. But I cannot add this to the main question.
– Mephisto
Mar 4 at 20:22
1
webapps.stackexchange.com is a good place to ask about that.
– K7AAY
Mar 4 at 21:39
BTW, I would like to know about solutions to store this 2 to 4 TB collection in some kind of cloud solution to make sure it lasts many years. But I cannot add this to the main question.
– Mephisto
Mar 4 at 20:22
BTW, I would like to know about solutions to store this 2 to 4 TB collection in some kind of cloud solution to make sure it lasts many years. But I cannot add this to the main question.
– Mephisto
Mar 4 at 20:22
1
1
webapps.stackexchange.com is a good place to ask about that.
– K7AAY
Mar 4 at 21:39
webapps.stackexchange.com is a good place to ask about that.
– K7AAY
Mar 4 at 21:39
add a comment |
1 Answer
1
active
oldest
votes
I assume that you are using an ext4
file system: You can modify the size of the reserved space with tune2fs
. The following command line reduces the reserved space to 1% (from default 5%).
sudo tune2fs -m 1 /dev/sdxn
where x is the drive letter and n is the partition number (of a partition with an ext
file system).
From man tune2fs
:
-m reserved-blocks-percentage
Set the percentage of the filesystem which may only be allocated
by privileged processes. Reserving some number of filesystem
blocks for use by privileged processes is done to avoid filesys‐
tem fragmentation, and to allow system daemons, such as sys‐
logd(8), to continue to function correctly after non-privileged
processes are prevented from writing to the filesystem. Nor‐
mally, the default percentage of reserved blocks is 5%.
You can reduce the size of the reserved space in a data drive (which is not as critical as a system drive). But as described in the manual, space is reserved to
- avoid fragmentation (relevant also for a data partition)
- allow system daemons to continue to function correctly
add a comment |
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f504347%2fis-it-wrong-to-fill-the-reserved-space-in-an-external-usb-drive-for-archiving-pu%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
I assume that you are using an ext4
file system: You can modify the size of the reserved space with tune2fs
. The following command line reduces the reserved space to 1% (from default 5%).
sudo tune2fs -m 1 /dev/sdxn
where x is the drive letter and n is the partition number (of a partition with an ext
file system).
From man tune2fs
:
-m reserved-blocks-percentage
Set the percentage of the filesystem which may only be allocated
by privileged processes. Reserving some number of filesystem
blocks for use by privileged processes is done to avoid filesys‐
tem fragmentation, and to allow system daemons, such as sys‐
logd(8), to continue to function correctly after non-privileged
processes are prevented from writing to the filesystem. Nor‐
mally, the default percentage of reserved blocks is 5%.
You can reduce the size of the reserved space in a data drive (which is not as critical as a system drive). But as described in the manual, space is reserved to
- avoid fragmentation (relevant also for a data partition)
- allow system daemons to continue to function correctly
add a comment |
I assume that you are using an ext4
file system: You can modify the size of the reserved space with tune2fs
. The following command line reduces the reserved space to 1% (from default 5%).
sudo tune2fs -m 1 /dev/sdxn
where x is the drive letter and n is the partition number (of a partition with an ext
file system).
From man tune2fs
:
-m reserved-blocks-percentage
Set the percentage of the filesystem which may only be allocated
by privileged processes. Reserving some number of filesystem
blocks for use by privileged processes is done to avoid filesys‐
tem fragmentation, and to allow system daemons, such as sys‐
logd(8), to continue to function correctly after non-privileged
processes are prevented from writing to the filesystem. Nor‐
mally, the default percentage of reserved blocks is 5%.
You can reduce the size of the reserved space in a data drive (which is not as critical as a system drive). But as described in the manual, space is reserved to
- avoid fragmentation (relevant also for a data partition)
- allow system daemons to continue to function correctly
add a comment |
I assume that you are using an ext4
file system: You can modify the size of the reserved space with tune2fs
. The following command line reduces the reserved space to 1% (from default 5%).
sudo tune2fs -m 1 /dev/sdxn
where x is the drive letter and n is the partition number (of a partition with an ext
file system).
From man tune2fs
:
-m reserved-blocks-percentage
Set the percentage of the filesystem which may only be allocated
by privileged processes. Reserving some number of filesystem
blocks for use by privileged processes is done to avoid filesys‐
tem fragmentation, and to allow system daemons, such as sys‐
logd(8), to continue to function correctly after non-privileged
processes are prevented from writing to the filesystem. Nor‐
mally, the default percentage of reserved blocks is 5%.
You can reduce the size of the reserved space in a data drive (which is not as critical as a system drive). But as described in the manual, space is reserved to
- avoid fragmentation (relevant also for a data partition)
- allow system daemons to continue to function correctly
I assume that you are using an ext4
file system: You can modify the size of the reserved space with tune2fs
. The following command line reduces the reserved space to 1% (from default 5%).
sudo tune2fs -m 1 /dev/sdxn
where x is the drive letter and n is the partition number (of a partition with an ext
file system).
From man tune2fs
:
-m reserved-blocks-percentage
Set the percentage of the filesystem which may only be allocated
by privileged processes. Reserving some number of filesystem
blocks for use by privileged processes is done to avoid filesys‐
tem fragmentation, and to allow system daemons, such as sys‐
logd(8), to continue to function correctly after non-privileged
processes are prevented from writing to the filesystem. Nor‐
mally, the default percentage of reserved blocks is 5%.
You can reduce the size of the reserved space in a data drive (which is not as critical as a system drive). But as described in the manual, space is reserved to
- avoid fragmentation (relevant also for a data partition)
- allow system daemons to continue to function correctly
edited Mar 4 at 20:56
answered Mar 4 at 20:51
sudodussudodus
1,72349
1,72349
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f504347%2fis-it-wrong-to-fill-the-reserved-space-in-an-external-usb-drive-for-archiving-pu%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
BTW, I would like to know about solutions to store this 2 to 4 TB collection in some kind of cloud solution to make sure it lasts many years. But I cannot add this to the main question.
– Mephisto
Mar 4 at 20:22
1
webapps.stackexchange.com is a good place to ask about that.
– K7AAY
Mar 4 at 21:39