You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(20) |
Sep
(4) |
Oct
(29) |
Nov
(24) |
Dec
(9) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(9) |
Feb
(26) |
Mar
(10) |
Apr
(4) |
May
(5) |
Jun
(13) |
Jul
(53) |
Aug
(15) |
Sep
(42) |
Oct
(30) |
Nov
(92) |
Dec
(45) |
2002 |
Jan
(36) |
Feb
(63) |
Mar
(24) |
Apr
(21) |
May
(30) |
Jun
(59) |
Jul
(34) |
Aug
(17) |
Sep
(57) |
Oct
(104) |
Nov
(21) |
Dec
(16) |
2003 |
Jan
(31) |
Feb
(56) |
Mar
(40) |
Apr
(55) |
May
(45) |
Jun
(38) |
Jul
(48) |
Aug
(33) |
Sep
(13) |
Oct
(19) |
Nov
(7) |
Dec
(9) |
2004 |
Jan
(15) |
Feb
(20) |
Mar
(1) |
Apr
(1) |
May
(6) |
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(4) |
Oct
(2) |
Nov
|
Dec
(1) |
2005 |
Jan
(18) |
Feb
(3) |
Mar
(2) |
Apr
(2) |
May
|
Jun
(6) |
Jul
|
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(9) |
Feb
|
Mar
|
Apr
(16) |
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Riaan L. <ri...@ra...> - 2002-10-02 17:11:54
|
I will definitely look at it but the problem is that I doing the restore over a wan i.e. very low bandwidth. Riaan Labuschagne e-mail: ri...@ra... +27 83 4444148 +27 21 982 2223 +27 21 982 2225 (fax) Visit http://www.radioretail.co.za -----Original Message----- From: P60 [mailto:akd...@ka...] Sent: 02 October 2002 02:52 To: ri...@ra...; Trinux-Talk (E-mail) Subject: Re: [Trinux-talk] Q - Timothy Burt - Backup or clone hard drive > Timothy, > I refer to your "clone hard drive" howto you wrote. > > Is there a way that I can tar the contents of a backed up disc, copy it to > cd, untar it on a partition on the new hard drive and restore the disc, > whilts keeping the permissions etc? > > I AM NOT LOOKING for a howto, just some pointers please. > > Thanks > Riaan Labuschagne Another perhaps easier method could be to use nc, as known as, netcat to do such a job. It's in the netutils package. But it needs a working network connection. And perhaps the dd program, It' in the fileutils package. (There is also a netcat for NT) From the nc info: "Netcat can be used as a simple data transfer agent, and it doesn't really matter which end is the listener and which end is the client -- input at one side arrives at the other side as output. It is helpful to start the listener at the receiving side with no timeout specified, and then give the sending side a small timeout. That way the listener stays listening until you contact it, and after data stops flowing the client will time out, shut down, and take the listener with it. Unless the intervening network is fraught with problems, this should be completely reliable, and you can always increase the timeout. A typical example of something "rsh" is often used for: on one side, nc -l -p 1234 | uncompress -c | tar xvfp - and then on the other side tar cfp - /some/dir | compress -c | nc -w 3 othermachine 1234 will transfer the contents of a directory from one machine to another, without having to worry about .rhosts files, user accounts, or inetd configurations at either end. Again, it matters not which is the listener or receiver; the "tarring" machine could just as easily be running the listener instead. One could conceivably use a scheme like this for backups, by having cron-jobs fire up listeners and backup handlers [which can be restricted to specific addresses and ports between each other] and pipe "dump" or "tar" on one machine to "dd of=/dev/tapedrive" on another as usual. Since netcat returns a nonzero exit status for a denied listener connection, scripts to handle such tasks could easily log and reject connect attempts from third parties, and then retry. " Arne |
From: Riaan L. <ri...@ra...> - 2002-10-02 16:59:21
|
Could someone please tell me in which package "chroot" is. When I run chroot I get --> an applet error. Riaan Labuschagne e-mail: ri...@ra... +27 83 4444148 +27 21 982 2223 +27 21 982 2225 (fax) Visit http://www.radioretail.co.za -----Original Message----- From: Timothy Burt [mailto:tb...@ar...] Sent: 02 October 2002 06:20 To: Riaan Labuschagne Cc: Trinux-Talk (E-mail) Subject: Re: [Trinux-talk] Q - Timothy Burt - Backup or clone hard drive The CD creation process currently separates the "building of the iso filesystem" from the "burning of the cd". This is because the building of the iso usually impacts the burn, and the burn can fail due to the pipeline becoming empty, or because of cpu/disk load gets too high. So, you need to perform your backup to cd in two phases. The creation of the iso filesystem from the current disk (creating an image), and then burn the image to CD. You can burn the image to CD with any OS, including windows. The task is to create the image. Ideally, you want the image created from a quiet filesystem, not one that is the root of a running multi-user mode UNIX. I have accomplished this by running in single user mode, but this failed for some reason on some recent RH releases, so I now mount the filesystem to be backed up on the /mnt of a running OS. And I use Trinux as the running OS, on which to mount my filesystem. With the hard disk mounted on /mnt, the challange now becomes where to put the data that gets dumped into the image file. Ideally, this should be on a filesystem other than the filesystem that is being backed up. Although with some effort, you might be able to create your image and skip the image file itself. See below. In my previous description, this problem was solved by physically mounting the new disk onto the controller. Mount them both, and copy from one to the other. But in this scenario, we do not have a new disk to use, because we are building an ISO that we can later burn to a CD. Some options you may have available include: 1) attach a spare hard disk, and build your iso on it. 2) use an nfs mounted filesystem, but could be really slow. 3) use a modified buildiso command (find |grep -v isofilename.iso | mkisofs) that strips out the iso filename. Which choice may depend on your resources and the speed with which you need to accomplish the task... If the machine is an internet server, then you want this to happen fast, so I would suggest option 1 (or 3). A permanently mounted extra filesystem would be ideal. You may need to go single user, while the backup happens, but this could be for as little as a minute or two. Or up to 30 YMMV. If it is an internal office server that is totally quiet and unused at times of the day, then you could easily use option 2, as often as you like. Of Course.... Once you have a copy of your root filesystem imaged onto the CD, then it is a simple task to boot from Trinux, mount the hard disk, and mount the cd and do a find . -print | cpio -pmduv /mnt/harddisk.. Sometimes you need a quick lilo to make it boot. This is an excellent mechanism for preserving the state of a known good running machine. It can be done on a regular basis, and efficiently stored off site. It might also be accomplished nightly. I highly recommend it. FINAL HINT -- I haven't ever done what is described, so I don't have the exact commands, but it should work. Also, you might also consider burning an image to the CD that is NOT ISO, but a more Unix friendly FS. This may help preserve ownership and perms issues, if you encounter any. ISO, as a standard, does not preserve UNIX perms. (correct me if I am wrong, please) On Wed, 2 Oct 2002, Riaan Labuschagne wrote: > > Timothy, > I refer to your "clone hard drive" howto you wrote. > > Is there a way that I can tar the contents of a backed up disc, copy it to > cd, untar it on a partition on the new hard drive and restore the disc, > whilts keeping the permissions etc? > > I AM NOT LOOKING for a howto, just some pointers please. > > Thanks > Riaan Labuschagne > > P.S. Trinux is helping my business www.radioretail.co.za a hell of allot. I > am in the process of upgrading 430 WinNT machines to Debian without any > human intervention. (no keyboard , mouse or screens on the machines.) > > ri...@ra... > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Trinux-talk mailing list > Tri...@li... > https://lists.sourceforge.net/lists/listinfo/trinux-talk > -- -------------------- Timothy Burt General Manager Arbor Group LLC Los Angeles, Calif. USA |
From: Timothy B. <tb...@ar...> - 2002-10-02 16:30:08
|
Good idea. tar used to be terrible about maintaining permissions, perhaps it has been fixed. I use cpio because it has always done it right. nc -l -p 1234 | uncompress -c | cpio -i and find . -print | cpio -o | compress -c | nc -w 3 othermachine 1234 also, with sub 500 MHZ machines, it runs faster without the compression. ALSO, you cannot use this method to snapshot the root, while it is running. It might work, but it is not reliable. On Wed, 2 Oct 2002, P60 wrote: > > Timothy, > > I refer to your "clone hard drive" howto you wrote. > > > > Is there a way that I can tar the contents of a backed up disc, copy it to > > cd, untar it on a partition on the new hard drive and restore the disc, > > whilts keeping the permissions etc? > > > > I AM NOT LOOKING for a howto, just some pointers please. > > > > Thanks > > Riaan Labuschagne > > Another perhaps easier method could be to use nc, as known as, netcat to do > such a job. It's in the netutils package. But it needs a working network > connection. And perhaps the dd program, It' in the fileutils package. > (There is also a netcat for NT) > > >From the nc info: > > "Netcat can be used as a simple data transfer agent, and it doesn't really > matter which end is the listener and which end is the client -- input at one > side arrives at the other side as output. It is helpful to start the > listener > at the receiving side with no timeout specified, and then give the sending > side > a small timeout. That way the listener stays listening until you contact > it, > and after data stops flowing the client will time out, shut down, and take > the > listener with it. Unless the intervening network is fraught with problems, > this should be completely reliable, and you can always increase the timeout. > A > typical example of something "rsh" is often used for: on one side, > > nc -l -p 1234 | uncompress -c | tar xvfp - > > and then on the other side > > tar cfp - /some/dir | compress -c | nc -w 3 othermachine 1234 > > will transfer the contents of a directory from one machine to another, > without > having to worry about .rhosts files, user accounts, or inetd configurations > at either end. Again, it matters not which is the listener or receiver; the > "tarring" machine could just as easily be running the listener instead. One > could conceivably use a scheme like this for backups, by having cron-jobs > fire > up listeners and backup handlers [which can be restricted to specific > addresses > and ports between each other] and pipe "dump" or "tar" on one machine to "dd > of=/dev/tapedrive" on another as usual. Since netcat returns a nonzero exit > status for a denied listener connection, scripts to handle such tasks could > easily log and reject connect attempts from third parties, and then retry. > " > > Arne > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Trinux-talk mailing list > Tri...@li... > https://lists.sourceforge.net/lists/listinfo/trinux-talk > -- -------------------- Timothy Burt General Manager Arbor Group LLC Los Angeles, Calif. USA |
From: Timothy B. <tb...@ar...> - 2002-10-02 16:20:23
|
The CD creation process currently separates the "building of the iso filesystem" from the "burning of the cd". This is because the building of the iso usually impacts the burn, and the burn can fail due to the pipeline becoming empty, or because of cpu/disk load gets too high. So, you need to perform your backup to cd in two phases. The creation of the iso filesystem from the current disk (creating an image), and then burn the image to CD. You can burn the image to CD with any OS, including windows. The task is to create the image. Ideally, you want the image created from a quiet filesystem, not one that is the root of a running multi-user mode UNIX. I have accomplished this by running in single user mode, but this failed for some reason on some recent RH releases, so I now mount the filesystem to be backed up on the /mnt of a running OS. And I use Trinux as the running OS, on which to mount my filesystem. With the hard disk mounted on /mnt, the challange now becomes where to put the data that gets dumped into the image file. Ideally, this should be on a filesystem other than the filesystem that is being backed up. Although with some effort, you might be able to create your image and skip the image file itself. See below. In my previous description, this problem was solved by physically mounting the new disk onto the controller. Mount them both, and copy from one to the other. But in this scenario, we do not have a new disk to use, because we are building an ISO that we can later burn to a CD. Some options you may have available include: 1) attach a spare hard disk, and build your iso on it. 2) use an nfs mounted filesystem, but could be really slow. 3) use a modified buildiso command (find |grep -v isofilename.iso | mkisofs) that strips out the iso filename. Which choice may depend on your resources and the speed with which you need to accomplish the task... If the machine is an internet server, then you want this to happen fast, so I would suggest option 1 (or 3). A permanently mounted extra filesystem would be ideal. You may need to go single user, while the backup happens, but this could be for as little as a minute or two. Or up to 30 YMMV. If it is an internal office server that is totally quiet and unused at times of the day, then you could easily use option 2, as often as you like. Of Course.... Once you have a copy of your root filesystem imaged onto the CD, then it is a simple task to boot from Trinux, mount the hard disk, and mount the cd and do a find . -print | cpio -pmduv /mnt/harddisk.. Sometimes you need a quick lilo to make it boot. This is an excellent mechanism for preserving the state of a known good running machine. It can be done on a regular basis, and efficiently stored off site. It might also be accomplished nightly. I highly recommend it. FINAL HINT -- I haven't ever done what is described, so I don't have the exact commands, but it should work. Also, you might also consider burning an image to the CD that is NOT ISO, but a more Unix friendly FS. This may help preserve ownership and perms issues, if you encounter any. ISO, as a standard, does not preserve UNIX perms. (correct me if I am wrong, please) On Wed, 2 Oct 2002, Riaan Labuschagne wrote: > > Timothy, > I refer to your "clone hard drive" howto you wrote. > > Is there a way that I can tar the contents of a backed up disc, copy it to > cd, untar it on a partition on the new hard drive and restore the disc, > whilts keeping the permissions etc? > > I AM NOT LOOKING for a howto, just some pointers please. > > Thanks > Riaan Labuschagne > > P.S. Trinux is helping my business www.radioretail.co.za a hell of allot. I > am in the process of upgrading 430 WinNT machines to Debian without any > human intervention. (no keyboard , mouse or screens on the machines.) > > ri...@ra... > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Trinux-talk mailing list > Tri...@li... > https://lists.sourceforge.net/lists/listinfo/trinux-talk > -- -------------------- Timothy Burt General Manager Arbor Group LLC Los Angeles, Calif. USA |
From: P60 <akd...@ka...> - 2002-10-02 12:50:37
|
> Timothy, > I refer to your "clone hard drive" howto you wrote. > > Is there a way that I can tar the contents of a backed up disc, copy it to > cd, untar it on a partition on the new hard drive and restore the disc, > whilts keeping the permissions etc? > > I AM NOT LOOKING for a howto, just some pointers please. > > Thanks > Riaan Labuschagne Another perhaps easier method could be to use nc, as known as, netcat to do such a job. It's in the netutils package. But it needs a working network connection. And perhaps the dd program, It' in the fileutils package. (There is also a netcat for NT) From the nc info: "Netcat can be used as a simple data transfer agent, and it doesn't really matter which end is the listener and which end is the client -- input at one side arrives at the other side as output. It is helpful to start the listener at the receiving side with no timeout specified, and then give the sending side a small timeout. That way the listener stays listening until you contact it, and after data stops flowing the client will time out, shut down, and take the listener with it. Unless the intervening network is fraught with problems, this should be completely reliable, and you can always increase the timeout. A typical example of something "rsh" is often used for: on one side, nc -l -p 1234 | uncompress -c | tar xvfp - and then on the other side tar cfp - /some/dir | compress -c | nc -w 3 othermachine 1234 will transfer the contents of a directory from one machine to another, without having to worry about .rhosts files, user accounts, or inetd configurations at either end. Again, it matters not which is the listener or receiver; the "tarring" machine could just as easily be running the listener instead. One could conceivably use a scheme like this for backups, by having cron-jobs fire up listeners and backup handlers [which can be restricted to specific addresses and ports between each other] and pipe "dump" or "tar" on one machine to "dd of=/dev/tapedrive" on another as usual. Since netcat returns a nonzero exit status for a denied listener connection, scripts to handle such tasks could easily log and reject connect attempts from third parties, and then retry. " Arne |
From: Riaan L. <ri...@ra...> - 2002-10-02 06:43:47
|
Timothy, I refer to your "clone hard drive" howto you wrote. Is there a way that I can tar the contents of a backed up disc, copy it to cd, untar it on a partition on the new hard drive and restore the disc, whilts keeping the permissions etc? I AM NOT LOOKING for a howto, just some pointers please. Thanks Riaan Labuschagne P.S. Trinux is helping my business www.radioretail.co.za a hell of allot. I am in the process of upgrading 430 WinNT machines to Debian without any human intervention. (no keyboard , mouse or screens on the machines.) ri...@ra... |
From: <ad...@go...> - 2002-10-02 02:48:52
|
From: <ad...@go...> - 2002-10-02 02:48:44
|
From: Timothy B. <tb...@ar...> - 2002-10-01 23:13:17
|
Does anyone have the iso's for the new Redhat 8.0 release? The download is really slow (about 3 to 5 days) and I need them sooner than that. Sorry for the off topic post.... When I get them I will post them on my server for download, for anyone who asks. Thanks in advance.. -- -------------------- Timothy Burt General Manager Arbor Group LLC Los Angeles, Calif. USA |
From: Ben S. <bas...@ya...> - 2002-10-01 14:42:48
|
Can you post the bzimage and kernel config for the pcmcia floppy boot image. I can find all the others on the kernel pages except for the pcmcia one. thanks __________________________________________________ Do you Yahoo!? New DSL Internet Access from SBC & Yahoo! http://sbc.yahoo.com |
From: Ben S. <bas...@ya...> - 2002-10-01 14:41:25
|
__________________________________________________ Do you Yahoo!? New DSL Internet Access from SBC & Yahoo! http://sbc.yahoo.com |
From: Joshua Santos<js...@se...> - 2002-10-01 09:57:42
|
To Whom It May Concern: My name is Joshua Santos; I am a Project Manager at Selectosa Systems, a Silicon Valley based IT outsourcing and staffing firm. I found your email address on your Web site and would greatly appreciate the opportunity to discuss a possible partnership. We offer a wide range of services to software companies at some of the lowest rates in the industry ($12.95/hour). Our portfolio of services includes application development, Web development, IT staffing, offshore housing, outsourced QA, and server administration. The labor is outsourced to our secure development centers in Russia featuring world-class developers, which operate under direct supervision of our US office. Low overseas labor rates and our commitment to cost leadership enable us to deliver some of the most competitive prices on the market. By concentrating your efforts on developing and marketing your mainstream products, while outsourcing side projects, QA testing, and IT staffing needs to us, you can substantially increase the efficiency of your IT department and minimize labor costs. I believe that this will help you stay more competitive in this tough period for the US economy. If you are interested in outsourcing some projects to us or taking advantage of our other services, I would very much appreciate to hear from you. Please contact meat (650) 947-9671 or js...@se.... For additional information you can also visit us on the Web at www.selectosa.com. Thank you so much for your time. Warmest Regards, Joshua Santos Selectosa Systems www.selectosa.com (650) 947-9671 js...@se... |
From: Steve W. <St...@ty...> - 2002-09-30 14:58:53
|
Ok, Well I installed the Trinux on a cd, and made it bootable. (Please keep = in mind Im am a beginner in Linux) and I want to add some packages to = the start up. So I added to floowing name to the list in = /tux/config/pkglist "snort", and when it boots off of the cd, it says = package not found, and it doesnt even load some of the ones that were = already in there. Please let me know how I can get more programs to extract during = startup. Thanks Steve |
From: Riaan L. <ri...@ra...> - 2002-09-30 12:23:05
|
I keep on getting the same error as shown below ( ----------> ). I followed the "Remotely administrating Trinux" page but keep on getting the same crap. login as: root Sent username "root" Trying public key authentication. No passphrase required. ----------------------------> Server refused our public key. root@172.30.166.214's password: Ebven tried the key generation through : PuttyGen , MindTerm , ssh-keygen on Debian. No damn luck. Has anyone had similar problems?? P.S. I am using the IDE boot image. Regards Riaan Labuschagne ri...@ra... |
From: Matthew F. <mf...@ci...> - 2002-09-30 01:23:27
|
Cool. I was going to suggest that, but you beat me to it :) So you had to add video for linux and a USB driver? Just curious, what hardware are you using? It's been ages since I messed with that stuff. = mdf > OK I'm an idiot. Instead of trying to figure out what was going wrong with > the genksyms I just built a Trinux boot image with my own kernel and now > everything is working great. > > I have my single floppy booting web cam working. > > > On Sunday 29 September 2002 10:04 am, cservin wrote: > > I am still trying to track down the unresolved symbol problems I am having > > when trying to compile my own modules. > > > > It looks like the genksyms generated different hash values for me than for > > whoever built the 2.4.19 used. I was wondering how this might happen and > > just thought I would ask whoever made that floppy image if they had applied > > any patches to the kernel. |
From: Craig S. <cs...@cr...> - 2002-09-30 00:58:27
|
OK I'm an idiot. Instead of trying to figure out what was going wrong with the genksyms I just built a Trinux boot image with my own kernel and now everything is working great. I have my single floppy booting web cam working. On Sunday 29 September 2002 10:04 am, cservin wrote: > I am still trying to track down the unresolved symbol problems I am having > when trying to compile my own modules. > > It looks like the genksyms generated different hash values for me than for > whoever built the 2.4.19 used. I was wondering how this might happen and > just thought I would ask whoever made that floppy image if they had applied > any patches to the kernel. |
From: Matthew F. <mf...@ci...> - 2002-09-29 18:00:54
|
There aren't any tools for splitting up/compressing raw paritions hard drive into an ISO, but typically the way it would be used would be to dd the device/partition across the network using either netcat or a remote fileystem (NFS/SMB). Not sure if that helps? - mdf > > I see in the FAQ the section on cloning ones hard drive is empty. Is there > any program I can use to restore an ISO image to a local hard drive through > Trinux? > |
From: Timothy B. <tb...@ar...> - 2002-09-29 17:47:50
|
I wrote a long HOWTO about a year ago.... Check the archives for "clone" or my email "tburt"... On Sun, 29 Sep 2002, Riaan Labuschagne wrote: > Good Morning, > > I see in the FAQ the section on cloning ones hard drive is empty. Is there > any program I can use to restore an ISO image to a local hard drive through > Trinux? > > Kind Regards > Riaan Labuschagne > ri...@ra... > South Africa > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Trinux-talk mailing list > Tri...@li... > https://lists.sourceforge.net/lists/listinfo/trinux-talk > -- -------------------- Timothy Burt General Manager Arbor Group LLC Los Angeles, Calif. USA |
From: Riaan L. <ri...@ra...> - 2002-09-29 17:33:59
|
Good Morning, I see in the FAQ the section on cloning ones hard drive is empty. Is there any program I can use to restore an ISO image to a local hard drive through Trinux? Kind Regards Riaan Labuschagne ri...@ra... South Africa |
From: Craig S. <cs...@cr...> - 2002-09-29 15:04:33
|
I am still trying to track down the unresolved symbol problems I am having when trying to compile my own modules. It looks like the genksyms generated different hash values for me than for whoever built the 2.4.19 used. I was wondering how this might happen and just thought I would ask whoever made that floppy image if they had applied any patches to the kernel. |
From: <Eug...@in...> - 2002-09-28 08:25:09
|
DQoNCvMg1dfB1sXOycXNLA0K5dfHxc7JyiDtxdLF1svPDQrJztbFzsXSLcvPztPVzNjUwc7U DQrpzsvPzSAtIOjB0tjLz9cNCioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioNCuvP0tDP0sHDydEg6c7Lz80NCtXMLiDzxdLQz9fB0SwgNCwg6MHS2MvP 1yA2MTE2Niwg9cvSwcnOwQ0K1MXMLjogKDA1NzIpIDQ1OC0yMjAsIDE3NS05MzUNCvTFzC4v xsHL0zogKDA1NzIpIDE3NS00MzUNCmVtYWlsOiBFdWdlbmUuTWVyZXpoa29AaW5jb20uY29t LnVhDQogICAgICAgICAgIGh0dHA6Ly93d3cuaW5jb20uY29tLnVhDQoqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqDQoNCg0KDQo= |
From: Matthew F. <mf...@ci...> - 2002-09-26 13:54:21
|
I used ISOLINUX which boots directly off of ISO and doesn't require floppy image. See trinux-talk posts earlier this month for discussion about this. - mdf > Can you tell me how or what software you used to make > the trinux boot cd iso. I wanted to add some files to > the iso and I was curious how you created a bootable > image larger than a standard floppy disk. > > Thanks > > |
From: Blow O. P. <re...@in...> - 2002-09-26 08:40:16
|
At BlowOut PC we have our new line of computers and half the prices at regular retailers, we are offering a great deal on the New Vision Ofice PC check out the specs http://www.instylecorp.com/blowoutpc Introducing Vision's ALL NEW P4 - 2.80GHz Office PC w/Windows 2000 Pro. Designed for the Ultra serious business user, VisionMan has created the ultimate PC for the working Professional! Built with Intel's Pentium 4 - 2.80GHz CPU, ASUS P4S533-VM PRO Motherboard, 1GB (1024MB) PC2100 DDR266 Memory, 120GB 7200 RPM ATA100 Hard Drive, 40X CDRW & 16X DVD Drives, USR 56K Modem, Corel Office Suite 2002, Norton AV 2002, and topped off with Microsoft's WINDOWS 2000 PRO you're ready to SCREAM through any business application at record speed! TigerDirect saves you a bundle on these FINE-TUNED High-End P4 Desktops from VisionMan!!! Designed around the needs of the working professional, VisionMan has included all the essentials. All components are name brand and top-of-the-line. Don't settle for a generic high priced desktop from our competitors. Go with the very BEST! The VP4-280PRO from VisionMan. We guarantee you'll love it!!! While supplies last. For nearly a decade, VisionMan has been bringing you high quality desktop & server PC's with the features you demand, including Intel Pentium 4 processors, expandable Tower chassis, ultra fast ATA100 hard drives, screaming fast 128-Bit video, 10/100BT Network connectivity, and topped off with Microsoft's Windows 2000 PRO operating system. Express personalized service & support have made VisionMan a leader in the Desktop PC industry. Each Vision System comes to you FACTORY NEW with a full one-year parts/labor warranty and is hand crafted with the finest name brand components you've come to rely on; ASUS, Intel, IBM, Logitech, and Microsoft to name a few. And Vision doesn't stop there! Their rigid burn-in test assures that your hardware is fully operational / compatible and comes fully loaded with Windows 2000 PRO. Specifications: Intel® Pentium® 2.80GHz Processor 1GB PC2100 DDR266 Memory 120GB 7200RPM ATA100 Hard Drive 40x12x40 CD-RW 16X DVD-ROM Drive 3.5" 1.44MB Floppy Drive Onboard 128-Bit 2D/3D Accelerator Video Onboard 10/100B-TX Ethernet USR 56K PCI v.90 Modem Onboard AC 97 3D Audio with S/PDIF-out Interface Cyber Acoustics 3-Pc Speakers with Subwoofer PS/2 Optical Mouse Microsoft Internet Keyboard Microsoft® Windows® 2000 Professional 1 Year Limited Manufacturer Warranty Additional Specifications: Video: - Memory: 64MB Shared DDR266 SDRAM - Maximum Memory: 64MB Sound: - 3D Stereo, 16-bit Sound Controller - AC '97 Codec External Ports: - USB = 4 - Serial = 1 - Parallel = 1 - Line In = 1 - Line Out = 1 - Microphone - Game/MIDI Manufactured by: Vision Computers Manufacturer Part No: VP4-280PRO ONLY $999.99 www.instylecorp.com/blowoutpc |
From: Ben S. <bas...@ya...> - 2002-09-25 19:52:21
|
Can you tell me how or what software you used to make the trinux boot cd iso. I wanted to add some files to the iso and I was curious how you created a bootable image larger than a standard floppy disk. Thanks __________________________________________________ Do you Yahoo!? New DSL Internet Access from SBC & Yahoo! http://sbc.yahoo.com |
From: Tecinnovations <lph...@te...> - 2002-09-24 01:43:43
|
Tecinnovations is providing new types of wireless remote control systems designed for the wireless operation of ac and dc hydraulic power units, hydraulic winches, dump trailers, dump trucks, lift gates, boat lifts, electric winches, and more. The wireless remote uses a small key chain transmitter to operate a hydraulic power unit from over 200 ft. These systems will work on most Monarch Hydraulics, Fenner Stone, Delta Power power units etc... Please visit our web site for contact info @: www.tecinnovations.com Thank you, Jerry Phillips To be removed from our mailing list, please type REMOVE in the subject header and send back to us. |