changingowner.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-changingowner">
  8. <?dbhtml filename="changingowner.html"?>
  9. <title>Changing Ownership</title>
  10. <para>Currently, the <filename class="directory">/tools</filename> directory
  11. is owned by the user <systemitem class="username">lfs</systemitem>, a user
  12. that exists only on the host system. Although the <filename
  13. class="directory">/tools</filename> directory can be deleted once the LFS
  14. system has been finished, it can be retained to build additional LFS systems.
  15. If the <filename class="directory">/tools</filename> directory is kept as is,
  16. the files are owned by a user ID without a corresponding account. This is
  17. dangerous because a user account created later could get this same user ID
  18. and would own the <filename class="directory">/tools</filename> directory
  19. and all the files therein, thus exposing these files to possible malicious
  20. manipulation.</para>
  21. <para>To avoid this issue, add the <systemitem class="username">lfs</systemitem>
  22. user to the new LFS system later when creating the
  23. <filename>/etc/passwd</filename> file, taking care to assign it the same user
  24. and group IDs as on the host system. Alternatively, assign the contents of
  25. the <filename class="directory">/tools</filename> directory to user
  26. <systemitem class="username">root</systemitem> by running the following
  27. command:</para>
  28. <screen><userinput>chown -R 0:0 /tools</userinput></screen>
  29. <para>The command uses <parameter>0:0</parameter> instead of
  30. <parameter>root:root</parameter>, because <command>chown</command>
  31. is unable to resolve the name <quote>root</quote> until the
  32. <filename>passwd</filename> file has been created.</para>
  33. </sect1>