This question has been asked already, but it doesn't seem to apply to Ubuntu 12.10. The file formats of /usr/share/gnome-control-center/keybindings/
has changed.
I tried the script someone kindly provided...
cd /usr/share/gnome-control-center/keybindings
for entry in $(grep KeyListEntry * |cut -d'/' -f2- |cut -d'"' -f1); do
echo $entry
gconftool -u "/$entry"
done
But it returns...
Error unsetting '/KeyListEntry>': Bad key or directory name: "/KeyListEntry>": '>' is an invalid character in key/directory names
...for every entry.
I changed a few of the keyboard shortcuts thinking it would only apply to my bluetooth keyboard, but I was wrong.
How can I go about resetting them in Ubuntu 12.10?
Some items like, Monitor Brightness Down, do not appear in Keyboard Settings 'Shortcuts', which is why I am looking for a reset.
lsof +D /usr/share/gnome-control-center/
and then kill the process that is using it or just do that in recovery mode. – Da1T Feb 24 '13 at 17:58lsof +D -V /usr/share/gnome-control-center/
tells me lsof: +d not followed by a directory path. So instead I runlsof -V /usr/share/gnome-control-center/keybindings/
and that tells me lsof: no file use located: /usr/share/gnome-control-center/keybindings/. I tested the output by pretending to edit one of the files to see if it noticed, and it did. This also happened via recovery mode (root shell). So in summary, I still do not know why it is stating 'Device or resource busy' – ckhatton Mar 13 '13 at 00:24