slitaz-doc-wiki-data view pages/en/handbook/liveusb.txt @ rev 7

Add pages/en folder.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 26 12:17:18 2011 +0000 (2011-02-26)
parents
children
line source
1 ====== LiveUSB media ======
2 ===== Tazusb - Live USB Tool =====
4 Tazusb is a tool that can create bootable usb media with a few simple commands. It can also compress and backup the entire current filesystem to the media, thus preserving all modifications for future use. Type //tazusb usage// for a full list of commands or read the [[http://hg.slitaz.org/tazusb/raw-file/tip/doc/tazusb.en.html|TazUSB manual]].
6 === Generate your own LiveUSB media ===
8 To generate your own LiveUSB media, first you need to login as //root// with //su// and locate your usb storage device using the command:
10 <code># fdisk -l # normally /dev/sdb1 </code>
12 Then format and label your device (Warning: this will erase all data, make sure you specify the right device):
14 <code> # tazusb format /dev/sdb1 </code>
16 And finally generate your LiveUSB media device:
18 <code> # tazusb gen-liveusb /dev/sdb1 </code>
20 And that's all you need to do, you can now boot SliTaz from usb media (providing your computer bios supports this method).
22 === Maintaining system settings ===
24 When you finish your LiveUSB session, make sure you maintain your installed packages, system settings, etc, by backing up the entire current filesystem with one the following commands:
26 * fast compression, average filesize: <code> # tazusb writefs gzip </code>
27 * slow compression, smaller filesize: <code> # tazusb writefs lzma </code>
28 * no compression, larger filesize: <code> # tazusb writefs none </code>
30 Each of these writes everything to a '//rootfs.gz//' archive to be loaded the next time you boot.
32 If anything should go wrong when writing your filesystem, you can simply rollback to your previous filesystem by typing '//previous//' at the '//boot://' prompt. Older backups are named '//rootfs.gz.unixtimestamp//' and can be safely deleted from the ///home// folder to save disk space using //tazusb clean//.
34 === Tazusb Manual ===
36 The official Tazusb manual can be found in the SliTaz [[http://hg.slitaz.org/tazusb/raw-file/tip/doc/tazusb.en.html|Web site documentation]]; this contains a lot more useful information. The manual is also available through the documentation menu on the LiveCD.