source: chapter09/reboot.xml@ c2913ea

Last change on this file since c2913ea was 6a0e6f3, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • Remove the spurious <info> tags that I thought were necessary but evidently aren't

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/LFS-RNG/BOOK@4387 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[c5538b3]2<!DOCTYPE section [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[c5538b3]6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-finish-reboot">
[6a0e6f3]8<title>Rebooting the system</title>
[673b0d8]9<?dbhtml filename="reboot.html"?>
[5ba7054]10
[f89de33]11<para>Now that all of the software has been installed, it is time to reboot
12your computer. First exit from the chroot environment:</para>
[5ba7054]13
[a910344]14<screen><userinput>logout</userinput></screen>
15
[e421d2e]16<para>Then unmount the virtual files systems:</para>
17
[db9d773c]18<screen><userinput>umount $LFS/dev/pts
[9dfc02f]19umount $LFS/dev/shm
20umount $LFS/dev
21umount $LFS/proc
22umount $LFS/sys</userinput></screen>
[e421d2e]23
24<para>And unmount the LFS file system:</para>
[a910344]25
26<screen><userinput>umount $LFS</userinput></screen>
[3ddb615]27
[e421d2e]28<para>If at the start you decided to create multiple partitions, you'll need to
29unmount the other partitions before unmounting the main one, like this:</para>
[3ddb615]30
[a910344]31<screen><userinput>umount $LFS/usr
[4a7a683]32umount $LFS/home
[21ba4e3]33umount $LFS</userinput></screen>
[5ba7054]34
[f89de33]35<para>Now reboot your system with:</para>
[5ba7054]36
[f89de33]37<screen><userinput>shutdown -r now</userinput></screen>
[5ba7054]38
[f89de33]39<para>Assuming the Grub boot loader was set up as outlined earlier, the menu
40is set to boot <emphasis>LFS &milestone;</emphasis> automatically.</para>
[5ba7054]41
[f89de33]42<para>When the reboot is complete, your LFS system is ready for use and you
[5ba7054]43can start adding your own software.</para>
44
[c5538b3]45</section>
Note: See TracBrowser for help on using the repository browser.