Folding@Home Network Booting with Linux

unhappy_mage

[H]ard|DCer of the Month - October 2005
Joined
Jun 29, 2004
Messages
11,455
Well, it's been mentioned lots of times before, but it's finally ready (sort of). Unhappy_mage is proud to present the Folding@Home Network Booting Server. Total download size as of now is around 65MB, and total headache factor per end user is still ridiculous. It will get about 5MB bigger, and about 37 zillion times easier to use, i promise.

For now, these are the instructions. These are not for the faint of heart or Linux n00bs, but it'll get easier and you can really only break one machine. If you are one of the aforementioned n00bs, it might be worth trying anyway if you don't mind losing one machine until it gets worked out.

https://netfiles.uiuc.edu/jkersey/linux/ is the URL. Get the 2 files from there, and get tomsrtbt from toms.net. You want the "dos" or "linux" version. If you have another disk, it'll probably work, just it needs fdisk, mkswap, mke2fs, and tar. Create a disk, and boot it on your "server" machine. You'll also need the server.tar.bz2 and install.tar.gz files available, burn 'em to a CD or something.

Okay, now we start the process of creating a place to put the installation. Run "fdisk" and make a / partition and a swap. You'll only need 512 or so of swap at most, don't go crazy on it. Make the rest /. You probably won't need a /boot partition, but it won't hurt. Run mkswap on the swap partition (remember to change the type!) and mke2fs -m 0 (the -m 0 says reserve 0% for the superuser) on the root. Remember to change the types of the partitions to 82 for the root (and boot, if you make one) and 83 for the swap.

Now mount the root somewhere and the cdrom somewhere else. For the sake of argument, the system is on /mnt/system and /mnt/cdrom. So do this now:
Code:
cd /mnt/system
tar jtvf /mnt/cdrom/server.tar.bz2
This will uncompress the server files to that partition.

Now we need to do some other miscellaneous stuff to finish up the install. First, we'll fix some config files. A few things are different in my setup than they are in yours, so they need to change. We'll make a script to simplify these changes.

First, what IP do you want for the server? Do "export IP=<your ip here>".
Where is your gateway to the internet? Do "export GW=<your gateway here>".
DNS server? "export DNS=<your DNS server>".
Name of the disk installed to? (e.g. hda, EXcluding the /dev/ part) "export MBR=/dev/<your disk>"
Name of root partition? (e.g. hda1) "export DISK=<your root>"
Name of swap partition? (e.g. hda2) "export SWAP=<your swap>"

Okay, now you've got the bits you need defined. Now we'll create the script itself. This is a "sed" script. We use "echo" to make the script.
Code:
echo 's/@@IP@@/$IP/;'      > /tmp/sub.sed
echo 's/@@GW@@/$GW/;'     >> /tmp/sub.sed
echo 's/@@DNS@@/$DNS/;'   >> /tmp/sub.sed
echo 's/@@DISK@@/$DISK/;' >> /tmp/sub.sed
echo 's/@@SWAP@@/$SWAP/;' >> /tmp/sub.sed
echo 's/@@MBR@@/$MBR/;'   >> /tmp/sub.sed
Okay, now the sed script is made. Make sure you get the right number of >'s (one the first time and two thereafter) one each line.

Now we'll unpack the install.tar.gz file to somewhere. Anywhere, it doesn't really matter. Just remember where it is. Change to that directory and do "cd files". Then run these commands:
Code:
sed -f /tmp/sub.sed < bootlocal.sh > /mnt/system/opt/bootlocal.sh
sed -f /tmp/sub.sed < dnsmasq.conf > /mnt/system/etc/dnsmasq.conf
sed -f /tmp/sub.sed < fstab        > /mnt/system/etc/fstab
sed -f /tmp/sub.sed < hostname     > /mnt/system/etc/hostname
sed -f /tmp/sub.sed < hosts        > /mnt/system/etc/hosts
sed -f /tmp/sub.sed < ifcfg-eth0   > /mnt/system/etc/sysconfig/network-scripts/ifcfg-eth0
sed -f /tmp/sub.sed < interfaces   > /mnt/system/etc/network/interfaces
sed -f /tmp/sub.sed < lilo.conf    > /mnt/system/etc/lilo.conf
mkdir /mnt/system/foldsave
mkdir /mnt/system/fold
Now we're ready to run Lilo and reboot. Do "lilo -C /mnt/system/etc/lilo.conf".

