--- xml/htdocs/doc/en/handbook/hb-install-config.xml 2012/02/22 21:27:45 1.109 +++ xml/htdocs/doc/en/handbook/hb-install-config.xml 2012/10/06 20:16:10 1.116 @@ -4,7 +4,7 @@ - + @@ -14,8 +14,8 @@ proceed. -16 -2012-02-22 +22 +2012-10-06
Filesystem Information @@ -98,7 +98,7 @@

-   /boot     ext2    defaults        1 2
+   /boot     ext2    defaults        0 2
 

@@ -122,25 +122,19 @@

-   /boot        ext2    defaults,noatime     1 2
+   /boot        ext2    defaults,noatime     0 2
 /dev/sda3   none         swap    sw                   0 0
 /dev/sda4   /            ext3    noatime              0 1
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 
-   /boot        ext2    defaults,noatime     1 2
+   /boot        ext2    defaults,noatime     0 2
 /dev/sda2   none         swap    sw                   0 0
 /dev/sda3   /            ext3    noatime              0 1
 
 /dev/cdrom  /mnt/cdrom   auto    noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 
@@ -154,9 +148,6 @@
 openprom    /proc/openprom  openpromfs  defaults             0 0
 
 /dev/cdrom  /mnt/cdrom      auto        noauto,user          0 0
-
-proc        /proc        proc    defaults             0 0
-shm         /dev/shm     tmpfs   nodev,nosuid,noexec  0 0
 
+
 # nano -w /etc/rc.conf
 

-When you're finished configuring /etc/rc.conf, save and exit. -

- -

-As you can see, this file is well commented to help you set up the necessary -configuration variables. You can configure your system to use unicode and -define your default editor and your display manager (like gdm or kdm). +When you're finished configuring these two files, save them and exit.

@@ -507,6 +490,77 @@ /etc/timezone file.

+ + + + +Configure locales + + +

+You will probably only use one or maybe two locales on your system. You have to +specify locales you will need in /etc/locale.gen. +

+ +
+# nano -w /etc/locale.gen
+
+ +

+The following locales are an example to get both English (United States) and +German (Germany) with the accompanying character formats (like UTF-8). +

+ +
+en_US ISO-8859-1
+en_US.UTF-8 UTF-8
+de_DE ISO-8859-1
+de_DE@euro ISO-8859-15
+
+ + +You can select your desired locales in the list given by running locale -a. + + + +We strongly suggest that you should use at least one UTF-8 locale because some +applications may require it. + + +

+The next step is to run locale-gen. It will generates all the locales you +have specified in the /etc/locale.gen file. +

+ +
+# locale-gen
+
+ +

+Once done, you now have the possibility to set the system-wide locale settings +in the /etc/env.d/02locale file: +

+ +
+LANG="de_DE.UTF-8"
+LC_COLLATE="C"
+
+ +

+And reload your environment: +

+ +
+# env-update && source /etc/profile
+
+ +

+We made a full Localization +Guide to help you through this process. You can also read our detailed +UTF-8 Guide for very specific +informations to enable UTF-8 on your system. +

+

Please continue with Installing Necessary System Tools.