| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959 | 
							- # SOME DESCRIPTIVE TITLE
 
- # Copyright (C) YEAR Free Software Foundation, Inc.
 
- # This file is distributed under the same license as the PACKAGE package.
 
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 
- #
 
- #, fuzzy
 
- msgid ""
 
- msgstr ""
 
- "Project-Id-Version: PACKAGE VERSION\n"
 
- "POT-Creation-Date: 2020-06-17 12:44+0800\n"
 
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
- "Language: \n"
 
- "MIME-Version: 1.0\n"
 
- "Content-Type: text/plain; charset=UTF-8\n"
 
- "Content-Transfer-Encoding: 8bit\n"
 
- #. type: Content of: <sect1><sect1info><address>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:14
 
- #, no-wrap
 
- msgid "&util-linux-url;"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect1info>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:12
 
- msgid ""
 
- "<productname>util-linux</productname> "
 
- "<productnumber>&util-linux-version;</productnumber> <placeholder "
 
- "type=\"address\" id=\"0\"/>"
 
- msgstr ""
 
- #. type: Content of: <sect1><title>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:17
 
- msgid "Util-linux-&util-linux-version;"
 
- msgstr ""
 
- #. type: Content of: <sect1><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:20
 
- msgid "Util-linux"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:26
 
- msgid ""
 
- "The Util-linux package contains miscellaneous utility programs.  Among them "
 
- "are utilities for handling file systems, consoles, partitions, and messages."
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:31
 
- msgid "&buildtime;"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:32
 
- msgid "&diskspace;"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:35
 
- msgid "&util-linux-fin-sbu;"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:36
 
- msgid "&util-linux-fin-du;"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><title>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:43
 
- msgid "Installation of Util-linux"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:45
 
- msgid ""
 
- "The FHS recommends using the <filename "
 
- "class=\"directory\">/var/lib/hwclock</filename> directory instead of the "
 
- "usual <filename class=\"directory\">/etc</filename> directory as the "
 
- "location for the <filename>adjtime</filename> file. Create this directory "
 
- "with:"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:51
 
- #, no-wrap
 
- msgid "<userinput remap=\"pre\">mkdir -pv /var/lib/hwclock</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:53
 
- msgid "Prepare Util-linux for compilation:"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:55
 
- #, no-wrap
 
- msgid ""
 
- "<userinput remap=\"configure\">./configure "
 
- "ADJTIME_PATH=/var/lib/hwclock/adjtime   \\\n"
 
- "            --docdir=/usr/share/doc/util-linux-&util-linux-version; \\\n"
 
- "            --disable-chfn-chsh  \\\n"
 
- "            --disable-login      \\\n"
 
- "            --disable-nologin    \\\n"
 
- "            --disable-su         \\\n"
 
- "            --disable-setpriv    \\\n"
 
- "            --disable-runuser    \\\n"
 
- "            --disable-pylibmount \\\n"
 
- "            --disable-static     \\\n"
 
- "            --without-python     \\\n"
 
- "            --without-systemd    \\\n"
 
- "            --without-systemdsystemunitdir</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:69
 
- #, no-wrap
 
- msgid ""
 
- "<userinput remap=\"configure\">./configure "
 
- "ADJTIME_PATH=/var/lib/hwclock/adjtime   \\\n"
 
- "            --docdir=/usr/share/doc/util-linux-&util-linux-version; \\\n"
 
- "            --disable-chfn-chsh  \\\n"
 
- "            --disable-login      \\\n"
 
- "            --disable-nologin    \\\n"
 
- "            --disable-su         \\\n"
 
- "            --disable-setpriv    \\\n"
 
- "            --disable-runuser    \\\n"
 
- "            --disable-pylibmount \\\n"
 
- "            --disable-static     \\\n"
 
- "            --without-python</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:81
 
- msgid ""
 
- "The --disable and --without options prevent warnings about building "
 
- "components that require packages not in LFS or are inconsistent with "
 
- "programs installed by other packages."
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:85
 
- msgid "Compile the package:"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:87
 
- #, no-wrap
 
- msgid "<userinput remap=\"make\">make</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:89
 
- msgid "If desired, run the test suite as a non-root user:"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><warning><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:91
 
- msgid ""
 
- "Running the test suite as the root user can be harmful to your system.  To "
 
- "run it, the CONFIG_SCSI_DEBUG option for the kernel must be available in the "
 