Clients should be able to boot now. The server will handle either "PXE" or "Etherboot" clients with equal ease.

If you run into trouble with these instructions, please email me. I appreciate any help you can give me in simplifying these instructions, the whole process, fixing stuff that's broken, money :rolleyes: , or whatever. Fold on, everyone.


edits:
add disclaimer about change partition types
no /dev/'s in DISK, SWAP, and ROOT.
 
Sweet!! I'll have to give this a try, even if I do fall into the "Linux noob" category (there's only one way to learn/relearn, right?)

I hope alot of people try this out and give you feedback on how things go :D


Keep on Folding!!

 
Bah.. trying to have some fun and do this in VM ware just to practice before I destroy some real hardware.. Almost there.. Just having some mount and extract confusion on my part. I mounted the harddrive to /mnt/system, but when I extract the files they dont show up there. Well Im off to bed for now, but Ill start crackin at it tomorrow again.

In all actuality I will probably run net boot server in a vmware session anyways..
 
moetop said:
Bah.. trying to have some fun and do this in VM ware just to practice before I destroy some real hardware.. Almost there.. Just having some mount and extract confusion on my part. I mounted the harddrive to /mnt/system, but when I extract the files they dont show up there. Well Im off to bed for now, but Ill start crackin at it tomorrow again.
are you sure that vmware has a writeable disk image? that's all i can think of (off the top of my head, anyways) i'll edit this if i think of anything else though...

In all actuality I will probably run net boot server in a vmware session anyways..
eww... get a dedicated machine. cheaper (hardware-wise) and less prone to breakage. better performing for folding on the server, too. (a dedicated machine, that is)

good luck!
 
Yes I think Vmware has a writable disk image if I know what your talking about.

I am already running folding on the machine that will host the VMware linux net boot server, so it's not a waste it's actualy saving me money.. Dont have to build a PC to serve for the net boot. It's basicaly free exept for the 256 Mb ram I set aside. (Out of the 4 gig on my server). All machines running folding will be real PC's. I may test with a few virtual ones, but only as a test..

That would be pretty funny though. I could fire up another dozen boxes Virtualy. Vboxen
 
moetop said:
Everything is looking really good. I have a disk created, and I have the files actually on the disk it self, but when I do the following commands the files do not show up on the drive I mounted at /mnt/system. It looks like they are extracting, but when it is finished I see nothing anywhere.

cd /mnt/system
tar jtvf /mnt/cdrom/server.tar.bz2

I also tried to put the extract path at the end, but that resulted in an error. I can put things on the /mnt/system , without issue. as a matter of fact I put the server.tar file in there. I also tried from a tmp directory on the boot system (Knoppix)

Is there another tar command I can use to extract explicitly to the /mnt/system mount point?

Let's break it into two parts. We'll decompress the file first, and then untar it.

So, first we run it thru bzip2.
Code:
bzip2 -d < /mnt/cdrom/server.tar.bz2 > /mnt/system/server.tar
And then we untar.
Code:
tar xvf /mnt/system/server.tar -C /mnt/system

This seems like it'll work; it does on my system. I'm not sure that tomsrtbt handles tar options the same way, but I think the knoppix tar should.

With regard to vmware, you may need to set up a bridge (WinXP-style) between your real ethernet adapter and the vmware one. The vmware one is going to be one the 10.0.0.0/8 subnet, and your real one is probably on 192.168.1.0/24, but it's not too hard to set up routing.

Let me know if (when!) you run into more problems. The CD of Ease is coming...
 
Actualy a little more fiddeling and I got it.

I did a "tar xjvf" instead, and all was well.. For some reason it dosent think the partition is bootable. I reboot and it says there is no system disk.. never get's past the POST bootable drive detect. operating system not found error. Looks like the MBR never get's writen.

I've got 4 gig nic's in my server and a routing (layer 3 / Rip V2) 8 port gig switch. In the end I am going to bind a seperate NIC to the VMware session, and vlan it off on my router/switch and set up RIPv2 between the vlans. Let the hardware do the work.

The last couple of steps I get errors.. The 2 Mkdirs dont really matter right, but the lilo error is concerning..
----------------------------------
root@ttyp1[files]# mkdir /mnt/system/foldsave
mkdir: cannot create directory `/mnt/system/foldsave': File exists
root@ttyp1[files]# mkdir /mnt/system/fold
mkdir: cannot create directory `/mnt/system/fold': File exists
root@ttyp1[files]# lilo -C /mnt/system/etc/lilo.conf
control character in variable name at or above line 1 in file '/mnt/system/etc/lilo.conf'
----------------------------------

Heres my export commands. Ignore the Ip address for now ..
----------------------------------
export IP=192.168.1.11
export GW=192.168.1.1
export DNS=24.247.24.53
export MBR=/dev/sda1
export DISK=/dev/sda1
export SWAP=/dev/sda5
----------------------------------
Sda1 in my primary partition, and Sda5 in the swap.
 
post your lilo.conf so we can debug it please...

and with the mkdirs failing, that's not really a big problem as long as there are directories under that name there. doesn't matter how they get there.
 
Ya I was pretty sure the mkdirs were totaly irrelevent.

Here's the lilo.conf

-------------------------------
boot=/dev/$MBR
vga=normal
prompt
timeout=50
append = "hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=sc
si apm=power-off nomce noapic"

image=/boot/linux24
label=dsl
root=/dev/$DISK
read-only
append = " toram"
------------------------------

Should I just edit the lilo.conf and put sda1 instead of the varriable??

Actualy Im going to go give tha a try..
 
yeah, it appears that lilo doesn't like variables. just put sda1 in instead of them ($MBR and $DISK) and it should be alright.

just checking here: is there a linebreak between lines 5/6 there, or is that just from copy-pasting? if there is - remove it. that'll break stuff most likely.
 
Yes the space was in there. I did not do it myself.
I added sda1 in place of tha varriable, and am now getting the following error. Looks like Knoppix is missing something, as well as trying to write something to a directory on the CD.. :(

-----------------------------
root@ttyp1[files]# lilo -C /mnt/system/etc/lilo.conf
/dev/mapper/control: open failed: No such device
Is device-mapper driver missing from kernel?
/dev/mapper/control: open failed: No such device
Is device-mapper driver missing from kernel?
Incompatible libdevmapper 1.00.19-ioctl (2004-07-03)(compat) and kernel driver
Fatal: creat /boot/boot.0800: Read-only file system
root@ttyp1[files]#
------------------------------

Here is the new lilo.conf

------------------------------
root@ttyp1[files]# more /mnt/system/etc/lilo.conf
------------------------------
boot=/dev/sda1
vga=normal
prompt
timeout=50
append = "hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi apm=power-off nomce noapic"
image=/boot/linux24
label=dsl
root=/dev/$DISK
read-only
append = " toram"

----------------------------
root@ttyp1[files]#
----------------------------
 
Same new error even with disk changed.. Srry did an Edit on you in previous post after you responded..

-----------------------------------------
root@ttyp1[files]# lilo -C /mnt/system/etc/lilo.conf
/dev/mapper/control: open failed: No such device
Is device-mapper driver missing from kernel?
/dev/mapper/control: open failed: No such device
Is device-mapper driver missing from kernel?
Incompatible libdevmapper 1.00.19-ioctl (2004-07-03)(compat) and kernel driver
Fatal: creat /boot/boot.0800: Read-only file system
root@ttyp1[files]# more /mnt/system/etc/lilo.conf
boot=/dev/sda1
vga=normal
prompt
timeout=50
append = "hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi apm=power-off nomce noapic"
image=/boot/linux24
label=dsl
root=/dev/sda1
read-only
append = " toram"
---------------------------------------
 
Okay, a couple possible solutions to the lilo problem.

1) mkdir /dev/mapper (may exist already...)
mknod /dev/mapper/control c 10 63
try lilo again.

2) Try removing the device-mapper module. Do an lsmod and see if it shows up, then try removing it.

3) make sure that /mnt/system/boot isn't mounted read-only. It looks like it is... can you `touch` a new file on that partition? If it's read-only, do mount -o remount,rw /mnt/system/boot.

Lastly, can you include the contents of /tmp/sub.sed? It should not have any $s in it, just the values of the variables (so it should start s/@@IP@@/10.3.5.7/; or something similar).
 
Ok

The /dev/mapper was already there, but I nuked it and readded it using mknod /dev/mapper/control c 10 63

There was no device mapper.

--------------------------
root@ttyp2[mapper]# lsmod
Module Size Used by Not tainted
autofs4 8756 1
af_packet 13544 0 (autoclean)
agpgart 42724 0 (unused)
es1371 30120 1
gameport 1388 0 [es1371]
ac97_codec 11916 0 [es1371]
soundcore 3428 4 [es1371]
pcnet32 17188 1
mii 2240 0 [pcnet32]
crc32 2816 0 [pcnet32]
serial 52100 0 (autoclean)
pcmcia_core 39840 0
thermal 6724 0 (unused)
processor 9008 0 [thermal]
fan 1600 0 (unused)
button 2700 0 (unused)
battery 5952 0
ac 1824 0
rtc 7036 0 (autoclean)
cloop 8740 2
ieee1394 183076 0
usb-storage 61760 0 (unused)
usb-uhci 21644 0 (unused)
usbcore 57600 1 [usb-storage usb-uhci]
ataraid 6180 0
BusLogic 83388 1
ide-scsi 8816 1
---------------------------------


The /mnt/system/boot can be writen to (I copyed a file to it) but the /boot/ directory can not (knoppix cd makes it readonly) it looks like it is trying to change the /boot on the knoppix disk and NOT the /mnt/system/boot disk

For some reason the sub.sed was screwed, but I manualy fixed it. Here is the new one.

--------------------------------
root@ttyp1[tmp]# more sub.sed
s/@@IP@@/162.48.1.11/;
s/@@GW@@/162.48.1.1/;
s/@@DNS@@/24.247.24.53/;
s/@@DISK@@/sda1/;
s/@@SWAP@@/sda5/;
s/@@MBR@@/sda1/;
--------------------------------

Still didnt work after that..


on a whim I also changed the lilo.conf to reflect the MNT piont. Still no go.

--------------------------------
root@ttyp1[etc]# more lilo.conf
boot=/dev/sda1
vga=normal
prompt
timeout=50
append = "hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=sc
si apm=power-off nomce noapic"
image=/mnt/system/boot/linux24
label=dsl
root=/dev/sda1
read-only
append = " toram"
------------------------------
 
Ahhhh ha!!!!

root@ttyp1[files]# lilo -C /mnt/system/etc/lilo.conf -M /dev/sda mbr -s /mnt/system/boot
Backup copy of /dev/sda in /mnt/system/boot/boot.0800
The Master Boot Record of /dev/sda has been updated.

Gonna give it a try now
 
Well it doesent get any closer than this..

I no longer getting an error when running Lilo using the command "lilo -C /mnt/system/etc/lilo.conf -M /dev/sda mbr -s /mnt/system/boot" I get no errors and it looks like it wrote it. For boot in my lilo.conf I have used both sda and sda1 no diffrence.
-------------------------
boot=/dev/sda1
vga=normal
prompt
timeout=50
append = "hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=sc
si apm=power-off nomce noapic"
image=/mnt/system/boot/linux24
label=dsl
root=/dev/sda1
read-only
append = " toram"
-------------------------

I am getting a diffrent error on boot up now.. It says

No boot signature in partition
Opperating system not found

I am so close I can taste it.!!
Any ideas?
 
Try an fdisk -l /dev/sda and see if any partitions are marked active. Also try taking out all the "hdx=scsi" things in the append= line. The image= line should probably be /boot/linux24, because that's where it will eventually be when it boots for real.

Then do:
Code:
lilo -M /dev/sda mbr              // write the MBR
lilo -C /mnt/system/etc/lilo.conf -s /mnt/system/boot -A /dev/sda1   // write the boot sector to sda1
 
What fdisk and the commands looks like..

-------------------------------------
root@ttyp1[etc]# fdisk -l /dev/sda

Disk /dev/sda: 1073 MB, 1073741824 bytes
128 heads, 32 sectors/track, 512 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 256 524272 6 FAT16
/dev/sda2 257 512 524288 5 Extended
/dev/sda5 257 512 524272 6 FAT16


