Update of /cvsroot/leaf/doc/guide/install-bering-uclibc
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv32683

Modified Files:
        bookinfo.xml book.xml 
Added Files:
        buci-usbhdd.xml 
Log Message:
add chapter about prefabricated USB image written by Jorn Eriksen


Index: bookinfo.xml
===================================================================
RCS file: /cvsroot/leaf/doc/guide/install-bering-uclibc/bookinfo.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** bookinfo.xml        28 Jan 2006 16:20:49 -0000      1.8
--- bookinfo.xml        13 May 2006 17:08:22 -0000      1.9
***************
*** 23,26 ****
--- 23,92 ----
    <revhistory>
      <revision>
+       <revnumber>0.7</revnumber>
+ 
+       <date>2006-05-13</date>
+ 
+       <authorinitials>kp</authorinitials>
+ 
+       <revremark>USB chapter written by Jorn Eriksen </revremark>
+     </revision>
+ 
+     <revision>
+       <revnumber>0.5</revnumber>
+ 
+       <date>2004-08-04</date>
+ 
+       <authorinitials>kp</authorinitials>
+ 
+       <revremark>network chpt rewritten - originally written by Jacques Nilo
+       </revremark>
+     </revision>
+ 
+     <revision>
+       <revnumber>0.4</revnumber>
+ 
+       <date>2004-07-20</date>
+ 
+       <authorinitials>kp</authorinitials>
+ 
+       <revremark>some more chapters added - originally written by Jacques Nilo
+       </revremark>
+     </revision>
+ 
+     <revision>
+       <revnumber>0.3</revnumber>
+ 
+       <date>2004-07-19</date>
+ 
+       <authorinitials>kp</authorinitials>
+ 
+       <revremark>Added chapter about new disk contents - originally written by
+       Jacques Nilo</revremark>
+     </revision>
+ 
+     <revision>
+       <revnumber>0.2</revnumber>
+ 
+       <date>2003-11-12</date>
+ 
+       <authorinitials>kp</authorinitials>
+ 
+       <revremark>Added chapter about new entry in
+       /etc/network/options</revremark>
+     </revision>
+ 
+     <revision>
+       <revnumber>0.1</revnumber>
+ 
+       <date>2003-08-17</date>
+ 
+       <authorinitials>ET</authorinitials>
+ 
+       <revremark>Initial document</revremark>
+     </revision>
+   </revhistory>
+ 
+   <revhistory>
+     <revision>
        <revnumber>0.6</revnumber>
  

--- NEW FILE: buci-usbhdd.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="buci-usbhdd">
  <chapterinfo>
    <authorgroup>
      <author>
        <firstname>Jorn</firstname>

        <surname>Eriksen</surname>

        <affiliation>
          <address><email>jorner at user.sourceforge.net</email></address>
        </affiliation>
      </author>
    </authorgroup>

    <revhistory>
      <revision>
        <revnumber>1.0</revnumber>

        <date>2006-05-07</date>

        <authorinitials>JE</authorinitials>

        <revremark>2.4.1 Version</revremark>
      </revision>

      <revision>
        <revnumber>0.1</revnumber>

        <date>2006-04-22</date>

        <authorinitials>JE</authorinitials>

        <revremark>Initial version</revremark>
      </revision>
    </revhistory>
  </chapterinfo>

  <title>Using Bering-uClibc with an prefabricated USB HDD image</title>

  <section>
    <title>Preface</title>

    <para>This document describes a method for installing the Bering-uClibc
    USB image on a USB based HDD. The Bering-uClibc team has created a
    downloadable image for this purpose.</para>

    <para>If you know how to operate the dd utility in an *nix OS, you can
    download the image file <ulink
    
url="http://sourceforge.net/project/showfiles.php?group_id=13751";>here</ulink>.</para>

    <para>Please select the closest mirror.</para>
  </section>

  <section>
    <title>Bootable USB HDD</title>

    <section>
      <title>Initial preparations</title>

      <para>In order to use the above mentioned image, you will need a 128 MB
      USB based HDD. This is also called a USB-Stick, USB-memory stick (and
      many other things). A good idea would also be to check, that the PC you
      want to use the image on supports boot from USB devices.</para>

      <para>This image is created for a 128Mb stick and will thus not work on
      smaller sticks. It has been successfully tested on larger size
      sticks..</para>

      <para>This document presumes that you know your way around a *nix
      operating system.</para>
    </section>

    <section>
      <title>This is how you do it</title>

      <para>Start your *nix operating system of choice.</para>

      <para>Plug the USB stick into an USB port.</para>

      <para>Soon the console will show something like this: <programlisting>
       usb 5-5: new high speed USB device using address 3
       scsi5 : SCSI emulation for USB Mass Storage devices
         Vendor: Kingston  Model: DataTraveler 2.0  Rev: 6.16
         Type:   Direct-Access                      ANSI SCSI revision: 02
       Attached scsi removable disk sdg at scsi5, channel 0, id 0, lun 0
       USB Mass Storage device found at 3
       </programlisting> In this case the USB stick is present at device
      /dev/sdg (Debian Sarge).</para>

      <para>Download the image using your favourite tool. Here we have used
      <command>wget</command> to download from a mirror in Kent/England.
      Please select your closest mirror to save bandwith:</para>

      <para><programlisting>
       #wget 
http://osdn.dl.sourceforge.net/sourceforge/leaf/Bering-uClibc_2.4.1_usb_bering-uclibc.bin.img.gz
 
       </programlisting></para>

      <para>Then unzip the image:<programlisting>
       #gunzip Bering-uClibc_2.4.1_usb_bering-uclibc.bin.img.gz 
       </programlisting></para>

      <para>Now you can transfer the image to the USB stick:</para>

      <para><programlisting>
      #dd if=Bering-uClibc_2.4.1_usb_bering-uclibc.bin.img of=/dev/sdg
      </programlisting></para>

      <para>That's it!</para>

      <para>Take the stick, plug it into the PC you want to use it on and
      reboot.</para>
    </section>
  </section>
</chapter>
Index: book.xml
===================================================================
RCS file: /cvsroot/leaf/doc/guide/install-bering-uclibc/book.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** book.xml    28 Jan 2006 16:20:49 -0000      1.15
--- book.xml    13 May 2006 17:08:22 -0000      1.16
***************
*** 13,16 ****
--- 13,17 ----
  <!ENTITY editor       SYSTEM "buci-editor.xml">
  <!ENTITY ide          SYSTEM "buci-ide.xml">
+ <!ENTITY usbhdd               SYSTEM "buci-usbhdd.xml">
  <!ENTITY dnsmasq      SYSTEM "buci-dnsmasq.xml">
  <!ENTITY ppp          SYSTEM "buci-ppp.xml">
***************
*** 34,37 ****
--- 35,39 ----
    &editor;
    &ide;
+   &usbhdd;
    &dnsmasq;
    &ppp;



_______________________________________________
leaf-cvs-commits mailing list
leaf-cvs-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits

Reply via email to