- "currently running system and must be built as a module.  Building it into "
 
- "the kernel will prevent booting.  For complete coverage, other BLFS packages "
 
- "must be installed.  If desired, this test can be run after rebooting into "
 
- "the completed LFS system and running:"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><warning><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:98
 
- #, no-wrap
 
- msgid "<userinput>bash tests/run.sh --srcdir=$PWD --builddir=$PWD</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:101
 
- #, no-wrap
 
- msgid ""
 
- "<userinput remap=\"test\">chown -Rv tester .\n"
 
- "su tester -c \"make -k check\"</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:104
 
- msgid "Install the package:"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><screen>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:106
 
- #, no-wrap
 
- msgid "<userinput remap=\"install\">make install</userinput>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><title>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:111
 
- msgid "Contents of Util-linux"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:114
 
- msgid "Installed programs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:115
 
- msgid "Installed libraries"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><segtitle>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:116
 
- msgid "Installed directories"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:119
 
- msgid ""
 
- "addpart, agetty, blkdiscard, blkid, blkzone, blockdev, cal, cfdisk, chcpu, "
 
- "chmem, choom, chrt, col, colcrt, colrm, column, ctrlaltdel, delpart, dmesg, "
 
- "eject, fallocate, fdformat, fdisk, fincore, findfs, findmnt, flock, fsck, "
 
- "fsck.cramfs, fsck.minix, fsfreeze, fstrim, getopt, hexdump, hwclock, i386, "
 
- "ionice, ipcmk, ipcrm, ipcs, isosize, kill, last, lastb (link to last), "
 
- "ldattach, linux32, linux64, logger, look, losetup, lsblk, lscpu, lsipc, "
 
- "lslocks, lslogins, lsmem, lsns, mcookie, mesg, mkfs, mkfs.bfs, mkfs.cramfs, "
 
- "mkfs.minix, mkswap, more, mount, mountpoint, namei, nsenter, partx, "
 
- "pivot_root, prlimit, raw, readprofile, rename, renice, resizepart, rev, "
 
- "rfkill, rtcwake, script, scriptreplay, setarch, setsid, setterm, sfdisk, "
 
- "sulogin, swaplabel, swapoff (link to swapon), swapon, switch_root, taskset, "
 
- "ul, umount, uname26, unshare, utmpdump, uuidd, uuidgen, uuidparse, wall, "
 
- "wdctl, whereis, wipefs, x86_64, and zramctl"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:132
 
- msgid "libblkid.so, libfdisk.so, libmount.so, libsmartcols.so, and libuuid.so"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:134
 
- msgid ""
 
- "/usr/include/blkid, /usr/include/libfdisk, /usr/include/libmount, "
 
- "/usr/include/libsmartcols, /usr/include/uuid, "
 
- "/usr/share/doc/util-linux-&util-linux-version;, and /var/lib/hwclock"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><bridgehead>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:145
 
- msgid "Short Descriptions"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:146
 
- msgid "<?dbfo list-presentation=\"list\"?> <?dbhtml list-presentation=\"table\"?>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:150
 
- msgid "<command>addpart</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:152
 
- msgid "Informs the Linux kernel of new partitions"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:154
 
- msgid "addpart"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:160
 
- msgid "<command>agetty</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:162
 
- msgid ""
 
- "Opens a tty port, prompts for a login name, and then invokes the "
 
- "<command>login</command> program"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:165
 
- msgid "agetty"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:171
 
- msgid "<command>blkdiscard</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:173
 
- msgid "Discards sectors on a device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:175
 
- msgid "blkdiscard"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:181
 
- msgid "<command>blkid</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:183
 
- msgid "A command line utility to locate and print block device attributes"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:186
 
- msgid "blkid"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:192
 
- msgid "<command>blkzone</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:194
 
- msgid "Runs zone command on the given block device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:196
 
- msgid "blkzone"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:202
 
- msgid "<command>blockdev</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:204
 
- msgid "Allows users to call block device ioctls from the command line"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:207
 
- msgid "blockdev"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:213
 
- msgid "<command>cal</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:215
 
- msgid "Displays a simple calendar"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:217
 
- msgid "cal"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:223
 
- msgid "<command>cfdisk</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:225
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:377
 
- msgid "Manipulates the partition table of the given device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:227
 
- msgid "cfdisk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:233
 
- msgid "<command>chcpu</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:235
 
- msgid "Modifies the state of CPUs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:237
 
- msgid "chcpu"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:243
 
- msgid "<command>chmem</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:245
 
- msgid "Configures memory"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:247
 
- msgid "chmem"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:253
 
- msgid "<command>choom</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:255
 
- msgid "Displays and adjusts OOM-killer score"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:257
 
- msgid "choom"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:263
 
- msgid "<command>chrt</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:265
 
- msgid "Manipulates real-time attributes of a process"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:267
 
- msgid "chrt"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:273
 
- msgid "<command>col</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:275
 
- msgid "Filters out reverse line feeds"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:277
 
- msgid "col"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:283
 
- msgid "<command>colcrt</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:285
 
- msgid ""
 
- "Filters <command>nroff</command> output for terminals that lack some "
 
- "capabilities, such as overstriking and half-lines"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:288
 
- msgid "colcrt"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:294
 
- msgid "<command>colrm</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:296
 
- msgid "Filters out the given columns"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:298
 
- msgid "colrm"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:304
 
- msgid "<command>column</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:306
 
- msgid "Formats a given file into multiple columns"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:308
 
- msgid "column"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:314
 
- msgid "<command>ctrlaltdel</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:316
 
- msgid ""
 
- "Sets the function of the Ctrl+Alt+Del key combination to a hard or a soft "
 
- "reset"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:319
 
- msgid "ctrlaltdel"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:325
 
- msgid "<command>delpart</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:327
 
- msgid "Asks the Linux kernel to remove a partition"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:329
 
- msgid "delpart"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:335
 
- msgid "<command>dmesg</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:337
 
- msgid "Dumps the kernel boot messages"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:339
 
- msgid "dmesg"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:345
 
- msgid "<command>eject</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:347
 
- msgid "Ejects removable media"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:349
 
- msgid "eject"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:355
 
- msgid "<command>fallocate</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:357
 
- msgid "Preallocates space to a file"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:359
 
- msgid "fallocate"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:365
 
- msgid "<command>fdformat</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:367
 
- msgid "Low-level formats a floppy disk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:369
 
- msgid "fdformat"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:375
 
- msgid "<command>fdisk</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:379
 
- msgid "fdisk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:385
 
- msgid "<command>fincore</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:387
 
- msgid "Counts pages of file contents in core"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:389
 
- msgid "fincore"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:395
 
- msgid "<command>findfs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:397
 
- msgid "Finds a file system by label or Universally Unique Identifier (UUID)"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:400
 
- msgid "findfs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:406
 
- msgid "<command>findmnt</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:408
 
- msgid ""
 
- "Is a command line interface to the libmount library for work with mountinfo, "
 
- "fstab and mtab files"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:411
 
- msgid "findmnt"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:417
 
- msgid "<command>flock</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:419
 
- msgid "Acquires a file lock and then executes a command with the lock held"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:422
 
- msgid "flock"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:428
 
- msgid "<command>fsck</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:430
 
- msgid "Is used to check, and optionally repair, file systems"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:432
 
- msgid "fsck"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:438
 
- msgid "<command>fsck.cramfs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:440
 
- msgid "Performs a consistency check on the Cramfs file system on the given device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:443
 
- msgid "fsck.cramfs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:449
 
- msgid "<command>fsck.minix</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:451
 
- msgid "Performs a consistency check on the Minix file system on the given device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:454
 
- msgid "fsck.minix"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:460
 
- msgid "<command>fsfreeze</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:462
 
- msgid ""
 
- "Is a very simple wrapper around FIFREEZE/FITHAW ioctl kernel driver "
 
- "operations"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:465
 
- msgid "fsfreeze"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:471
 
- msgid "<command>fstrim</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:473
 
- msgid "Discards unused blocks on a mounted filesystem"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:475
 
- msgid "fstrim"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:481
 
- msgid "<command>getopt</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:483
 
- msgid "Parses options in the given command line"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:485
 
- msgid "getopt"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:491
 
- msgid "<command>hexdump</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:493
 
- msgid "Dumps the given file in hexadecimal or in another given format"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:496
 
- msgid "hexdump"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:502
 
- msgid "<command>hwclock</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:504
 
- msgid ""
 
- "Reads or sets the system's hardware clock, also called the Real-Time Clock "
 
- "(RTC) or Basic Input-Output System (BIOS)  clock"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:508
 
