LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 09-25-2018, 04:37 AM   #1
Didier BOLLA
LQ Newbie
 
Registered: Sep 2018
Posts: 4

Rep: Reputation: Disabled
Troubles using a 80 pads azerty keyboard (ASUS EeePC 900)


Hello everybody!
I have fitted Bodhi Linux 5.0.0 Legacy on my tiny ASUS Eee PC 900; In the past I had a good work using a previous edition (I don't remenber its N°).
After each start, I have to use "system settings" to choose "keyboard map" + "french". And some pads don't work as expected.
I guess I should put down some new values in a file (something like /etc/default/keyboard ?)to set "pc80" in place of "pc105", and "fr" in place of "us".
Who knows how to amend this?
Friendly, Didier.
 
Old 09-25-2018, 10:37 AM   #2
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,142

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
Open a terminal and give the command locale. The reply should include something starting with LANGUAGE=fr and not LANGUAGE=en
If that's the problem, you need to set the locale with update-locale. First make sure that you have a French locale available and the correct name with
Code:
locale -a | grep fr
 
Old 09-27-2018, 07:02 AM   #3
Didier BOLLA
LQ Newbie
 
Registered: Sep 2018
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by DavidMcCann View Post
Open a terminal and give the command locale. The reply should include something starting with LANGUAGE=fr and not LANGUAGE=en
If that's the problem, you need to set the locale with update-locale. First make sure that you have a French locale available and the correct name with
Code:
locale -a | grep fr
Hello David, thank you for your reply.
I have typed the command "locale", please see here the result:
er@EeePC-900:~$ locale
LANG=en_US.UTF-8
LANGUAGE=
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
didier@EeePC-900:~$

I have typed "local -a grep fr"; The result is as follows:
ier@EeePC-900:~$ locale -a grep fr
C
C.UTF-8
en_AG
en_AG.utf8
en_AU.utf8
en_BW.utf8
en_CA.utf8
en_DK.utf8
en_GB.utf8
en_HK.utf8
en_IE.utf8
en_IL
en_IL.utf8
en_IN
en_IN.utf8
en_NG
en_NG.utf8
en_NZ.utf8
en_PH.utf8
en_SG.utf8
en_US.utf8
en_ZA.utf8
en_ZM
en_ZM.utf8
en_ZW.utf8
fr_CH.utf8
fr_FR.utf8
POSIX
didier@EeePC-900:~$

In the last lines returned I can see "fr_FR.utf8".

But I am not able to find a file called "FR_FR.utf8"in order to check if it seems to be a correct file to call.

Is it a file name, or not? Is it a value in an other map? If so, in which one?
Friendly, Didier
 
Old 09-29-2018, 01:38 AM   #4
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Didier BOLLA View Post
I have typed "local -a grep fr"; The result is as follows:
ier@EeePC-900:~$ locale -a grep fr
the command should be
Code:
locale -a | grep -i fr
but the problem is clear: you do not have french locale installed & activated.
this is a fairly easy thing to set up, i'm sure you could even find instructions in french.
search for ubuntu solutions.

fix that first.
 
1 members found this post helpful.
Old 09-29-2018, 11:33 AM   #5
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,142

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
Yes, fr_FR.utf8 is the thing you need for an AZERTY keyboard. Find out how to alter things with
Code:
man update-locale
The problem is that something is trying to be helpful and changing your French keyboard to a US one because you have a US set up! The other US things could be changed, although they are normally ignored by software settings. So
NUMERIC will use "." for a decimal point unless otherwise set
MONETARY will use "$" for the default currency
PAPER will default to US paper instead of A4
MEASUREMENT will default ti inches insetad of millimeters
 
1 members found this post helpful.
Old 09-29-2018, 12:02 PM   #6
Didier BOLLA
LQ Newbie
 
Registered: Sep 2018
Posts: 4

Original Poster
Rep: Reputation: Disabled
Smile French locale is missing

Hello

thank you David and ondoho for your help, I know now what to do

I shall close this thread soon now

Regards Didier
 
Old 10-02-2018, 11:02 AM   #7
Didier BOLLA
LQ Newbie
 
Registered: Sep 2018
Posts: 4

Original Poster
Rep: Reputation: Disabled
French locale was missing

Hello,

in order to close properly this post, I put down the solution I find:

Help (in french) was found in here:
https://doc.ubuntu-fr.org/tutoriel/c...rer_le_clavier

I had to ype this command line:
sudo dpkg-reconfigure keyboard-configuration

Than follow the instructions (in english).

And to use the new configuration, boot again the PC.

Great thanks to the people involved in the Linux organisations.

Didier
 
1 members found this post helpful.
Old 10-02-2018, 12:11 PM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Didier BOLLA View Post
Great thanks to the people involved in the Linux organisations.
you are now one of them!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CentOS 6.4 Install on asus eeePC 900 rebuilder CentOS 4 12-05-2015 04:21 AM
ASUS EEEPC 900 Linux Xandros 4GB Pearl White doncos Linux - Laptop and Netbook 14 11-21-2011 06:23 PM
[SOLVED] Advice OS for Asus EeePC 900 1gb RAM zaphod_es Linux - Laptop and Netbook 2 10-26-2011 02:38 PM
Asus Eeepc 900 Xandros - Youtube videos don't run! ruistracke Linux - Newbie 5 09-13-2011 01:06 PM
Battery issue - ASUS EEEPC 900 AceCraft Fedora 0 07-13-2009 08:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 07:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration