Penguin

Differences between version 29 and revision by previous author of DebianNotes.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 29 Last edited on Thursday, October 6, 2005 10:19:54 am by MattBrown Revert
Older page: version 27 Last edited on Thursday, March 17, 2005 4:49:26 am by SkliaroukArieh Revert
@@ -56,14 +56,14 @@
 <verbatim> 
 cd /var/lib/dpkg/info/ 
 for PKG in *.list ; do 
  while read FILE ; do 
- [ [ -r "$FILE" ] && continue 
+ [ -r "$FILE" ] && continue 
  echo "${PKG%%.list}" 
  break 
  done < "$PKG" 
 done \ 
-| xargs apt-get install --reinstall 
+| xargs apt-get -y install --reinstall 
 </verbatim> 
  
 It will look at your installed packages to see what files should be installed, then reinstall any packages for which files are missing. 
  
@@ -120,6 +120,14 @@
  bridge-ports eth0 eth1 
 </verbatim> 
  
 Note that you should __not__ have a separate stanza for <tt>eth0</tt> and <tt>eth1</tt>. 
+  
+!!! Debian Books  
+  
+There are several books available to teach you about Debian.  
+  
+* [Debian GNU/Linux 3.1 Bible|ISBN:0764576445]  
+* [The Debian System: Concepts and Techniques|ISBN:1593270690]  
+  
 ---- 
 CategoryDebian