file.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-file" role="wrap">
  8. <?dbhtml filename="file.html"?>
  9. <sect1info condition="script">
  10. <productname>file</productname>
  11. <productnumber>&file-version;</productnumber>
  12. <address>&file-url;</address>
  13. </sect1info>
  14. <title>File-&file-version;</title>
  15. <indexterm zone="ch-system-file">
  16. <primary sortas="a-File">File</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The File package contains a utility for determining the type of a given
  21. file or files.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&file-fin-sbu;</seg>
  27. <seg>&file-fin-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of File</title>
  33. <para>Prepare File for compilation:</para>
  34. <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
  35. <para>Compile the package:</para>
  36. <screen><userinput remap="make">make</userinput></screen>
  37. <para>To test the results, issue:</para>
  38. <screen><userinput remap="test">make check</userinput></screen>
  39. <para>Install the package:</para>
  40. <screen><userinput remap="install">make install</userinput></screen>
  41. </sect2>
  42. <!-- - - - - - - - - - -->
  43. <!-- Multilib - 32bit -->
  44. <!-- - - - - - - - - - -->
  45. <sect2 arch="ml_32,ml_all" role="installation">
  46. <title>Installation of File - 32bit</title>
  47. <para>Clean previous build:</para>
  48. <screen><userinput remap="pre">make distclean</userinput></screen>
  49. <para>Prepare File for compilation:</para>
  50. <screen><userinput remap="configure">CC="gcc -m32" ./configure \
  51. --prefix=/usr \
  52. --libdir=&usr-lib-m32; \
  53. --host=i686-pc-linux-gnu</userinput></screen>
  54. <para>Compile the package:</para>
  55. <screen><userinput remap="make">make</userinput></screen>
  56. <para>Install the package:</para>
  57. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  58. cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
  59. rm -rf DESTDIR</userinput></screen>
  60. </sect2><!-- m32 -->
  61. <!-- - - - - - - - - - -->
  62. <!-- Multilib - x32bit -->
  63. <!-- - - - - - - - - - -->
  64. <sect2 arch="ml_x32,ml_all" role="installation">
  65. <title>Installation of File - x32bit</title>
  66. <para>Clean previous build:</para>
  67. <screen><userinput remap="pre">make distclean</userinput></screen>
  68. <para>Prepare File for compilation:</para>
  69. <screen><userinput remap="configure">CC="gcc -mx32" ./configure \
  70. --prefix=/usr \
  71. --libdir=&usr-lib-mx32; \
  72. --host=x86_64-pc-linux-gnux32</userinput></screen>
  73. <para>Compile the package:</para>
  74. <screen><userinput remap="make">make</userinput></screen>
  75. <para>Install the package:</para>
  76. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  77. cp -Rv DESTDIR&usr-lib-mx32;/* &usr-lib-mx32;
  78. rm -rf DESTDIR</userinput></screen>
  79. </sect2><!-- mx32 -->
  80. <sect2 id="contents-file" role="content">
  81. <title>Contents of File</title>
  82. <segmentedlist>
  83. <segtitle>Installed programs</segtitle>
  84. <segtitle>Installed library</segtitle>
  85. <seglistitem>
  86. <seg>file</seg>
  87. <seg>libmagic.so</seg>
  88. </seglistitem>
  89. </segmentedlist>
  90. <variablelist>
  91. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  92. <?dbfo list-presentation="list"?>
  93. <?dbhtml list-presentation="table"?>
  94. <varlistentry id="file">
  95. <term><command>file</command></term>
  96. <listitem>
  97. <para>Tries to classify each given file; it does this by performing
  98. several tests&mdash;file system tests, magic number tests, and language
  99. tests</para>
  100. <indexterm zone="ch-system-file file">
  101. <primary sortas="b-file">file</primary>
  102. </indexterm>
  103. </listitem>
  104. </varlistentry>
  105. <varlistentry id="libmagic">
  106. <term><filename class="libraryfile">libmagic</filename></term>
  107. <listitem>
  108. <para>Contains routines for magic number recognition, used by the
  109. <command>file</command> program</para>
  110. <indexterm zone="ch-system-file libmagic">
  111. <primary sortas="c-libmagic">libmagic</primary>
  112. </indexterm>
  113. </listitem>
  114. </varlistentry>
  115. </variablelist>
  116. </sect2>
  117. </sect1>