root@ttyp1[etc]# lilo -M /dev/sda mbr -s /mnt/system/boot
/mnt/system/boot/boot.0800 exists - no /dev/sda backup copy made.
The Master Boot Record of /dev/sda has been updated.
root@ttyp1[etc]# lilo -C /mnt/system/etc/lilo.conf -s /mnt/system/boot -A /dev/sda
/dev/sda1
root@ttyp1[etc]# more /mnt/system/etc/lilo.conf
boot=/dev/sda1
vga=normal
prompt
timeout=50
append = "apm=power-off nomce noapic"
image=/boot/linux24
label=dsl
root=/dev/sda1
read-only
append = " toram"
-------------------------------------

Dam It did not work.. Is that the right file system? fat16 I thought that it was supposed to be converted..
 
the filesystem should be of type 'linux'

hit 't' '1' '82' in fdisk to change it.

then, 't' '5' '83' to make the swap partition.

unhappy_mage says he's sorry he forgot to mention that. he'll never do it again (until next time, anyway)
 
You did mention it. Not explicity, but you did mention it.. I'm just an Idiot..
 
Ok.. refdisk the whole dam think.. noe were dealing with sda1 and sda2

-----------------------------------------------------------------
root@ttyp1[knoppix]# fdisk -l

Disk /dev/sda: 1073 MB, 1073741824 bytes
128 heads, 32 sectors/track, 512 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 256 524272 83 Linux
/dev/sda2 257 512 524288 82 Linux swap
-----------------------------------------------------------------


Isint that a odd responce at the end of the lilo command? /dev/sda1

-----------------------------------------------------------------
root@ttyp1[knoppix]# lilo -M /dev/sda mbr -s /mnt/system/boot
/mnt/system/boot/boot.0800 exists - no /dev/sda backup copy made.
The Master Boot Record of /dev/sda has been updated.
root@ttyp1[knoppix]# lilo -C /mnt/system/etc/lilo.conf -s /mnt/system/boot -A /dev/sda1
Fatal: Not a device with partitions '/dev/sda1'
root@ttyp1[knoppix]# lilo -C /mnt/system/etc/lilo.conf -s /mnt/system/boot -A /dev/sda
/dev/sda1
root@ttyp1[knoppix]#
-----------------------------------------------------------------


Here's the latest lilo.conf

-----------------------------------------------------------------
root@ttyp1[knoppix]# more /mnt/system/etc/lilo.conf
boot=/dev/sda
vga=normal
prompt
timeout=50
append = "apm=power-off nomce noapic"
image=/boot/linux24
label=dsl
root=/dev/sda1
read-only
append = " toram"
-----------------------------------------------------------------
 
Sorry, I may have misled you there. the -A argument tells which drive is active. So it was correct to tell you "/dev/sda1"; that's where we want it, all right.

lilo -M /dev/sda mbr
lilo -C /mnt/system/etc/lilo.conf -s /mnt/system/boot -b /dev/sda1

should do the trick. `man lilo` is a big help, if you can get to it.
 
well I found another way...

I did a

chroot /mnt/system
liloconfig

I am now booting, BUT I now get a kernel panic right in the middle of it..
-----------------------------------------
...
kmod: failed to exec /sbin/modprobe -s -k block-major-8, errno =2
VFS: Cannot open root device "801" or 08:01
Please append a correct "root=" boot option
Kernel Panic: VFS: Unable to mount root fs on 08:01
-----------------------------------------
 
D'oh! shoulda thought of chroot.

Block-major-8 is the SCSI adapter. Is there linux support for the vmware scsi card you're using? There is a Buslogic.o module, but it would need to be inserted before the root FS is mounted, and now we get into the chicken/egg problem. I seem to recall that there's a way to make an IDE disk; this would probably be better, even if performance suffers some. I will try to compile you a new kernel with support for SCSI built in soon.
 
Ya there is support, because the knoppix boot CD has no problems seeing the drive, or I wouldent have gotten this far.

AHHHHHH I just looked at the VMware session setup and after the virtual machine is created you can not change the type (Scsi / ide) but when you initialy create it you can. Looks like I am going to go through the process again.. :)

I can say this. I blew a lot of rust out of the the old brain cells today. It's been a very very long time since I have worked in linux. I hope this wasent mostly a loss for you. I hope you got some usefull info out of all of this.

It's probably going to be a couple of more days before I go back at it though.
Have a happy holiday!

Ohh ya thanks for all the help as well.
 
