Why don't my settings persist after a reboot in Mac OS X 10.7.4?
Every time I change my desktop background or the default application to open a file, OS X does it well. But when I restart, the changes are not saved.
Does anybody know whats happening?
mac osx-lion
add a comment |
Every time I change my desktop background or the default application to open a file, OS X does it well. But when I restart, the changes are not saved.
Does anybody know whats happening?
mac osx-lion
add a comment |
Every time I change my desktop background or the default application to open a file, OS X does it well. But when I restart, the changes are not saved.
Does anybody know whats happening?
mac osx-lion
Every time I change my desktop background or the default application to open a file, OS X does it well. But when I restart, the changes are not saved.
Does anybody know whats happening?
mac osx-lion
mac osx-lion
edited Mar 10 '13 at 0:31
Louis
12.2k28105177
12.2k28105177
asked Mar 8 '13 at 18:21
alvizourialvizouri
4126
4126
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Let's investigate the wallpaper issue as its easier problem to investigate and will most likely solve the other problem.
You might have a permissions problem. Take a look at:
ls -la ~/Library/Preferences/com.apple.desktop.plist
Mine looks like this
-rw------- 1 cmdcentral staff 2603 Feb 5 16:39 Library/Preferences/com.apple.desktop.plist
if you open this file
nano ~/Library/Preferences/com.apple.desktop.plist
You will find your wallpaper's location in there. I found mine in there somewhere, looking like this:
`......^@^@^@_^P9/Users/cmdcentral/Pictures/1359637970_phpcode_287392.jpeg"G@Z~/PicturesUNeverO^P @^@^@^@^@ @^C^`
See what your permissions are and compare them, also check if the location of your wallpaper is changing after you save it in System Preferences. Please also take a look if it is the same before you shutdown and after you start up. If your permissions seem correct but the problem persists we can take it to step two :)
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
|
show 3 more comments
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%2f562961%2fwhy-dont-my-settings-persist-after-a-reboot-in-mac-os-x-10-7-4%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
Let's investigate the wallpaper issue as its easier problem to investigate and will most likely solve the other problem.
You might have a permissions problem. Take a look at:
ls -la ~/Library/Preferences/com.apple.desktop.plist
Mine looks like this
-rw------- 1 cmdcentral staff 2603 Feb 5 16:39 Library/Preferences/com.apple.desktop.plist
if you open this file
nano ~/Library/Preferences/com.apple.desktop.plist
You will find your wallpaper's location in there. I found mine in there somewhere, looking like this:
`......^@^@^@_^P9/Users/cmdcentral/Pictures/1359637970_phpcode_287392.jpeg"G@Z~/PicturesUNeverO^P @^@^@^@^@ @^C^`
See what your permissions are and compare them, also check if the location of your wallpaper is changing after you save it in System Preferences. Please also take a look if it is the same before you shutdown and after you start up. If your permissions seem correct but the problem persists we can take it to step two :)
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
|
show 3 more comments
Let's investigate the wallpaper issue as its easier problem to investigate and will most likely solve the other problem.
You might have a permissions problem. Take a look at:
ls -la ~/Library/Preferences/com.apple.desktop.plist
Mine looks like this
-rw------- 1 cmdcentral staff 2603 Feb 5 16:39 Library/Preferences/com.apple.desktop.plist
if you open this file
nano ~/Library/Preferences/com.apple.desktop.plist
You will find your wallpaper's location in there. I found mine in there somewhere, looking like this:
`......^@^@^@_^P9/Users/cmdcentral/Pictures/1359637970_phpcode_287392.jpeg"G@Z~/PicturesUNeverO^P @^@^@^@^@ @^C^`
See what your permissions are and compare them, also check if the location of your wallpaper is changing after you save it in System Preferences. Please also take a look if it is the same before you shutdown and after you start up. If your permissions seem correct but the problem persists we can take it to step two :)
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
|
show 3 more comments
Let's investigate the wallpaper issue as its easier problem to investigate and will most likely solve the other problem.
You might have a permissions problem. Take a look at:
ls -la ~/Library/Preferences/com.apple.desktop.plist
Mine looks like this
-rw------- 1 cmdcentral staff 2603 Feb 5 16:39 Library/Preferences/com.apple.desktop.plist
if you open this file
nano ~/Library/Preferences/com.apple.desktop.plist
You will find your wallpaper's location in there. I found mine in there somewhere, looking like this:
`......^@^@^@_^P9/Users/cmdcentral/Pictures/1359637970_phpcode_287392.jpeg"G@Z~/PicturesUNeverO^P @^@^@^@^@ @^C^`
See what your permissions are and compare them, also check if the location of your wallpaper is changing after you save it in System Preferences. Please also take a look if it is the same before you shutdown and after you start up. If your permissions seem correct but the problem persists we can take it to step two :)
Let's investigate the wallpaper issue as its easier problem to investigate and will most likely solve the other problem.
You might have a permissions problem. Take a look at:
ls -la ~/Library/Preferences/com.apple.desktop.plist
Mine looks like this
-rw------- 1 cmdcentral staff 2603 Feb 5 16:39 Library/Preferences/com.apple.desktop.plist
if you open this file
nano ~/Library/Preferences/com.apple.desktop.plist
You will find your wallpaper's location in there. I found mine in there somewhere, looking like this:
`......^@^@^@_^P9/Users/cmdcentral/Pictures/1359637970_phpcode_287392.jpeg"G@Z~/PicturesUNeverO^P @^@^@^@^@ @^C^`
See what your permissions are and compare them, also check if the location of your wallpaper is changing after you save it in System Preferences. Please also take a look if it is the same before you shutdown and after you start up. If your permissions seem correct but the problem persists we can take it to step two :)
answered Mar 9 '13 at 23:54
CoboltCobolt
210138
210138
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
|
show 3 more comments
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
mine looks like this: -rw-r--r--+ 1 me staff 1585 Mar 25 2012 /Users/me/Library/Preferences/com.apple.desktop.plis AND in nano looks like this (even after restarting): /Users/me/Pictures/Ferrari-FF_2012_1600x1200_wallpaper_07automotiveface.com_photo.jpg
– alvizouri
Mar 12 '13 at 19:27
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
It does seem like you have permission problems, giving more permissions than needed can also cause problems. Please do chmod -R 700 ~/Library/Preferences chown -R me:staff ~/Library/Preferences I have a feeling this might help. Let me know!
– Cobolt
Mar 13 '13 at 8:36
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
Everything got fixed up, but Chrome "Didn't shotdown properly"
– alvizouri
Mar 14 '13 at 4:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
So it's all working but chrome has that issues now?
– Cobolt
Mar 14 '13 at 9:03
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
Yes, some apps act weird, for example, 'recent open documents' appear always the same documents.
– alvizouri
Mar 16 '13 at 4:34
|
show 3 more comments
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%2f562961%2fwhy-dont-my-settings-persist-after-a-reboot-in-mac-os-x-10-7-4%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