- msgid "hwclock"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:514
 
- msgid "<command>i386</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:516
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:619
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:629
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1138
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1244
 
- msgid "A symbolic link to setarch"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:518
 
- msgid "i386"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:524
 
- msgid "<command>ionice</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:526
 
- msgid "Gets or sets the io scheduling class and priority for a program"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:528
 
- msgid "ionice"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:534
 
- msgid "<command>ipcmk</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:536
 
- msgid "Creates various IPC resources"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:538
 
- msgid "ipcmk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:544
 
- msgid "<command>ipcrm</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:546
 
- msgid "Removes the given Inter-Process Communication (IPC) resource"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:548
 
- msgid "ipcrm"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:554
 
- msgid "<command>ipcs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:556
 
- msgid "Provides IPC status information"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:558
 
- msgid "ipcs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:564
 
- msgid "<command>isosize</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:566
 
- msgid "Reports the size of an iso9660 file system"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:568
 
- msgid "isosize"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:574
 
- msgid "<command>kill</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:576
 
- msgid "Sends signals to processes"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:578
 
- msgid "kill"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:584
 
- msgid "<command>last</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:586
 
- msgid ""
 
- "Shows which users last logged in (and out), searching back through the "
 
- "<filename>/var/log/wtmp</filename> file; it also shows system boots, "
 
- "shutdowns, and run-level changes"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:590
 
- msgid "last"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:596
 
- msgid "<command>lastb</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:598
 
- msgid ""
 
- "Shows the failed login attempts, as logged in "
 
- "<filename>/var/log/btmp</filename>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:601
 
- msgid "lastb"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:607
 
- msgid "<command>ldattach</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:609
 
- msgid "Attaches a line discipline to a serial line"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:611
 
- msgid "ldattach"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:617
 
- msgid "<command>linux32</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:621
 
- msgid "linux32"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:627
 
- msgid "<command>linux64</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:631
 
- msgid "linux64"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:637
 
- msgid "<command>logger</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:639
 
- msgid "Enters the given message into the system log"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:641
 
- msgid "logger"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:647
 
- msgid "<command>look</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:649
 
- msgid "Displays lines that begin with the given string"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:651
 
- msgid "look"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:657
 
- msgid "<command>losetup</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:659
 
- msgid "Sets up and controls loop devices"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:661
 
- msgid "losetup"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:667
 
- msgid "<command>lsblk</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:669
 
- msgid "Lists information about all or selected block devices in a tree-like format"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:672
 
- msgid "lsblk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:678
 
- msgid "<command>lscpu</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:680
 
- msgid "Prints CPU architecture information"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:682
 
- msgid "lscpu"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:688
 
- msgid "<command>lsipc</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:690
 
- msgid "Prints information on IPC facilities currently employed in the system"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:693
 
- msgid "lsipc"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:699
 
- msgid "<command>lslocks</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:701
 
- msgid "Lists local system locks"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:703
 
- msgid "lslocks"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:709
 
- msgid "<command>lslogins</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:711
 
- msgid "Lists information about users, groups and system accounts"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:713
 
- msgid "lslogins"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:719
 
- msgid "<command>lsmem</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:721
 
- msgid "Lists the ranges of available memory with their online status"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:724
 
- msgid "lsmem"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:730
 
- msgid "<command>lsns</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:732
 
- msgid "Lists namespaces"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:734
 
- msgid "lsns"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:740
 
- msgid "<command>mcookie</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:742
 
- msgid ""
 
- "Generates magic cookies (128-bit random hexadecimal numbers) for "
 
- "<command>xauth</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:745
 
- msgid "mcookie"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:751
 
- msgid "<command>mesg</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:753
 
- msgid ""
 
- "Controls whether other users can send messages to the current user's "
 
- "terminal"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:756
 
- msgid "mesg"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:762
 
- msgid "<command>mkfs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:764
 
- msgid "Builds a file system on a device (usually a hard disk partition)"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:767
 
- msgid "mkfs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:773
 
- msgid "<command>mkfs.bfs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:775
 
- msgid "Creates a Santa Cruz Operations (SCO) bfs file system"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:777
 
- msgid "mkfs.bfs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:783
 
- msgid "<command>mkfs.cramfs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:785
 
- msgid "Creates a cramfs file system"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:787
 
- msgid "mkfs.cramfs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:793
 
