For some reason, the /home/username/ directory doesn't exist. I can't find it with the terminal, I can't find it in the files, it simply doesn't exist to my testing.
Is this normal, or is something wrong with my system?
For some reason, the /home/username/ directory doesn't exist. I can't find it with the terminal, I can't find it in the files, it simply doesn't exist to my testing.
Is this normal, or is something wrong with my system?
if you come from this question, you have to take note about "/home/username/" path. In some situations, points to "replace the word username from path using your session's username". Please follow the original question's thread.
It is very normal that a directory /home/username
may not exist. I also do not have one.
Typically, directories under /home
are the home directories of users created on the system. For a user with login name e.g. Pokegamer129
, a directory /home/Pokegamer129
would exist on the system. Only if there is a user with the login name username
we do expect the existence of a directory /home/username
, otherwise not.
So do not worry if that directory does not exist if no such user username
is registered on the system.
username
really your current username ? Whats the output ofecho $USER $HOME
? – Liso Dec 21 '21 at 03:44
– Pokegamer129 Dec 21 '21 at 03:50echo $HOME
gives me/home/[my username here]
, however whenever I go to that directory, it doesn't bring me to that directory.mkhomedir_helper (your_username)
taken from here. – Liso Dec 21 '21 at 04:01open $HOME
which brought me to my normal Home section. For some reason, now my apps detect it despite nothing changing. I don't exactly know what happened, but thanks for the help. XD – Pokegamer129 Dec 21 '21 at 04:14