Bug 148405

Summary: [handbook] Handbook instructions to populate diskless root are incomplete
Product: Documentation Reporter: Miroslav Prymek <prymek-phl5koa3>
Component: Books & ArticlesAssignee: freebsd-doc (Nobody) <doc>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Miroslav Prymek 2010-07-06 13:50:01 UTC
In handbook chapter Diskless Operation, Using make world to populate root (31.7.2.7.1) the example script doesn't include "make installworld && make installkernel". Without it the root isn't really populated.

Link today: http://www.freebsd.org/doc/en/books/handbook/network-diskless.html#AEN43233

Fix: 

Imho the script should read:

#!/bin/sh
export DESTDIR=/data/misc/diskless
mkdir -p ${DESTDIR}
cd /usr/src
make buildworld && make buildkernel
make installworld && make installkernel
cd /usr/src/etc; make distribution
Comment 1 Marc Fonvieille freebsd_committer freebsd_triage 2010-08-21 13:34:18 UTC
State Changed
From-To: open->closed

Fixed.  Thanks for the PR!
Comment 2 dfilter service freebsd_committer freebsd_triage 2010-08-21 13:34:19 UTC
blackend    2010-08-21 12:34:10 UTC

  FreeBSD doc repository

  Modified files:
    en_US.ISO8859-1/books/handbook/advanced-networking 
                                                       chapter.sgml 
  Log:
  Add missing make installworld && make installkernel commands to populate
  a diskless installation.
  
  PR:             docs/148405
  Submitted by:   Miroslav Prymek <prymek-phl5koa3@gosw.cz>
  
  Revision  Changes    Path
  1.431     +1 -0      doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"