Difference between revisions of "Configuration"
From Linuxintro
imported>ThorstenStaerk (New page: = Set english as system language = Example for a bad translation $ cat /dev/net/tun Die Dateizugriffsnummer ist in schlechter Verfassung So let's set the system language to english: $ c...) |
imported>ThorstenStaerk |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 7: | Line 7: | ||
there must not be anything but | there must not be anything but | ||
LANG=C | LANG=C | ||
+ | |||
+ | == example == | ||
+ | <pre> | ||
+ | bootstick@bootstick:~$ echo "hello" >/proc/cmdline | ||
+ | bash: /proc/cmdline: Keine Berechtigung | ||
+ | bootstick@bootstick:~$ export LANG=C | ||
+ | bootstick@bootstick:~$ echo "hello" >/proc/cmdline | ||
+ | bash: /proc/cmdline: Permission denied | ||
+ | bootstick@bootstick:~$ | ||
+ | </pre> | ||
+ | |||
+ | = Set German as system language = | ||
+ | # ls asdf | ||
+ | ls: cannot access asdf: No such file or directory | ||
+ | # export LANG=de_DE | ||
+ | # ls asdf | ||
+ | ls: cannot access asdf: Datei oder Verzeichnis nicht gefunden | ||
+ | # export LANG=de | ||
+ | # ls asdf | ||
+ | ls: cannot access asdf: No such file or directory | ||
+ | |||
+ | = Find out where configuration changes are stored = | ||
+ | See [[find out where configuration changes are stored|here]] | ||
+ | |||
+ | = Configure multimedia keys = | ||
+ | See [[configure multimedia keys]]. | ||
+ | |||
+ | = Configure context menu = | ||
+ | See [[context menu]]. | ||
+ | |||
+ | = Schedule tasks = | ||
+ | To schedule tasks to be execute at boot, during login or at a specific time see [[scheduling tasks]]. | ||
+ | |||
+ | = See also = | ||
+ | * [[Find out where configuration changes are stored]] |
Latest revision as of 12:05, 29 March 2013
Contents
Set english as system language
Example for a bad translation
$ cat /dev/net/tun Die Dateizugriffsnummer ist in schlechter Verfassung
So let's set the system language to english:
$ cat /etc/environment
there must not be anything but
LANG=C
example
bootstick@bootstick:~$ echo "hello" >/proc/cmdline bash: /proc/cmdline: Keine Berechtigung bootstick@bootstick:~$ export LANG=C bootstick@bootstick:~$ echo "hello" >/proc/cmdline bash: /proc/cmdline: Permission denied bootstick@bootstick:~$
Set German as system language
# ls asdf ls: cannot access asdf: No such file or directory # export LANG=de_DE # ls asdf ls: cannot access asdf: Datei oder Verzeichnis nicht gefunden # export LANG=de # ls asdf ls: cannot access asdf: No such file or directory
Find out where configuration changes are stored
See here
Configure multimedia keys
See configure multimedia keys.
See context menu.
Schedule tasks
To schedule tasks to be execute at boot, during login or at a specific time see scheduling tasks.