Quote (humpty @ May 25 2008,14:41) | ||
Seems to me like the only advantage for compression is for smaller files for distribution. The files have to reside somewhere eventually, and compression would only benefit the older devices with limited capacity, say a 10MB hard disk. The programs all load to ram at full space don't they? (perhaps I am wrong here). Hence stay with tar.gz for distribution and go for permanent self-contained installation. Also, is it possible for mydata.tgz so that the backup files can be manipulated in freedos (8+3) ? (infact, is fat16/32 still on the cards?) |
Quote |
i really think that madwifi is the solution for the eee pc. what do u mean? |
Quote (roberts @ May 25 2008,14:48) | ||||
I will adopt the 8.3 and call it mydata.tgz. I am mainly supporting the .tgz extension type. But my thoughts on the self contained are the following: 1. There is a difference from the usually static collection of files and directories that make up an extension and their run time memory consumption. With a tgz both the actual files and directories and the run time would consume memory. Fine for large memory system. Bad for small memory based systems. 2. Self contained applications, or application directories could be stored on persistent media in their native state as files and directories. Only then when invoked do their run time memory demands come into play. This should greatly reduce memory demands. They would need to be mounted to become part of the run time filesystem. 3. In regard to number 2 above, I was thinking of a highly compressed download and then store uncompressed and in a write enabled state. We could stay with using mountable iso9660 read-only images. But what would be the benefit? Perhaps the benefit is that the write enabled areas that we have already become familiar with are more easily included in the backup if links are created to a single simple location. Otherwise one would have to maintain a growing filetool.lst file. I am still open to ideas here. I plan to release an early alpha with only number 1 supported. |
Code Sample |
wget $dslpackageurl -O - | tar -xzvf - |
Quote |
What about onthefly loading? Instead of downloading, saving to /tmp, then loading it with mydsl, can some packages (tgz or dsl) just be piped from wget to tar? |