Difference between revisions of "Customizing Linux Systems"

From MPDLMediaWiki
Jump to navigation Jump to search
m
Line 4: Line 4:
In most cases it is sufficient to apply minor changes to a standard system
In most cases it is sufficient to apply minor changes to a standard system
to make it work as intended. Also, please, keep in mind to apply changes  
to make it work as intended. Also, please, keep in mind to apply changes  
with minimum side effects, ie. by makin them optable.
with minimum side effects, for example by making them optable.




Line 13: Line 13:


A default lightning installation usually comes with US type date time  
A default lightning installation usually comes with US type date time  
representation, which looks rather strange to Europeans.
representation.


To make lightning have it's default date time representation changed   
To make lightning have it's default date time representation changed   
Line 19: Line 19:


One way to accomplish this by keeping the goals described above results  
One way to accomplish this by keeping the goals described above results  
in a minorm odififactio to the thunderbird executable main script
in a minor modififaction to the thunderbird executable main script
(eg./usr/lib64/hunderbird/thunderbird.sh).
(e.g. /usr/lib64/thunderbird/thunderbird.sh).


Using the follwing lines near the top of the file:
Using the following lines near the top of the file:


# read customized system environment
# read customized system environment
Line 33: Line 33:
environmental settings.
environmental settings.


A user willing to change her thunderbird's and resp. her lightning's date  
A user willing to change her thunderbird's and thus her lightning's date  
time representation to a 24 h scheme a would place the following lines in  
time representation to a 24 h scheme a would place the following lines in  
a file named .thunderbird/.sysconfig in her home directory.
a file named .thunderbird/.sysconfig in her home directory.
LC_TIME=de_DE
export LC_TIME






[[Category:System Administration]]
[[Category:System Administration]]

Revision as of 13:33, 22 July 2013

This page will show you how to customize certain aspects of a Linux system, be it a desktop or a server.

In most cases it is sufficient to apply minor changes to a standard system to make it work as intended. Also, please, keep in mind to apply changes with minimum side effects, for example by making them optable.


Thunderbird

Custom / 24 Hour Time Format for Lightning

A default lightning installation usually comes with US type date time representation.

To make lightning have it's default date time representation changed environmental variables may be set accordingly.

One way to accomplish this by keeping the goals described above results in a minor modififaction to the thunderbird executable main script (e.g. /usr/lib64/thunderbird/thunderbird.sh).

Using the following lines near the top of the file:

  1. read customized system environment

sys_config=/etc/sysconfig/$MOZ_APPNAME [ -f $sys_config ] && . $sys_config usr_config=${HOME}/.${MOZ_APPNAME}/.sysconfig [ -f $usr_config ] && . $usr_config

will allow to read in no, user specific or system wide thunderbid related environmental settings.

A user willing to change her thunderbird's and thus her lightning's date time representation to a 24 h scheme a would place the following lines in a file named .thunderbird/.sysconfig in her home directory.

LC_TIME=de_DE export LC_TIME