Well, thanks for being an alpha tester. Well, now we know SCSI doesn't work very well...

I'll have a kernel up for you as soon as I figure out what to include in it.

Anyone else want to try? :D
 
if i had some machines to netboot i would fire up my old file server and use it, but i can't afford anymore computers right now :(
 
you could just set it up, and netboot some of your current machines (temporarily) to help us get the kinks worked out. then, if it works to your satisfaction, you could remove the harddrives from your machines, and use the savings on your power bill to buy more boxen (minus the hard drives, which you could sell)
 
Ok so I thought I woudl give it another try with the drive as an IDE.

I am getting this error when I run the commands in the install/files directory.. I double checked the sub.sed file and even recreated it. Every sed command gives this error, I just copyed the last one to show you the error.
--------------------------
root@ttyp1[files]# sed -f /tmp/sub.sed < lilo.conf > /mnt/system/etc/lilo.conf
sed: file /tmp/sub.sed line 4: unknown option to `s'
--------------------------

Here is the sub.sed
--------------------------
root@ttyp1[files]# more /tmp/sub.sed
s/@@IP@@/192.168.1.11/;
s/@@GW@@/192.168.1.1/;
s/@@DNS@@/24.247.24.53/;
s/@@DISK@@//dev/hda1/;
s/@@SWAP@@//dev/hda2/;
s/@@MBR@@//dev/hda/;
--------------------------

Yes I am a gluten for punishment! :)
 
You need to change the 4th thru 6th lines to:
s/@@DISK@@/\/dev\/hda1/;
s/@@SWAP@@/\/dev\/hda2/;
s/@@MBR@@/\/dev\/hda/;

so that the /es get recodnized as slashes and not part of the command. I probably should noticed that earlier. My bad.
 
It manageled the lilo.conf (Im gonna fix it..)

-----------------------------------
root@ttyp1[etc]# more lilo.conf
boot=/dev//dev/hda
vga=normal
prompt
timeout=50
append = "hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=sc
si apm=power-off nomce noapic"

image=/boot/linux24
label=dsl
root=/dev//dev/hda1
read-only
append = " toram"

--------------------------------
 
Dammit spoke to soon..

It looks like the lilo.conf is not the only think that get's the screwed up /dev//dev/hda

On boot I get a fsck.ext: no such file or directory while trying to open /dev//dev/hda1
 
moetop said:
Dammit spoke to soon..

It looks like the lilo.conf is not the only think that get's the screwed up /dev//dev/hda

On boot I get a fsck.ext: no such file or directory while trying to open /dev//dev/hda1

shouldn't it be /dev/sda1?
 
Nope I redid everything with a IDE drive this time, so that's why the hda..

At lease I get a prompt now..
 
One last post for the night.. I got rid of the /dev//dev BS it was stuck in the /etc/fstab file.. I am getting a few new errors on boot now.

Something about portmap and a proc directory. I'm to dam tired, to continue, so Ill pick it up in a day or so..
 
Tarnation. I wrote the instructions wrong with respect to the actual files. What you can do is redo this bit like this:

Name of the disk installed to? (e.g. hda, EXcluding the /dev/ part) "export MBR=<your disk>"
Name of root partition? (e.g. hda1) "export DISK=<your root>"
Name of swap partition? (e.g. hda2) "export SWAP=<your swap>"

and then re-run the sed script. Sorry I screwed up the instructions so much, and thanks for sticking in there. As soon as I finish the ISO, it should get a lot easier. I hope.


edit: if you're interested in a gmail invite, you're welcome to them. I have 8 and no way to use them up. PM me or email me.
 
A little technical note: Anyone looking to find a better-than-bzip2 compressor is in for a long wait, and should probably ignore the PPM compressors. My results on server.tar (138905600 bytes) are below for some of the various compressors I tried.

gzip:
bzip2: 57,970,412
paq6v2: 40,778,629 *
GRzip II: 52,924,509
bwtzip, 500k blocks: 60,726,724
rar, 4096K: 49,722,404

* Compression time: 5 hours **. Not a winner.

** Decompression time: 3 hours. Not a winner.

And the winner is: GRzip II. Not as many dependencies as rar, that's why. Fast compression.

So what does this mean for you? The last release was 69.1 MB. This one will be 52MB. And it has a Samba server built in.

:D :D :D
 
Back
Top