Bug 169538

Summary: wrong update instructions in handbook
Product: Documentation Reporter: Markus Klaschka <mk>
Component: Books & ArticlesAssignee: Johann Kois <jkois>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
de_DE.handbook.cutting-edge.chapter.sgml.diff none

Description Markus Klaschka 2012-06-29 10:00:26 UTC
http://www.freebsd.org/doc/de/books/handbook/makeworld.html
The update instructions below the first "blue box" on this page missing a real neccasary line:

make installworld

this here is the command-listing of that handbook-page:
# mount -u /
# mount -a -t ufs
# adjkerntz -i
# mergemaster -p
# cd /usr/src
# mergemaster
# reboot

please fix that ;)

On the other hand an explanaition of -i -U and -F parameters of mergemaster would be really nice, as they could safe a lot of time during the merging if used correctly...

Fix: 

add line "make installworld" before mergemaster
Comment 1 Niclas Zeising 2012-06-29 10:18:49 UTC
Here is a patch to add the missing installworld stage.
Regards!
-- 
Niclas
Comment 2 Johann Kois freebsd_committer freebsd_triage 2012-06-29 10:49:47 UTC
Responsible Changed
From-To: freebsd-doc->jkois

Take.
Comment 3 dfilter service freebsd_committer freebsd_triage 2012-06-29 11:57:50 UTC
Author: jkois
Date: Fri Jun 29 10:57:40 2012
New Revision: 39152
URL: http://svn.freebsd.org/changeset/doc/39152

Log:
  PR:     docs/169538
  
  Fix the update instructions for "build the world".
  
  Noticed by:             Markus Klaschka (mk att mkdev dott eu)
  Patch provided by:      Niclas Zeising (zeising att daemonic dott se)

Modified:
  head/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml

Modified: head/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml
==============================================================================
--- head/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml	Fri Jun 29 03:43:20 2012	(r39151)
+++ head/de_DE.ISO8859-1/books/handbook/cutting-edge/chapter.sgml	Fri Jun 29 10:57:40 2012	(r39152)
@@ -3,8 +3,8 @@
      The FreeBSD German Documentation Project
 
      $FreeBSD$
-     $FreeBSDde: de-docproj/books/handbook/cutting-edge/chapter.sgml,v 1.111 2012/03/25 15:29:19 bcr Exp $
-     basiert auf: 1.258
+     $FreeBSDde$
+     basiert auf: r38826
 -->
 
 <chapter id="updating-upgrading">
@@ -2212,6 +2212,7 @@ DOCSUPFILE?= /usr/share/examples/cvsup/d
 &prompt.root; <userinput>adjkerntz -i</userinput>
 &prompt.root; <userinput>mergemaster -p</userinput>
 &prompt.root; <userinput>cd /usr/src</userinput>
+&prompt.root; <userinput>make installworld</userinput>
 &prompt.root; <userinput>mergemaster</userinput>
 &prompt.root; <userinput>reboot</userinput></screen>
 
@@ -2307,7 +2308,7 @@ DOCSUPFILE?= /usr/share/examples/cvsup/d
 	pr&auml;-buildworld-Modus auf, der mit <option>-p</option> aktiviert
 	wird.  In diesem Modus werden nur Dateien verglichen, die f&uuml;r
 	den Erfolg von <maketarget>buildworld</maketarget> oder
-	<maketarget>installworld</maketarget> essentiell sind.</para> 
+	<maketarget>installworld</maketarget> essentiell sind.</para>
 
       <tip>
 	<para>Wenn Sie besonders paranoid sind, sollten Sie Ihr System nach
_______________________________________________
svn-doc-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-doc-all
To unsubscribe, send any mail to "svn-doc-all-unsubscribe@freebsd.org"
Comment 4 Johann Kois freebsd_committer freebsd_triage 2012-06-29 12:49:04 UTC
State Changed
From-To: open->closed

Committed. Close this PR. 

And thanks for the contribution.