Where are the Home Directory Contents / Settings Cached in Ubuntu 18.04?
On a Ubuntu 18.04 LTS machine, some settings related to the theme turned everything in the GUI (xfce) unreadable. I logged out, logged in as another user, deleted that previous user's directory and recreated it as an empty directory, like
rm -r /home/user
mkdir /home/user
chown user.user /home/user
When I logged back in as 'user', some of the theme settings were somehow still there. Where are these being stored if not in the user's home directory? How can I get rid of them to give a user a completely fresh start?
18.04 themes home-directory cache
add a comment |
On a Ubuntu 18.04 LTS machine, some settings related to the theme turned everything in the GUI (xfce) unreadable. I logged out, logged in as another user, deleted that previous user's directory and recreated it as an empty directory, like
rm -r /home/user
mkdir /home/user
chown user.user /home/user
When I logged back in as 'user', some of the theme settings were somehow still there. Where are these being stored if not in the user's home directory? How can I get rid of them to give a user a completely fresh start?
18.04 themes home-directory cache
1
Welcome to Ask Ubuntu. Did you actually delete everything? as arm * -rf
does not delete any files starting with "." - and it's in ~/.local/, ~/.config` etc that config files usually exist. XFCE stores most in~/.config/xfce4/
that I suspect is what you were trying to delete, but missed.
– guiverc
Jan 23 at 5:24
Thanks but I definitely deleted the entire directory (rm -rf /home/user), rather than contents within it.
– R K Maroon
Jan 23 at 5:27
add a comment |
On a Ubuntu 18.04 LTS machine, some settings related to the theme turned everything in the GUI (xfce) unreadable. I logged out, logged in as another user, deleted that previous user's directory and recreated it as an empty directory, like
rm -r /home/user
mkdir /home/user
chown user.user /home/user
When I logged back in as 'user', some of the theme settings were somehow still there. Where are these being stored if not in the user's home directory? How can I get rid of them to give a user a completely fresh start?
18.04 themes home-directory cache
On a Ubuntu 18.04 LTS machine, some settings related to the theme turned everything in the GUI (xfce) unreadable. I logged out, logged in as another user, deleted that previous user's directory and recreated it as an empty directory, like
rm -r /home/user
mkdir /home/user
chown user.user /home/user
When I logged back in as 'user', some of the theme settings were somehow still there. Where are these being stored if not in the user's home directory? How can I get rid of them to give a user a completely fresh start?
18.04 themes home-directory cache
18.04 themes home-directory cache
edited Jan 23 at 9:35
thephoenix01
498616
498616
asked Jan 23 at 5:16
R K MaroonR K Maroon
112
112
1
Welcome to Ask Ubuntu. Did you actually delete everything? as arm * -rf
does not delete any files starting with "." - and it's in ~/.local/, ~/.config` etc that config files usually exist. XFCE stores most in~/.config/xfce4/
that I suspect is what you were trying to delete, but missed.
– guiverc
Jan 23 at 5:24
Thanks but I definitely deleted the entire directory (rm -rf /home/user), rather than contents within it.
– R K Maroon
Jan 23 at 5:27
add a comment |
1
Welcome to Ask Ubuntu. Did you actually delete everything? as arm * -rf
does not delete any files starting with "." - and it's in ~/.local/, ~/.config` etc that config files usually exist. XFCE stores most in~/.config/xfce4/
that I suspect is what you were trying to delete, but missed.
– guiverc
Jan 23 at 5:24
Thanks but I definitely deleted the entire directory (rm -rf /home/user), rather than contents within it.
– R K Maroon
Jan 23 at 5:27
1
1
Welcome to Ask Ubuntu. Did you actually delete everything? as a
rm * -rf
does not delete any files starting with "." - and it's in ~/.local/, ~/.config` etc that config files usually exist. XFCE stores most in ~/.config/xfce4/
that I suspect is what you were trying to delete, but missed.– guiverc
Jan 23 at 5:24
Welcome to Ask Ubuntu. Did you actually delete everything? as a
rm * -rf
does not delete any files starting with "." - and it's in ~/.local/, ~/.config` etc that config files usually exist. XFCE stores most in ~/.config/xfce4/
that I suspect is what you were trying to delete, but missed.– guiverc
Jan 23 at 5:24
Thanks but I definitely deleted the entire directory (rm -rf /home/user), rather than contents within it.
– R K Maroon
Jan 23 at 5:27
Thanks but I definitely deleted the entire directory (rm -rf /home/user), rather than contents within it.
– R K Maroon
Jan 23 at 5:27
add a comment |
1 Answer
1
active
oldest
votes
I found the problem. After logging out, there were still a bunch of processes running as the user I wanted to give a fresh start to (systemd, dbus processes, gvfs processes and more). If I log out, kill all those and then recreate the home directory I then get the fresh start I was looking for.
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
});
}
});
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%2f1112143%2fwhere-are-the-home-directory-contents-settings-cached-in-ubuntu-18-04%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 found the problem. After logging out, there were still a bunch of processes running as the user I wanted to give a fresh start to (systemd, dbus processes, gvfs processes and more). If I log out, kill all those and then recreate the home directory I then get the fresh start I was looking for.
add a comment |
I found the problem. After logging out, there were still a bunch of processes running as the user I wanted to give a fresh start to (systemd, dbus processes, gvfs processes and more). If I log out, kill all those and then recreate the home directory I then get the fresh start I was looking for.
add a comment |
I found the problem. After logging out, there were still a bunch of processes running as the user I wanted to give a fresh start to (systemd, dbus processes, gvfs processes and more). If I log out, kill all those and then recreate the home directory I then get the fresh start I was looking for.
I found the problem. After logging out, there were still a bunch of processes running as the user I wanted to give a fresh start to (systemd, dbus processes, gvfs processes and more). If I log out, kill all those and then recreate the home directory I then get the fresh start I was looking for.
answered Jan 23 at 5:54
R K MaroonR K Maroon
112
112
add a comment |
add a comment |
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%2f1112143%2fwhere-are-the-home-directory-contents-settings-cached-in-ubuntu-18-04%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
Welcome to Ask Ubuntu. Did you actually delete everything? as a
rm * -rf
does not delete any files starting with "." - and it's in ~/.local/, ~/.config` etc that config files usually exist. XFCE stores most in~/.config/xfce4/
that I suspect is what you were trying to delete, but missed.– guiverc
Jan 23 at 5:24
Thanks but I definitely deleted the entire directory (rm -rf /home/user), rather than contents within it.
– R K Maroon
Jan 23 at 5:27