msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2011-10-28 22:38+0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(abstract):11 msgid "In this chapter we help you choose and install some important tools." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(version):15 msgid "10" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(date):16 msgid "2011-10-23" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):19 msgid "System Logger" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):22 msgid "Some tools are missing from the stage3 archive because several packages provide the same functionality. It is now up to you to choose which ones you want to install." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):28 msgid "The first tool you need to decide on has to provide logging facilities for your system. Unix and Linux have an excellent history of logging capabilities -- if you want you can log everything that happens on your system in logfiles. This happens through the system logger." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):35 msgid "Gentoo offers several system loggers to choose from. There are sysklogd, which is the traditional set of system logging daemons, syslog-ng, an advanced system logger, and metalog which is a highly-configurable system logger. Others might be available through Portage as well - our number of available packages increases on a daily basis." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):43 msgid "If you plan on using sysklogd or syslog-ng you might want to install logrotate afterwards as those system loggers don't provide any rotation mechanism for the log files." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):49 msgid "To install the system logger of your choice, emerge it and have it added to the default runlevel using rc-update. The following example installs syslog-ng. Of course substitute with your system logger:" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):55 msgid "Installing a system logger" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):55 #, no-wrap msgid "\n# emerge syslog-ng\n# rc-update add syslog-ng default\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):63 msgid "Optional: Cron Daemon" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):66 msgid "Next is the cron daemon. Although it is optional and not required for your system, it is wise to install one. But what is a cron daemon? A cron daemon executes scheduled commands. It is very handy if you need to execute some command regularly (for instance daily, weekly or monthly)." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):73 msgid "Gentoo offers three possible cron daemons: dcron, fcron and vixie-cron. Installing one of them is similar to installing a system logger. However, dcron and fcron require an extra configuration command, namely crontab /etc/crontab. If you don't know what to choose, use vixie-cron." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):81 msgid "We only provide vixie-cron for networkless installations. If you want another cron daemon you can wait and install it later on." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):86 msgid "Installing a cron daemon" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):86 #, no-wrap msgid "\n# emerge vixie-cron\n# rc-update add vixie-cron default\n(Only if you have chosen dcron or fcron) # crontab /etc/crontab\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):95 msgid "Optional: File Indexing" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):98 msgid "If you want to index your system's files so you are able to quickly locate them using the locate tool, you need to install sys-apps/mlocate." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):104 msgid "Installing mlocate" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):104 #, no-wrap msgid "\n# emerge mlocate\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):111 msgid "Optional: Remote Access" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):114 msgid "If you need to access your system remotely after installation, don't forget to add sshd to the default runlevel:" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):119 msgid "Adding sshd to the default runlevel" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):119 #, no-wrap msgid "\n# rc-update add sshd default\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):123 msgid "If you need serial console access (which is possible in case of remote servers), you'll need to uncomment the serial console section in /etc/inittab." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):129 msgid "Editing /etc/inittab" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):129 #, no-wrap msgid "\n# nano -w /etc/inittab\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):133 msgid "The following excerpt shows the uncommented section:" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):137 msgid "Uncommenting serial consoles in inittab" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):137 #, no-wrap msgid "\n# SERIAL CONSOLES\ns0:12345:respawn:/sbin/agetty 9600 ttyS0 vt100\ns1:12345:respawn:/sbin/agetty 9600 ttyS1 vt100\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):146 msgid "File System Tools" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):150 msgid "Depending on what file systems you are using, you need to install the necessary file system utilities (for checking the filesystem integrity, creating additional file systems etc.). Please note that tools for managing ext2/ext3 filesystems (e2fsprogs) are already installed as a part of the system." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):157 msgid "The following table lists the tools you need to install if you use a certain file system:" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(th):164 msgid "File System" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(th):165 msgid "Tool" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(th):166 msgid "Install Command" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(ti):169 msgid "XFS" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(ti):170 msgid "xfsprogs" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(ti):174 msgid "ReiserFS" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(ti):175 msgid "reiserfsprogs" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(ti):179 msgid "JFS" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(ti):180 msgid "jfsutils" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):188 msgid "Optional: RAID utilities for IBM hardware" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):191 msgid "If you are using SCSI RAID on a POWER5-based system, you should consider installing the iprutils which will allow you to work with the RAID disk array, get status on the disks in the arrays, and update microcode among other functions." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):198 msgid "Installing iprutils" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):198 #, no-wrap msgid "\n# emerge iprutils\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):206 msgid "Networking Tools" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):210 msgid "If you don't require any additional networking-related tools (such as ppp or a dhcp client) continue with Configuring the Bootloader." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):219 msgid "Optional: Installing a DHCP Client" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):222 msgid "If you require Gentoo to automatically obtain an IP address for your network interface(s), you need to install dhcpcd (or any other DHCP client -- see Modular Networking for a list of available DHCP clients). If you don't do this now, you might not be able to connect to the internet after the installation." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):230 msgid "Installing dhcpcd" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):230 #, no-wrap msgid "\n# emerge dhcpcd\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(title):237 msgid "Optional: Installing a PPPoE Client" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):240 msgid "If you need ppp to connect to the net, you need to install it." msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre:caption):244 msgid "Installing ppp" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(pre):244 #, no-wrap msgid "\n# emerge ppp\n" msgstr "" #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(p):248 msgid "Now continue with Configuring the Bootloader." msgstr "" #. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL #: ../../gentoo/xml/htdocs/doc/en/handbook//hb-install-tools.xml(None):0 msgid "translator-credits" msgstr ""