source: boot/common/changingowner.xml@ 2f1c8cb

Last change on this file since 2f1c8cb was c1f1c70, checked in by Jim Gifford <clfs@…>, 19 years ago

r1112@server (orig r1110): chris | 2006-01-30 11:07:11 -0800
Moved note in boot section about running the rest of the book as root to populating LFS/dev since the devices must be created as root.

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[bf8c11f]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
8<sect1 id="ch-boot-changingowner">
9 <?dbhtml filename="changingowner.html"?>
10
11 <title>Changing Ownership</title>
12
[c1f1c70]13 <para os="a">Currently, the <filename class="directory">/tools</filename>
[cbfa0a3]14 directory, <filename class="directory">/cross-tools</filename> directory, and
15 <filename class="directory">$LFS</filename> directory are owned
16 by the user <systemitem class="username">lfs</systemitem>,
[c1f1c70]17 a user that exists only on the host system. For security reasons, the
18 $LFS root directory and all of it subdirectories should be owned by
19 <systemitem class="username">root</systemitem>. Change the ownership for $LFS and its subdirectories by running these commands:</para>
[cbfa0a3]20
[94397ff]21<screen><userinput>chown root:root ${LFS}
22chown -R root:root $LFS/{bin,boot,dev,etc,home,lib,media,mnt,opt,proc,root,sbin,srv,sys,tmp,usr,var}</userinput></screen>
[cbfa0a3]23
[c1f1c70]24 <para os="b">The same issue also exists with <filename class="directory">/tools</filename> and <filename class="directory">/cross-tools</filename>. Although these directories can be deleted once the
[cbfa0a3]25 LFS system has been finished, they can be retained to build additional
26 LFS systems. If the <filename class="directory">/tools</filename> and <filename class="directory">/cross-tools</filename>
27 directories are kept as is, the files are owned by a user ID without a
[bf8c11f]28 corresponding account. This is dangerous because a user account created
29 later could get this same user ID and would own the <filename
[cbfa0a3]30 class="directory">/tools</filename> and <filename class="directory">/cross-tools</filename> directories and all the files therein,
[bf8c11f]31 thus exposing these files to possible malicious manipulation.</para>
32
[c1f1c70]33 <para os="c">To avoid this issue, add the <systemitem
[bf8c11f]34 class="username">lfs</systemitem> user to the new LFS system later when
35 creating the <filename>/etc/passwd</filename> file, taking care to assign
36 it the same user and group IDs as on the host system. Alternatively,
37 assign the contents of the <filename class="directory">/tools</filename>
[cbfa0a3]38 and <filename class="directory">/cross-tools</filename> directories to user <systemitem class="username">root</systemitem> by running
[94397ff]39 the following commands:</para>
[bf8c11f]40
[94397ff]41<screen><userinput>chown -R root:root /tools
42chown -R root:root /cross-tools</userinput></screen>
[cbfa0a3]43
[bf8c11f]44</sect1>
Note: See TracBrowser for help on using the repository browser.