| I don't know if this is another English UK-US difference but I think the bit
Quote:
For example it will not store your X (video card, keyboard, mouse) configuration or your network interfaces file which makes it ideal for using on more then one computer
should say "more THAN one computer" instead of "then", idk
Also the code
Code:
dd if=/dev/zero of=${disc}/sidux-rw bs=1M count=${size} && echo 'y' | /sbin/mkfs.ext3 ${disc}/sidux-rw
should be:
dd if=/dev/zero of=${disc}/sidux-rw bs=1M count=${size} && echo 'y' || /sbin/mkfs.ext3 ${disc}/sidux-rw
Thanks
Code:
--- hd-install-opts-en.htm 2007-11-09 22:59:38.000000000 -0500
+++ NEWhd-install-opts-en.htm 2007-11-17 12:49:04.000000000 -0500
@@ -274,7 +274,7 @@
<p>Using <span class="highlight-3">persist</span> gives you a live system which performs all the automatic features of the sidux live cd. This has the benefit of doing things like automatically configuring the hardware but it also means that it will recreate the same files each time you boot up..</p>
- <p><span class="highlight-3">For example it will not store your X (video card, keyboard, mouse) configuration or your network interfaces file which makes it ideal for using on more then one computer, </span> but can get in the way if you need to configure some of these features</p>
+ <p><span class="highlight-3">For example it will not store your X (video card, keyboard, mouse) configuration or your network interfaces file which makes it ideal for using on more than one computer, </span> but can get in the way if you need to configure some of these features</p>
<p>Perhaps the ideal use of persistence is in conjunction with the new install-usb-gui tool to create your own bootable flash drive with your files and the software you need.</p>
@@ -288,7 +288,7 @@
<pre>
disc="/media/sdb1"
size=1024
-dd if=/dev/zero of=${disc}/sidux-rw bs=1M count=${size} && echo 'y' | /sbin/mkfs.ext3 ${disc}/sidux-rw
+dd if=/dev/zero of=${disc}/sidux-rw bs=1M count=${size} && echo 'y' || /sbin/mkfs.ext3 ${disc}/sidux-rw
</pre>
<p class="highlight-2">NTFS partitions, commonly used for Windows NT/2000/XP (TM) installations, CANNOT be used at all for persistence.</p>
|