At sign on Linux Ubuntu
nico33160
Posted messages
1951
Status
Member
-
joe brown -
joe brown -
Hello everyone, I am using Linux Ubuntu 9.4, and I have a problem: every time I need to write my email, I can't because I can't type the at symbol (using Alt Gr + 0 or even Ctrl + Alt + 0 ...) but the thing is that when I go to the guest session, there is no issue... I checked in System -> Preferences -> Keyboard, but everything is the same...
If you have ever had this problem or if you know how to solve it, I thank you for giving me the solution.
Configuration: Linux / Firefox 3.0.19
--
Best regards,
Nico.
If you have ever had this problem or if you know how to solve it, I thank you for giving me the solution.
Configuration: Linux / Firefox 3.0.19
--
Best regards,
Nico.
14 answers
If the "guest" session is another account in the Linux sense, then the problem comes from your user profile and not from the keyboard or the installation/configuration of Linux.
Now, you need to locate which part of the profile is being considered. If the problem occurs in graphical mode (ctrl alt f7) but not once logged in text mode (ctrl alt f1), it is likely your Gnome profile (in fact, I am pretty sure the problem comes from it).
Your Gnome profile is stored in the hidden directory ~/.gnome2 or a similar name. Start by saving it by typing in a terminal:
http://doc.ubuntu-fr.org/terminal
If what follows does not work or does not suit you, it will be possible to go back by typing:
In one of these files, your keyboard is configured (and it differs, of course, from that of the guest account profile).
Then search for the culprit file in ~/.gnome2 and delete it (a file name that mentions keyboard?). Since I use KDE, I can't really tell you which file it is. Maybe a grep or find can help you (if we search layout, keyboard, or kbd?):
Once the file is found, delete it with the rm command (in text mode after quitting Gnome, just to do it cleanly).
If you can't find it, you can operate in a less subtle way (but you will lose everything you have customized in Gnome, for example, the theme you chose, the way you organized your Gnome bars...). To do this, simply delete ~/.gnome2. Again, I encourage you to quit your Gnome session beforehand. Once logged in text mode, run the command:
... then log back in graphically. Gnome will then recreate a default profile.
Good luck
Now, you need to locate which part of the profile is being considered. If the problem occurs in graphical mode (ctrl alt f7) but not once logged in text mode (ctrl alt f1), it is likely your Gnome profile (in fact, I am pretty sure the problem comes from it).
Your Gnome profile is stored in the hidden directory ~/.gnome2 or a similar name. Start by saving it by typing in a terminal:
http://doc.ubuntu-fr.org/terminal
cp -r ~/.gnome2 ~/gnome2_old
If what follows does not work or does not suit you, it will be possible to go back by typing:
rm -rf ~/.gnome2 cp -r ~/gnome2_old ~/.gnome2
In one of these files, your keyboard is configured (and it differs, of course, from that of the guest account profile).
Then search for the culprit file in ~/.gnome2 and delete it (a file name that mentions keyboard?). Since I use KDE, I can't really tell you which file it is. Maybe a grep or find can help you (if we search layout, keyboard, or kbd?):
cd ~/.gnome2 find * | grep -i keyboard find * | grep -i layout grep -nri keybord * grep -nri layout * ...
Once the file is found, delete it with the rm command (in text mode after quitting Gnome, just to do it cleanly).
rm ~/.gnome2/the/file/to/delete
If you can't find it, you can operate in a less subtle way (but you will lose everything you have customized in Gnome, for example, the theme you chose, the way you organized your Gnome bars...). To do this, simply delete ~/.gnome2. Again, I encourage you to quit your Gnome session beforehand. Once logged in text mode, run the command:
rm -rf ~/.gnome2
... then log back in graphically. Gnome will then recreate a default profile.
Good luck
nico33160
Posted messages
1951
Status
Member
143
Je ne peux pas vous aider avec ça.