Could I have problems if I create directories inside /home?
On a laptop used exclusively by me, whit only one personal user account (i.e. let's call it myuser
), there could be any problems or annoyances in creating directories inside /home
but external to /home/myuser
?
As an example, let's say that I want to create something similar to this:
/home/appimages
/home/lamp
/home/myuser
in order to put a Bitnami LAMP stack and Appimages programs outside the "regular", "everyday" home directory; all of this for the sake of decluttering and having a structure where it is easier to manage backups, file indexing, and other things without resorting to exclusion patterns.
Assuming that no more personal users will be created (and in the remote possibility, without using the same names of these directories), there could be problems, drawbacks, random annoyances, that I've not thought of with this kind of setup?
linux user-profiles home-directory
add a comment |
On a laptop used exclusively by me, whit only one personal user account (i.e. let's call it myuser
), there could be any problems or annoyances in creating directories inside /home
but external to /home/myuser
?
As an example, let's say that I want to create something similar to this:
/home/appimages
/home/lamp
/home/myuser
in order to put a Bitnami LAMP stack and Appimages programs outside the "regular", "everyday" home directory; all of this for the sake of decluttering and having a structure where it is easier to manage backups, file indexing, and other things without resorting to exclusion patterns.
Assuming that no more personal users will be created (and in the remote possibility, without using the same names of these directories), there could be problems, drawbacks, random annoyances, that I've not thought of with this kind of setup?
linux user-profiles home-directory
add a comment |
On a laptop used exclusively by me, whit only one personal user account (i.e. let's call it myuser
), there could be any problems or annoyances in creating directories inside /home
but external to /home/myuser
?
As an example, let's say that I want to create something similar to this:
/home/appimages
/home/lamp
/home/myuser
in order to put a Bitnami LAMP stack and Appimages programs outside the "regular", "everyday" home directory; all of this for the sake of decluttering and having a structure where it is easier to manage backups, file indexing, and other things without resorting to exclusion patterns.
Assuming that no more personal users will be created (and in the remote possibility, without using the same names of these directories), there could be problems, drawbacks, random annoyances, that I've not thought of with this kind of setup?
linux user-profiles home-directory
On a laptop used exclusively by me, whit only one personal user account (i.e. let's call it myuser
), there could be any problems or annoyances in creating directories inside /home
but external to /home/myuser
?
As an example, let's say that I want to create something similar to this:
/home/appimages
/home/lamp
/home/myuser
in order to put a Bitnami LAMP stack and Appimages programs outside the "regular", "everyday" home directory; all of this for the sake of decluttering and having a structure where it is easier to manage backups, file indexing, and other things without resorting to exclusion patterns.
Assuming that no more personal users will be created (and in the remote possibility, without using the same names of these directories), there could be problems, drawbacks, random annoyances, that I've not thought of with this kind of setup?
linux user-profiles home-directory
linux user-profiles home-directory
edited Jan 25 at 14:55
Sekhemty
asked Jan 25 at 14:50
SekhemtySekhemty
3,981104482
3,981104482
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
No problems but IMHO not very "natural". /home/xxx
is supposed to be the home directory of xxx
. Why not create these directories under /
directly?
If you made a distinct FS for /home
and find you have room to spare there, a better hierarchy IMHO is to have FS/home
and FS/other
directories in that FS, and link/bind-mount FS/home
on /home/
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1398398%2fcould-i-have-problems-if-i-create-directories-inside-home%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
No problems but IMHO not very "natural". /home/xxx
is supposed to be the home directory of xxx
. Why not create these directories under /
directly?
If you made a distinct FS for /home
and find you have room to spare there, a better hierarchy IMHO is to have FS/home
and FS/other
directories in that FS, and link/bind-mount FS/home
on /home/
.
add a comment |
No problems but IMHO not very "natural". /home/xxx
is supposed to be the home directory of xxx
. Why not create these directories under /
directly?
If you made a distinct FS for /home
and find you have room to spare there, a better hierarchy IMHO is to have FS/home
and FS/other
directories in that FS, and link/bind-mount FS/home
on /home/
.
add a comment |
No problems but IMHO not very "natural". /home/xxx
is supposed to be the home directory of xxx
. Why not create these directories under /
directly?
If you made a distinct FS for /home
and find you have room to spare there, a better hierarchy IMHO is to have FS/home
and FS/other
directories in that FS, and link/bind-mount FS/home
on /home/
.
No problems but IMHO not very "natural". /home/xxx
is supposed to be the home directory of xxx
. Why not create these directories under /
directly?
If you made a distinct FS for /home
and find you have room to spare there, a better hierarchy IMHO is to have FS/home
and FS/other
directories in that FS, and link/bind-mount FS/home
on /home/
.
answered Jan 25 at 16:18
xenoidxenoid
3,8193719
3,8193719
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1398398%2fcould-i-have-problems-if-i-create-directories-inside-home%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