- msgid "<command>mkfs.minix</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:795
 
- msgid "Creates a Minix file system"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:797
 
- msgid "mkfs.minix"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:803
 
- msgid "<command>mkswap</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:805
 
- msgid "Initializes the given device or file to be used as a swap area"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:808
 
- msgid "mkswap"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:814
 
- msgid "<command>more</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:816
 
- msgid "A filter for paging through text one screen at a time"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:818
 
- msgid "more"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:824
 
- msgid "<command>mount</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:826
 
- msgid ""
 
- "Attaches the file system on the given device to a specified directory in the "
 
- "file-system tree"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:829
 
- msgid "mount"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:835
 
- msgid "<command>mountpoint</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:837
 
- msgid "Checks if the directory is a mountpoint"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:839
 
- msgid "mountpoint"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:845
 
- msgid "<command>namei</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:847
 
- msgid "Shows the symbolic links in the given pathnames"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:849
 
- msgid "namei"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:855
 
- msgid "<command>nsenter</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:857
 
- msgid "Runs a program with namespaces of other processes"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:859
 
- msgid "nsenter"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:865
 
- msgid "<command>partx</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:867
 
- msgid "Tells the kernel about the presence and numbering of on-disk partitions"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:870
 
- msgid "partx"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:876
 
- msgid "<command>pivot_root</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:878
 
- msgid "Makes the given file system the new root file system of the current process"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:881
 
- msgid "pivot_root"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:887
 
- msgid "<command>prlimit</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:889
 
- msgid "Get and set a process' resource limits"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:891
 
- msgid "prlimit"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:897
 
- msgid "<command>raw</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:899
 
- msgid "Bind a Linux raw character device to a block device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:901
 
- msgid "raw"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:907
 
- msgid "<command>readprofile</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:909
 
- msgid "Reads kernel profiling information"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:911
 
- msgid "readprofile"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:917
 
- msgid "<command>rename</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:919
 
- msgid "Renames the given files, replacing a given string with another"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:922
 
- msgid "rename"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:928
 
- msgid "<command>renice</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:930
 
- msgid "Alters the priority of running processes"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:932
 
- msgid "renice"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:938
 
- msgid "<command>resizepart</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:940
 
- msgid "Asks the Linux kernel to resize a partition"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:942
 
- msgid "resizepart"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:948
 
- msgid "<command>rev</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:950
 
- msgid "Reverses the lines of a given file"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:952
 
- msgid "rev"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:958
 
- msgid "<command>rkfill</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:960
 
- msgid "Tool for enabling and disabling wireless devices"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:962
 
- msgid "rkfill"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:968
 
- msgid "<command>rtcwake</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:970
 
- msgid "Used to enter a system sleep state until specified wakeup time"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:973
 
- msgid "rtcwake"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:979
 
- msgid "<command>script</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:981
 
- msgid "Makes a typescript of a terminal session"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:983
 
- msgid "script"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:989
 
- msgid "<command>scriptreplay</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:991
 
- msgid "Plays back typescripts using timing information"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:993
 
- msgid "scriptreplay"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:999
 
- msgid "<command>setarch</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1001
 
- msgid ""
 
- "Changes reported architecture in a new program environment and sets "
 
- "personality flags"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1004
 
- msgid "setarch"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1010
 
- msgid "<command>setsid</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1012
 
- msgid "Runs the given program in a new session"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1014
 
- msgid "setsid"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1020
 
- msgid "<command>setterm</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1022
 
- msgid "Sets terminal attributes"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1024
 
- msgid "setterm"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1030
 
- msgid "<command>sfdisk</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1032
 
- msgid "A disk partition table manipulator"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1034
 
- msgid "sfdisk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1040
 
- msgid "<command>sulogin</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1042
 
- msgid ""
 
- "Allows <systemitem class=\"username\">root</systemitem> to log in; it is "
 
- "normally invoked by <command>init</command> when the system goes into single "
 
- "user mode"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1046
 
- msgid "sulogin"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1052
 
- msgid "<command>swaplabel</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1054
 
- msgid "Allows to change swaparea UUID and label"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1056
 
- msgid "swaplabel"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1062
 
- msgid "<command>swapoff</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1064
 
- msgid "Disables devices and files for paging and swapping"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1066
 
- msgid "swapoff"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1072
 
- msgid "<command>swapon</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1074
 
- msgid ""
 
