source: chapter09/reboot.xml@ 29723b9

Last change on this file since 29723b9 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
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-finish-reboot">
8<title>Rebooting the system</title>
9<?dbhtml filename="reboot.html"?>
10
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>
13
14<screen><userinput>logout</userinput></screen>
15
16<para>Then unmount the virtual files systems:</para>
17
18<screen><userinput>umount $LFS/dev/pts
19umount $LFS/dev/shm
20umount $LFS/dev
21umount $LFS/proc
22umount $LFS/sys</userinput></screen>
23
24<para>And unmount the LFS file system:</para>
25
26<screen><userinput>umount $LFS</userinput></screen>
27
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>
30
31<screen><userinput>umount $LFS/usr
32umount $LFS/home
33umount $LFS</userinput></screen>
34
35<para>Now reboot your system with:</para>
36
37<screen><userinput>shutdown -r now</userinput></screen>
38
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>
41
42<para>When the reboot is complete, your LFS system is ready for use and you
43can start adding your own software.</para>
44
45</section>
Note: See TracBrowser for help on using the repository browser.