]> git.sur5r.net Git - bacula/rescue/commitdiff
Update doc
authorKern Sibbald <kern@sibbald.com>
Sat, 3 Jan 2009 20:47:07 +0000 (20:47 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 3 Jan 2009 20:47:07 +0000 (20:47 +0000)
rescue/linux/usb/README.usb
rescue/linux/usb/config
rescue/linux/usb/partition_usb_key
rescue/linux/usb/write_usb_boot_partition

index dcae47b849bb5bdebdb51efffd6362a35486c200..31bbf902257143b32425458c7e3868d55688f605 100644 (file)
@@ -2,6 +2,7 @@
 This directory is used to build a USB key containing a Kubuntu 8.04 LiveCD
 with persistent OS files and persistent /home files.
 
+You will need to run as root for most things ...
 
 Start by editing the "config" file. Be sure to get your USB_DEV
 definition correct.  The scripts you need to partition the key and 
@@ -38,6 +39,34 @@ When the key is booted, assuming you choose the first option
 (LiveCD), you will be running as user "ubuntu" the password is
 "bacula", and you will be in /home/ubuntu.  
 
+The next step is to get a copy of kubuntu8.tar.gz, which is the
+USB boot image. Currently, it can be downloaded from:
+
+  www.bacula.org/downloads/kubuntu8.tar.gz
+
+or from:
+
+  www.sibbald.com/download/kubuntu8.tar.gz
+
+I recommend that you download it into the rescue/linux/usb directory.
+
+Finally, mount your USB key and detar the kubuntu8.tar.gz image 
+into the first partition.  Do this with:
+
+   ./write_usb_boot_partition
+
+You should now have a USB stick that can be booted providing the
+machine permits booting from the USB port -- this can be adjusted
+by modifying the BIOS boot sequence.  On Dell machines, you can 
+enter the BIOS setup by pressing F2 just after power on.  
+
+Alternatively, most machines let you boot from an alternate device.
+For example if you press F11 while a Sony Viao is powering up, it 
+will boot from the USB port. 
+
+On Dell machines during power on, if you press F12, you will be
+able to select any boot device (one time only) other than the one
+that is the default (normally the CDROM or HDD).
 
 
 ====
index 950c2801e6c7ebd8f912b3d1e478051f77e64fb3..14c2cea522f7982c3af7d6d4d403750a7449b96e 100644 (file)
@@ -13,8 +13,9 @@ CWD=`pwd`
 #
 # If you are unsure remove the USB device and rerun the fdisk -l
 # If you get this wrong, your harddisk could be wiped out.
+# It is probably "sda" or "sdb" or "sdc" 
 #
-USB_DEV=/dev/sda
+USB_DEV=/dev/xxx
 
 #
 # When your USB key is mounted, what is the mount directory?
@@ -37,4 +38,3 @@ DISK_IMAGE=${CWD}/kubuntu8
 # If you are remastering a Ubuntu or Kubunto ISO (not normally done)
 # Point to the ISO image
 ISO_IMAGE=
-
index 98c944ec416d5a21937a6b3989873b1168ad4d66..6ef9bb459da3bb9754d6ab2ee3d5bb5f008fac88 100755 (executable)
@@ -45,7 +45,6 @@ p
 
 +750M
 t
-1
 6
 a
 1
index be4c45f40b28cd6463e97d8c070edf2eb03c7742..a7164691e688f42386843f35a5e7dbc5e8217d83 100755 (executable)
@@ -19,6 +19,10 @@ umount ${USB_DEV}1 2>/dev/null 1>/dev/null
 
 echo "Reformat USB boot partition"
 mkfs.vfat -F 16 -n kubuntu8 ${USB_DEV}1
+if [ ! -d ${MOUNT_POINT}/kubuntu8 ] ; then
+   mkdir -p ${MOUNT_POINT}/kubuntu8
+   created="yes"
+fi
 mount ${USB_DEV}1 ${MOUNT_POINT}/kubuntu8
 if [ $? -ne 0 ] ; then
   echo "Mount of USB boot partition failed."
@@ -40,3 +44,6 @@ echo "syncing ..."
 sync
 sync
 umount ${MOUNT_POINT}/kubuntu8
+if [ "x$created" = "xyes" ] ; then
+   rmdir ${MOUNT_POINT}/kubuntu8
+fi