- "Enables devices and files for paging and swapping and lists the devices and "
 
- "files currently in use"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1077
 
- msgid "swapon"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1083
 
- msgid "<command>switch_root</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1085
 
- msgid "Switches to another filesystem as the root of the mount tree"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1087
 
- msgid "switch_root"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1093
 
- msgid "<command>tailf</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1095
 
- msgid ""
 
- "Tracks the growth of a log file; displays the last 10 lines of a log file, "
 
- "then continues displaying any new entries in the log file as they are "
 
- "created"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1099
 
- msgid "tailf"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1105
 
- msgid "<command>taskset</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1107
 
- msgid "Retrieves or sets a process' CPU affinity"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1109
 
- msgid "taskset"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1115
 
- msgid "<command>ul</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1117
 
- msgid ""
 
- "A filter for translating underscores into escape sequences indicating "
 
- "underlining for the terminal in use"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1120
 
- msgid "ul"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1126
 
- msgid "<command>umount</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1128
 
- msgid "Disconnects a file system from the system's file tree"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1130
 
- msgid "umount"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1136
 
- msgid "<command>uname26</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1140
 
- msgid "uname26"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1146
 
- msgid "<command>unshare</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1148
 
- msgid "Runs a program with some namespaces unshared from parent"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1150
 
- msgid "unshare"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1156
 
- msgid "<command>utmpdump</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1158
 
- msgid "Displays the content of the given login file in a more user-friendly format"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1161
 
- msgid "utmpdump"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1167
 
- msgid "<command>uuidd</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1169
 
- msgid ""
 
- "A daemon used by the UUID library to generate time-based UUIDs in a secure "
 
- "and guaranteed-unique fashion"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1172
 
- msgid "uuidd"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1178
 
- msgid "<command>uuidgen</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1180
 
- msgid ""
 
- "Creates new UUIDs. Each new UUID can reasonably be considered unique among "
 
- "all UUIDs created, on the local system and on other systems, in the past and "
 
- "in the future"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1184
 
- msgid "uuidgen"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1190
 
- msgid "<command>uuidparse</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1192
 
- msgid "An utility to parse unique identifiers"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1194
 
- msgid "uuidparse"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1200
 
- msgid "<command>wall</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1202
 
- msgid ""
 
- "Displays the contents of a file or, by default, its standard input, on the "
 
- "terminals of all currently logged in users"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1205
 
- msgid "wall"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1211
 
- msgid "<command>wdctl</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1213
 
- msgid "Shows hardware watchdog status"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1215
 
- msgid "wdctl"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1221
 
- msgid "<command>whereis</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1223
 
- msgid ""
 
- "Reports the location of the binary, source, and man page for the given "
 
- "command"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1226
 
- msgid "whereis"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1232
 
- msgid "<command>wipefs</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1234
 
- msgid "Wipes a filesystem signature from a device"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1236
 
- msgid "wipefs"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1242
 
- msgid "<command>x86_64</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1246
 
- msgid "x86_64"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1252
 
- msgid "<command>zramctl</command>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1254
 
- msgid "A program to set up and control zram (compressed ram disk)  devices"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1257
 
- msgid "zramctl"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1263
 
- msgid "<filename class=\"libraryfile\">libblkid</filename>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1265
 
- msgid "Contains routines for device identification and token extraction"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1268
 
- msgid "libblkid"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1274
 
- msgid "<filename class=\"libraryfile\">libfdisk</filename>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1276
 
- msgid "Contains routines for manipulating partition tables"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1278
 
- msgid "libfdisk"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1284
 
- msgid "<filename class=\"libraryfile\">libmount</filename>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1286
 
- msgid "Contains routines for block device mounting and unmounting"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1289
 
- msgid "libmount"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1295
 
- msgid "<filename class=\"libraryfile\">libsmartcols</filename>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1297
 
- msgid "Contains routines for aiding screen output in tabular form"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1299
 
- msgid "libsmartcols"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><term>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1305
 
- msgid "<filename class=\"libraryfile\">libuuid</filename>"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1307
 
- msgid ""
 
- "Contains routines for generating unique identifiers for objects that may be "
 
- "accessible beyond the local system"
 
- msgstr ""
 
- #. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>
 
- #: /home/xry111/svn-repos/LFS-BOOK/chapter08/util-linux.xml:1310
 
- msgid "libuuid"
 
- msgstr ""
 
 
  |