Changeset 03e6a40 for BOOK/chroot
- Timestamp:
- Apr 20, 2014, 8:57:39 AM (11 years ago)
- Children:
- 0be79ea
- Parents:
- 88ef769 (diff), 578ca586 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- BOOK/chroot
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/chroot/64/createfiles.xml
r88ef769 r03e6a40 20 20 ln -sv /tools/bin/file /usr/bin 21 21 ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib 22 ln -sv /tools/lib/libstd* /usr/lib 22 ln -sv /tools/lib/libstdc++.so{.6,} /usr/lib 23 sed -e 's/tools/usr/' /tools/lib/libstdc++.la > /usr/lib/libstdc++.la 23 24 ln -sv bash /bin/sh 24 25 ln -sv /run /var/run</userinput></screen> … … 26 27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 27 28 href="../../boot/64/createfiles.xml" 28 xpointer="xpointer(//*[@os=' b'])"/>29 xpointer="xpointer(//*[@os='e'])"/> 29 30 30 31 <screen><userinput>mkdir -pv /usr/lib64 31 ln -sv /tools/lib/libstd*so* /usr/lib64</userinput></screen> 32 ln -sv /tools/lib/libstdc++.so{.6,} /usr/lib64</userinput></screen> 33 34 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 35 href="../../boot/common/createfiles.xml" 36 xpointer="xpointer(//*[@os='c'])"/> 37 38 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 39 href="../common/createfiles.xml" 40 xpointer="xpointer(//*[@os='d'])"/> 32 41 33 42 </sect1> -
BOOK/chroot/alpha-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/common/changingowner.xml
r88ef769 r03e6a40 11 11 <title>Changing Ownership</title> 12 12 13 <note>14 <para>This step is not optional as some of the binaries in15 <filename class="directory">/tools</filename> are set u+s.16 leaving the permissions as is could cause some commands,17 mount in particular, to fail later.</para>18 </note>19 20 13 <para os="a">Currently, the <filename class="directory">/tools</filename> 21 14 and <filename class="directory">/cross-tools</filename> directories 22 15 are owned by the user <emphasis>clfs</emphasis>, a user that 23 exists only on the host system. Although the<filename16 exists only on the host system. Although <filename 24 17 class="directory">/tools</filename> and <filename 25 class="directory">/cross-tools</filename> directories can be deleted26 once the CLFSsystem has been finished, they can be retained to build18 class="directory">/cross-tools</filename> can be deleted once the CLFS 19 system has been finished, they can be retained to build 27 20 additional CLFS systems. If the <filename class="directory">/tools</filename> 28 21 and <filename class="directory">/cross-tools</filename> directories are 29 22 kept as is, the files are owned by a user ID without a corresponding 30 23 account. This is dangerous because a user account created later could 31 get this same user ID and would own the <filename 32 class="directory">/tools</filename> directory and all the files therein, 33 thus exposing these files to possible malicious manipulation.</para> 24 get this same user ID and would own these directories and all the files 25 therein, thus exposing those files to possible malicious manipulation.</para> 34 26 35 <para os="b"> To avoid this issue, add the <systemitem36 class="username">clfs</systemitem> user to the new CLFS system later when37 creating the <filename>/etc/passwd</filename> file, taking care to assign38 it the same user and group IDs as on the host system. Alternatively,27 <para os="b">One possible fix for this issue might be to add the 28 <systemitem class="username">clfs</systemitem> user to the new CLFS system 29 later when creating the <filename>/etc/passwd</filename> file, taking care 30 to assign it the same user and group IDs as on the host system. Alternatively, 39 31 assign the contents of the <filename class="directory">/tools</filename> 40 32 and <filename class="directory">/cross-tools</filename> directories to -
BOOK/chroot/common/createfiles.xml
r88ef769 r03e6a40 11 11 <title>Creating Essential Symlinks</title> 12 12 13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"14 href="../../boot/common/createfiles.xml"15 xpointer="xpointer(//*[@os='a'])"/>13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 14 href="../../boot/common/createfiles.xml" 15 xpointer="xpointer(//*[@os='a'])"/> 16 16 17 17 <screen><userinput>ln -sv /tools/bin/{bash,cat,echo,grep,pwd,stty} /bin 18 18 ln -sv /tools/bin/file /usr/bin 19 19 ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib 20 ln -sv /tools/lib/libstd* /usr/lib 20 ln -sv /tools/lib/libstdc++.so{.6,} /usr/lib 21 sed -e 's/tools/usr/' /tools/lib/libstdc++.la > /usr/lib/libstdc++.la 21 22 ln -sv bash /bin/sh 22 23 ln -sv /run /var/run</userinput></screen> 23 24 25 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 26 href="../../boot/common/createfiles.xml" 27 xpointer="xpointer(//*[@os='c'])"/> 28 29 <screen os="d"><userinput>ln -sv /proc/self/mounts /etc/mtab</userinput></screen> 30 24 31 </sect1> -
BOOK/chroot/common/creatingdirs.xml
r88ef769 r03e6a40 13 13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 14 14 href="../../boot/common/creatingdirs.xml" 15 xpointer="xpointer(//*[@os=' a'])"/>15 xpointer="xpointer(//*[@os='b'])"/> 16 16 17 <screen os=" b"><userinput>mkdir -pv /{bin,boot,dev,{etc/,}opt,home,lib,mnt}17 <screen os="c"><userinput>mkdir -pv /{bin,boot,dev,{etc/,}opt,home,lib,mnt} 18 18 mkdir -pv /{proc,media/{floppy,cdrom},run/shm,sbin,srv,sys} 19 19 mkdir -pv /var/{lock,log,mail,spool} … … 24 24 mkdir -pv /usr/{,local/}share/{doc,info,locale,man} 25 25 mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo} 26 mkdir -pv /usr/{,local/}share/man/man{1..8} 27 for dir in /usr{,/local}; do 28 ln -sv share/{man,doc,info} $dir 29 done</userinput></screen> 30 31 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 32 href="../../boot/common/creatingdirs.xml" 33 xpointer="xpointer(//*[@os='c'])"/> 26 mkdir -pv /usr/{,local/}share/man/man{1..8}</userinput></screen> 34 27 35 28 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" … … 41 34 xpointer="xpointer(//*[@os='e'])"/> 42 35 36 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 37 href="../../boot/common/creatingdirs.xml" 38 xpointer="xpointer(//*[@os='f'])"/> 39 43 40 </sect1> -
BOOK/chroot/common/kernfs.xml
r88ef769 r03e6a40 11 11 <title>Mounting Virtual Kernel File Systems</title> 12 12 13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 14 href="../../boot/common/devices.xml" 15 xpointer="xpointer(//*[@os='a'])"/> 13 <note os="a"> 14 <para>The commands in the remainder of the book should be run as 15 the <systemitem class="username">root</systemitem> user. Check 16 that ${CLFS} is set in the 17 <systemitem class="username">root</systemitem> user’s environment 18 before proceeding.</para> 19 </note> 16 20 17 21 <para>Various file systems exported by the kernel are used to communicate … … 42 46 43 47 <para>Once the system is complete and booting, the rest of our device 44 nodes are created by the Eudev package. Since this package is not48 nodes are created by Udev, part of Systemd. Since this package is not 45 49 available to us right now, we must take other steps to provide device 46 50 nodes under on the CLFS filesystem. We will use the <quote>bind</quote> -
BOOK/chroot/common/pwdgroup.xml
r88ef769 r03e6a40 9 9 <?dbhtml filename="pwdgroup.html"?> 10 10 11 <title>Creating the passwd , group, and logFiles</title>11 <title>Creating the passwd and group Files</title> 12 12 13 13 <indexterm zone="ch-chroot-pwdgroup"> … … 17 17 <indexterm zone="ch-chroot-pwdgroup"> 18 18 <primary sortas="e-/etc/group">/etc/group</primary> 19 </indexterm>20 21 <indexterm zone="ch-chroot-pwdgroup">22 <primary sortas="e-/var/run/utmp">/var/run/utmp</primary>23 </indexterm>24 25 <indexterm zone="ch-chroot-pwdgroup">26 <primary sortas="e-/var/log/btmp">/var/log/btmp</primary>27 </indexterm>28 29 <indexterm zone="ch-chroot-pwdgroup">30 <primary sortas="e-/var/log/lastlog">/var/log/lastlog</primary>31 </indexterm>32 33 <indexterm zone="ch-chroot-pwdgroup">34 <primary sortas="e-/var/log/wtmp">/var/log/wtmp</primary>35 19 </indexterm> 36 20 … … 44 28 <screen><userinput>cat > /etc/passwd << "EOF" 45 29 <literal>root:x:&uid-root;:&gid-root;:root:/root:/bin/bash</literal> 30 <literal>bin:x:&uid-bin;:&gid-bin;:/bin:/bin/false</literal> 31 <literal>daemon:x:&uid-daemon;:&gid-daemon;:/sbin:/bin/false</literal> 32 <literal>messagebus:x:&uid-messagebus;:&gid-messagebus;:D-Bus Message Daemon User:/dev/null:/bin/false</literal> 33 <literal>nobody:x:&uid-nobody;:&gid-nogroup;:Unprivileged User:/dev/null:/bin/false</literal> 46 34 EOF</userinput></screen> 47 35 … … 73 61 utmp:x:&gid-utmp;: 74 62 usb:x:&gid-usb;: 75 cdrom:x:&gid-cdrom;:</literal> 63 cdrom:x:&gid-cdrom;: 64 adm:x:&gid-adm;: 65 messagebus:x:&gid-messagebus;: 66 systemd-journal:x:&gid-systemd-journal;: 67 mail:x:&gid-mail;: 68 wheel:x:&gid-wheel;: 69 nogroup:x:&gid-nogroup;:</literal> 76 70 EOF</userinput></screen> 77 71 … … 99 93 for the duration of the next chapters.</para> 100 94 101 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"102 href="../../boot/common/pwdgroup.xml"103 xpointer="xpointer(//*[@os='f'])"/>104 105 <screen><userinput>touch /var/run/utmp /var/log/{btmp,lastlog,wtmp}106 chgrp -v utmp /var/run/utmp /var/log/lastlog107 chmod -v 664 /var/run/utmp /var/log/lastlog108 chmod -v 600 /var/log/btmp</userinput></screen>109 110 <para>The <filename>/var/run/utmp</filename> file records the users that111 are currently logged in. The <filename>/var/log/wtmp</filename> file records112 all logins and logouts. The <filename>/var/log/lastlog</filename> file113 records when each user last logged in. The <filename>/var/log/btmp</filename>114 file records the bad login attempts.</para>115 116 95 </sect1> -
BOOK/chroot/mips-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mips/before-chroot.xml"/> -
BOOK/chroot/mips/creatingdirs.xml
r88ef769 r03e6a40 13 13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 14 14 href="../common/creatingdirs.xml" 15 xpointer="xpointer(//*[@os=' a'])"/>15 xpointer="xpointer(//*[@os='b'])"/> 16 16 17 17 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 18 18 href="../common/creatingdirs.xml" 19 xpointer="xpointer(//*[@os=' b'])"/>19 xpointer="xpointer(//*[@os='c'])"/> 20 20 21 21 <para os="m1">These entries are needed for the RaQ2 bootloader. Only use these … … 27 27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 28 28 href="../common/creatingdirs.xml" 29 xpointer="xpointer(//*[@os='c'])"/>30 31 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"32 href="../common/creatingdirs.xml"33 29 xpointer="xpointer(//*[@os='d'])"/> 34 30 … … 37 33 xpointer="xpointer(//*[@os='e'])"/> 38 34 35 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 36 href="../common/creatingdirs.xml" 37 xpointer="xpointer(//*[@os='f'])"/> 38 39 39 </sect1> -
BOOK/chroot/mips64-64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/mips64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/mips64/createfiles.xml
r88ef769 r03e6a40 20 20 ln -sv /tools/lib32/libgcc_s.so{,.1} /usr/lib32 21 21 ln -sv /tools/lib64/libgcc_s.so{,.1} /usr/lib64 22 ln -sv /tools/lib/libstd* /usr/lib 23 ln -sv /tools/lib32/libstd* /usr/lib32 24 ln -sv /tools/lib64/libstd* /usr/lib64 22 ln -sv /tools/lib/libstdc++.so{.6,} /usr/lib 23 ln -sv /tools/lib32/libstdc++.so{.6,} /usr/lib32 24 ln -sv /tools/lib64/libstdc++.so{.6,} /usr/lib64 25 sed -e 's/tools/usr/' /tools/lib/libstdc++.la > /usr/lib/libstdc++.la 25 26 ln -sv bash /bin/sh 26 27 ln -sv /run /var/run</userinput></screen> 27 28 29 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 30 href="../../boot/common/createfiles.xml" 31 xpointer="xpointer(//*[@os='c'])"/> 32 33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 34 href="../common/createfiles.xml" 35 xpointer="xpointer(//*[@os='d'])"/> 36 28 37 </sect1> -
BOOK/chroot/mips64/creatingdirs.xml
r88ef769 r03e6a40 13 13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 14 14 href="../common/creatingdirs.xml" 15 xpointer="xpointer(//*[@os=' a'])"/>15 xpointer="xpointer(//*[@os='b'])"/> 16 16 17 17 <screen><userinput>mkdir -pv /{bin,boot,dev,{etc/,}opt,home,lib{,32,64},mnt} … … 25 25 mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo} 26 26 mkdir -pv /usr/{,local/}share/man/man{1..8} 27 for dir in /usr{,/local}; do28 ln -sv share/{man,doc,info} $dir29 done30 27 install -dv /usr/lib/locale 31 28 ln -sv ../lib/locale /usr/lib32 … … 42 39 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 43 40 href="../common/creatingdirs.xml" 44 xpointer="xpointer(//*[@os='c'])"/>45 46 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"47 href="../common/creatingdirs.xml"48 41 xpointer="xpointer(//*[@os='d'])"/> 49 42 … … 52 45 xpointer="xpointer(//*[@os='e'])"/> 53 46 47 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 48 href="../common/creatingdirs.xml" 49 xpointer="xpointer(//*[@os='f'])"/> 50 54 51 </sect1> -
BOOK/chroot/multilib/createfiles.xml
r88ef769 r03e6a40 24 24 ln -sv /run /var/run</userinput></screen> 25 25 26 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 27 href="../../boot/common/createfiles.xml" 28 xpointer="xpointer(//*[@os='c'])"/> 29 30 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 31 href="../common/createfiles.xml" 32 xpointer="xpointer(//*[@os='d'])"/> 33 26 34 </sect1> -
BOOK/chroot/multilib/creatingdirs.xml
r88ef769 r03e6a40 13 13 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 14 14 href="../common/creatingdirs.xml" 15 xpointer="xpointer(//*[@os=' a'])"/>15 xpointer="xpointer(//*[@os='b'])"/> 16 16 17 17 <screen><userinput>mkdir -pv /{bin,boot,dev,{etc/,}opt,home,lib{,64},mnt} … … 25 25 mkdir -pv /usr/{,local/}share/{misc,terminfo,zoneinfo} 26 26 mkdir -pv /usr/{,local/}share/man/man{1..8} 27 for dir in /usr{,/local}; do28 ln -sv share/{man,doc,info} $dir29 done30 27 install -dv /usr/lib/locale 31 28 ln -sv ../lib/locale /usr/lib64</userinput></screen> 32 33 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"34 href="../common/creatingdirs.xml"35 xpointer="xpointer(//*[@os='c'])"/>36 29 37 30 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" … … 43 36 xpointer="xpointer(//*[@os='e'])"/> 44 37 38 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 39 href="../common/creatingdirs.xml" 40 xpointer="xpointer(//*[@os='f'])"/> 41 45 42 </sect1> -
BOOK/chroot/ppc-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ppc/before-chroot.xml"/> -
BOOK/chroot/ppc64-64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/ppc64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/sparc-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sparc/before-chroot.xml"/> -
BOOK/chroot/sparc64-64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/sparc64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/x86-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="x86/before-chroot.xml"/> -
BOOK/chroot/x86/before-chroot.xml
r88ef769 r03e6a40 35 35 <command>config.guess</command>:</para> 36 36 37 <screen><userinput> build-aux/config.guess</userinput></screen>37 <screen><userinput>lib/config.guess</userinput></screen> 38 38 39 39 <para>If the output of that command does not equal what is in … … 55 55 directory:</para> 56 56 57 <screen><userinput>setarch linux32 build-aux/config.guess</userinput></screen>57 <screen><userinput>setarch linux32 lib/config.guess</userinput></screen> 58 58 59 59 <para>If the output of the command above equals what is in … … 125 125 directory:</para> 126 126 127 <screen os="uui"><userinput> build-aux/config.guess</userinput></screen>127 <screen os="uui"><userinput>lib/config.guess</userinput></screen> 128 128 129 129 <para os="uuj">The output of the above command should be the same as the -
BOOK/chroot/x86_64-64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/> -
BOOK/chroot/x86_64-chapter.xml
r88ef769 r03e6a40 13 13 14 14 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/> 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="multilib/util-linux.xml"/>16 15 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/kernfs.xml"/> 17 16 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/chroot.xml"/>
Note:
See TracChangeset
for help on using the changeset viewer.