You can subscribe to this list here.
2010 |
Jan
|
Feb
(8) |
Mar
|
Apr
(11) |
May
(12) |
Jun
(13) |
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
|
Feb
(2) |
Mar
|
Apr
(7) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-15 02:13:41
|
I looked into the alpha and corrected the random function. I also tweaked one trouble module: network-off to use regex matching in the distro checks instead of manually checking each. It'll be easier to maintain this way. It's worth noting that we've run into a handful of little "nice to have"s that should be on the list for future engine enhancements. They're not worth focusing on right now, as we need to boost the modules available. For posterity's sake, we have: * Add logic to detect the OS version, and be overridden with the --version flag. Shouldn't be that hard. * Add the concept of distro families and ranges, so we can specify things like RHEL_4-6, instead of listing each one individually. RHEL_* is a good workaround for now, but it doesn't work for package changes. * Make error processing of failed dependencies of specified modules more obvious to the user. It works with debug mode, but can be a bit confusing if that mode isn't on. -Josh On Mon, Jun 7, 2010 at 5:25 AM, Developers list for trouble-maker < tro...@li...> wrote: > I have done my testing of all of the kits on RHEL5 and have them all > working. I also updated the configs and some of the scripts to fully > support the other RHEL and Fedora releases. I've also added a doc directory > with a ChangeLog, COPYING (GPL V2 license) and README file. I've updated > all of the ./bin files to have usage information too if they didn't already > have it and updated all of the versions listed to 0.07alpha. > > My tarred up version is here: > http://millardfam.com/trouble-maker/trouble-maker-0.07alpha_millard.tgz > > Please take a look and let me know what you think. > > One thing that I have notice is that the random function doesn't seem to be > working. > > [root@rhel55 bin]# /usr/local/trouble-maker/bin/trouble-maker.pl--version=RHEL_5 > > Trouble-maker version 0.07alpha > Copyright (C) 2004 by Josh More > Trouble-maker comes with ABSOLUTELY NO WARRANTY > This is free software, and you are welcome to redistribute it under certain > conditions. > For details, see the file 'COPYING' included with this distribution. > > This program is intended for training purposes only, and will cause system > problems. > To proceed, type 'yes'. > (To bypass this step, change the value of the $bypass variable to '1') > > yes > > > Selection 'random.tar' not supported. Please use either 'random' or a > valid filename for the --selection switch. > > Same thing happens if I use --selection=random > > Matt > > On Sat, Jun 5, 2010 at 7:06 PM, Matt Millard <mil...@gm...>wrote: > >> Great news! I'm running through all of the existing selections to verify >> that they work on RHEL5. I'll fix any that I can if they don't work and see >> if I can come up with a few new ones too. Thanks Josh! >> >> Matt >> >> > > -- > Matt Millard > > http://flavors.me/mattmillard > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-15 02:09:03
|
Yes, we are meeting before the CIALUG meeting this week. I think we'll probably be breaking stuff. :) Yes, I am looking at the modified trouble-maker. I found the problem with random (I broke it when testing the operator issue). I'm looking at your other changes now. Until we get a new alpha rolled, here's the fix for random: ----- On line 134 of the engine, change: if (! -e "$kitbag/$selection_mode") { to if ((! -e "$kitbag/$selection_mode") && ($selection_mode ne "random")) { ----- -Josh On Mon, Jun 14, 2010 at 5:58 PM, Developers list for trouble-maker < tro...@li...> wrote: > Just curious if we are still planning on meeting before the CIALUG meeting > again this week? Also wondering if anyone has tried out my modified version > of trouble-maker yet? > > Matt > > -- > Matt Millard > > http://flavors.me/mattmillard > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-14 22:59:02
|
Just curious if we are still planning on meeting before the CIALUG meeting again this week? Also wondering if anyone has tried out my modified version of trouble-maker yet? Matt -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-07 10:25:20
|
I have done my testing of all of the kits on RHEL5 and have them all working. I also updated the configs and some of the scripts to fully support the other RHEL and Fedora releases. I've also added a doc directory with a ChangeLog, COPYING (GPL V2 license) and README file. I've updated all of the ./bin files to have usage information too if they didn't already have it and updated all of the versions listed to 0.07alpha. My tarred up version is here: http://millardfam.com/trouble-maker/trouble-maker-0.07alpha_millard.tgz Please take a look and let me know what you think. One thing that I have notice is that the random function doesn't seem to be working. [root@rhel55 bin]# /usr/local/trouble-maker/bin/trouble-maker.pl--version=RHEL_5 Trouble-maker version 0.07alpha Copyright (C) 2004 by Josh More Trouble-maker comes with ABSOLUTELY NO WARRANTY This is free software, and you are welcome to redistribute it under certain conditions. For details, see the file 'COPYING' included with this distribution. This program is intended for training purposes only, and will cause system problems. To proceed, type 'yes'. (To bypass this step, change the value of the $bypass variable to '1') > yes Selection 'random.tar' not supported. Please use either 'random' or a valid filename for the --selection switch. Same thing happens if I use --selection=random Matt On Sat, Jun 5, 2010 at 7:06 PM, Matt Millard <mil...@gm...> wrote: > Great news! I'm running through all of the existing selections to verify > that they work on RHEL5. I'll fix any that I can if they don't work and see > if I can come up with a few new ones too. Thanks Josh! > > Matt > > -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-06 00:06:36
|
Great news! I'm running through all of the existing selections to verify that they work on RHEL5. I'll fix any that I can if they don't work and see if I can come up with a few new ones too. Thanks Josh! Matt On Sat, Jun 5, 2010 at 4:53 PM, Developers list for trouble-maker < tro...@li...> wrote: > Sorry, some unexpected travel got in my way here. > > The new version of the engine is packaged up and available at > http://www.starmind.org/temp/trouble-maker-0.07.tgz > > You were right. I found four more instances of operator precedence > conflict. I'm going to look for others tonight as well. > > In case anyone else on this list cares, the way that phrases like this "Do > A or do B if C" got changed between perl 5.8 and 5.10. In 5.8, it would do > A and then, if C were defined, it would do B. In 5.10, it will only do A is > C is defined, which is why certain things were only working if debug was > on. Most aggravating. > > The fix is for me to change the logic to read: > > Try A, store value in A1. > If A1 is not happy, and C is defined, do B. > > It's a bit more logically clear, if a consisting of a bit less perl magic. > > -Josh > > > > On Sat, Jun 5, 2010 at 12:27 AM, Developers list for trouble-maker < > tro...@li...> wrote: > >> Any thoughts on this issue? >> >> I have signed up to host a CampGround session on Wednesday afternoon (June >> 23rd) of the Red Hat Summit to show off what we have working. >> >> >> On Sun, May 23, 2010 at 10:45 AM, Matt Millard <mil...@gm...>wrote: >> >>> I've been testing the beta on RHEL5 and when I run it with the following >>> options the engine doesn't backup any files or copy the script to the rescue >>> directory. It does make the changes to the system though. >>> >>> /usr/local/trouble-maker/bin/trouble-maker.pl --version=RHEL_5 >>> --selection=apache-hostname_collision >>> >>> However if I modify the trouble-maker.pl script and turn on all of the >>> debugging everything works just fine. It backs up all the /etc/hosts and >>> /etc/sysconfig/network files and copies the script to the >>> "/tmp/trouble-script/rescue/TROUBLE-SCRIPT". I would guess that we've got >>> another bug in there somewhere that DEBUG routes around. >>> >>> I haven't tested with other trouble-scripts, but thought I'd get this bug >>> report out there over the weekend. >>> >>> Matt >>> >>> -- >>> Matt Millard >>> >>> http://flavors.me/mattmillard >>> >> >> >> >> -- >> Matt Millard >> >> http://flavors.me/mattmillard >> >> >> ------------------------------------------------------------------------------ >> ThinkGeek and WIRED's GeekDad team up for the Ultimate >> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the >> lucky parental unit. See the prize list and enter to win: >> http://p.sf.net/sfu/thinkgeek-promo >> _______________________________________________ >> Trouble-maker-developers mailing list >> Tro...@li... >> https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers >> >> > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-05 22:18:18
|
Sorry, some unexpected travel got in my way here. The new version of the engine is packaged up and available at http://www.starmind.org/temp/trouble-maker-0.07.tgz You were right. I found four more instances of operator precedence conflict. I'm going to look for others tonight as well. In case anyone else on this list cares, the way that phrases like this "Do A or do B if C" got changed between perl 5.8 and 5.10. In 5.8, it would do A and then, if C were defined, it would do B. In 5.10, it will only do A is C is defined, which is why certain things were only working if debug was on. Most aggravating. The fix is for me to change the logic to read: Try A, store value in A1. If A1 is not happy, and C is defined, do B. It's a bit more logically clear, if a consisting of a bit less perl magic. -Josh On Sat, Jun 5, 2010 at 12:27 AM, Developers list for trouble-maker < tro...@li...> wrote: > Any thoughts on this issue? > > I have signed up to host a CampGround session on Wednesday afternoon (June > 23rd) of the Red Hat Summit to show off what we have working. > > > On Sun, May 23, 2010 at 10:45 AM, Matt Millard <mil...@gm...>wrote: > >> I've been testing the beta on RHEL5 and when I run it with the following >> options the engine doesn't backup any files or copy the script to the rescue >> directory. It does make the changes to the system though. >> >> /usr/local/trouble-maker/bin/trouble-maker.pl --version=RHEL_5 >> --selection=apache-hostname_collision >> >> However if I modify the trouble-maker.pl script and turn on all of the >> debugging everything works just fine. It backs up all the /etc/hosts and >> /etc/sysconfig/network files and copies the script to the >> "/tmp/trouble-script/rescue/TROUBLE-SCRIPT". I would guess that we've got >> another bug in there somewhere that DEBUG routes around. >> >> I haven't tested with other trouble-scripts, but thought I'd get this bug >> report out there over the weekend. >> >> Matt >> >> -- >> Matt Millard >> >> http://flavors.me/mattmillard >> > > > > -- > Matt Millard > > http://flavors.me/mattmillard > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-06-05 05:27:41
|
Any thoughts on this issue? I have signed up to host a CampGround session on Wednesday afternoon (June 23rd) of the Red Hat Summit to show off what we have working. On Sun, May 23, 2010 at 10:45 AM, Matt Millard <mil...@gm...>wrote: > I've been testing the beta on RHEL5 and when I run it with the following > options the engine doesn't backup any files or copy the script to the rescue > directory. It does make the changes to the system though. > > /usr/local/trouble-maker/bin/trouble-maker.pl --version=RHEL_5 > --selection=apache-hostname_collision > > However if I modify the trouble-maker.pl script and turn on all of the > debugging everything works just fine. It backs up all the /etc/hosts and > /etc/sysconfig/network files and copies the script to the > "/tmp/trouble-script/rescue/TROUBLE-SCRIPT". I would guess that we've got > another bug in there somewhere that DEBUG routes around. > > I haven't tested with other trouble-scripts, but thought I'd get this bug > report out there over the weekend. > > Matt > > -- > Matt Millard > > http://flavors.me/mattmillard > -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-23 15:46:01
|
I've been testing the beta on RHEL5 and when I run it with the following options the engine doesn't backup any files or copy the script to the rescue directory. It does make the changes to the system though. /usr/local/trouble-maker/bin/trouble-maker.pl --version=RHEL_5 --selection=apache-hostname_collision However if I modify the trouble-maker.pl script and turn on all of the debugging everything works just fine. It backs up all the /etc/hosts and /etc/sysconfig/network files and copies the script to the "/tmp/trouble-script/rescue/TROUBLE-SCRIPT". I would guess that we've got another bug in there somewhere that DEBUG routes around. I haven't tested with other trouble-scripts, but thought I'd get this bug report out there over the weekend. Matt -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-21 19:40:38
|
I have fixed the bugs, updated the engine to support the distros: RHEL_4, RHEL_5, RHEL_6 and Fedora_13. I have also updated the trouble scripts so that they will honor these tags... but note that some of them do not work yet on these new distros. The pre-release version is here: http://www.starmind.org/temp/trouble-maker-0.06.tgz Please download it and play. -Josh On Wed, May 19, 2010 at 7:45 PM, Josh More <jm...@st...> wrote: > Just to let any other developers know, I have found a couple of bugs in the > engine and corrected them today. > > I will be testing them this weekend and hopefully releasing the updated > version to all of you soon. > > -Josh > > On Wed, May 19, 2010 at 11:14 AM, Developers list for trouble-maker < > tro...@li...> wrote: > >> On Tue, May 11, 2010 at 6:06 PM, Developers list for trouble-maker < >> tro...@li...> wrote: >> > It took me a while, but I finally got Fedora 13 and RHEL6 downloaded, >> > installed, and VMware tools running. >> > >> > And after all that... I can't duplicate your problem. :) >> > >> > Can you send me your modified code, so I can try that? >> > >> > Thanks, >> > >> > -Josh >> >> If I use a fresh install of trouble-maker 0.03 on either RHEL5/RHEL6 or >> Fedora13 I'm not getting the YAML error (until I try to add a new OS as >> supported) I still can't get it to back up any files or make any >> modifications to the system as far as I can tell and get this error: >> >> [root@rhel55 bin]# ./trouble-maker.pl --version=RHEL_3 >> >> >> Trouble-maker version 0.03 >> Copyright (C) 2004 by Josh More >> Trouble-maker comes with ABSOLUTELY NO WARRANTY >> This is free software, and you are welcome to redistribute it under >> certain conditions. >> For details, see the file 'COPYING' included with this distribution. >> >> This program is intended for training purposes only, and will cause system >> problems. >> To proceed, type 'yes'. >> (To bypass this step, change the value of the $bypass variable to '1') >> > yes >> * >> print() on unopened filehandle O at ./trouble-maker.pl line 329.* >> PROBLEM: >> Networking is not working >> >> [root@rhel55 bin]# cd /tmp/trouble-maker/backup >> [root@rhel55 backup]# ls -l >> total 8 >> -rw-r--r-- 1 root root 60 May 19 11:02 BACKUP >> [root@rhel55 backup]# cat BACKUP >> Files that could not be backed up: >> >> ---------------------- >> >> [root@rhel55 backup]# cat ../rescue/DETAILS >> networking is turned off in /etc/sysconfig/network. To fix it, edit the >> file and turn it on again. >> [root@rhel55 backup]# ls -l /etc/sysconfig/network >> -rw-r--r-- 1 root root 65 *May 17 03:46 */etc/sysconfig/network >> [root@rhel55 backup]# date >> Wed *May 19 11:11:37* CDT 2010 >> >> I'm sure we can discuss more tonight, but I really do want to get this >> running properly. >> >> Matt >> >> >> -- >> Matt Millard >> >> http://flavors.me/mattmillard >> >> >> >> ------------------------------------------------------------------------------ >> >> >> _______________________________________________ >> Trouble-maker-developers mailing list >> Tro...@li... >> https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers >> >> > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-20 00:45:40
|
Just to let any other developers know, I have found a couple of bugs in the engine and corrected them today. I will be testing them this weekend and hopefully releasing the updated version to all of you soon. -Josh On Wed, May 19, 2010 at 11:14 AM, Developers list for trouble-maker < tro...@li...> wrote: > On Tue, May 11, 2010 at 6:06 PM, Developers list for trouble-maker < > tro...@li...> wrote: > > It took me a while, but I finally got Fedora 13 and RHEL6 downloaded, > > installed, and VMware tools running. > > > > And after all that... I can't duplicate your problem. :) > > > > Can you send me your modified code, so I can try that? > > > > Thanks, > > > > -Josh > > If I use a fresh install of trouble-maker 0.03 on either RHEL5/RHEL6 or > Fedora13 I'm not getting the YAML error (until I try to add a new OS as > supported) I still can't get it to back up any files or make any > modifications to the system as far as I can tell and get this error: > > [root@rhel55 bin]# ./trouble-maker.pl --version=RHEL_3 > > > Trouble-maker version 0.03 > Copyright (C) 2004 by Josh More > Trouble-maker comes with ABSOLUTELY NO WARRANTY > This is free software, and you are welcome to redistribute it under certain > conditions. > For details, see the file 'COPYING' included with this distribution. > > This program is intended for training purposes only, and will cause system > problems. > To proceed, type 'yes'. > (To bypass this step, change the value of the $bypass variable to '1') > > yes > * > print() on unopened filehandle O at ./trouble-maker.pl line 329.* > PROBLEM: > Networking is not working > > [root@rhel55 bin]# cd /tmp/trouble-maker/backup > [root@rhel55 backup]# ls -l > total 8 > -rw-r--r-- 1 root root 60 May 19 11:02 BACKUP > [root@rhel55 backup]# cat BACKUP > Files that could not be backed up: > > ---------------------- > > [root@rhel55 backup]# cat ../rescue/DETAILS > networking is turned off in /etc/sysconfig/network. To fix it, edit the > file and turn it on again. > [root@rhel55 backup]# ls -l /etc/sysconfig/network > -rw-r--r-- 1 root root 65 *May 17 03:46 */etc/sysconfig/network > [root@rhel55 backup]# date > Wed *May 19 11:11:37* CDT 2010 > > I'm sure we can discuss more tonight, but I really do want to get this > running properly. > > Matt > > > -- > Matt Millard > > http://flavors.me/mattmillard > > > > ------------------------------------------------------------------------------ > > > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-19 16:46:57
|
I was going to update the website once we have a version that works on RHEL5. I agree that it needs to be changed/overhauled. I just don't want that work to detract from the primary goal. -Josh On Wed, May 19, 2010 at 11:39 AM, Developers list for trouble-maker < tro...@li...> wrote: > Any thoughts on updating the website to reflect current development and > remove some of the outdated info? I'd be willing to help out with that if > you are looking for volunteers too. I've already got an account on SF if > that helps too. > > Matt > > http://trouble-maker.sourceforge.net > > -- > Matt Millard > > http://flavors.me/mattmillard > > > ------------------------------------------------------------------------------ > > > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-19 16:39:57
|
Any thoughts on updating the website to reflect current development and remove some of the outdated info? I'd be willing to help out with that if you are looking for volunteers too. I've already got an account on SF if that helps too. Matt http://trouble-maker.sourceforge.net -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-19 16:33:35
|
At present, here are the sizes of things I'd be willing to change the root password and clone copies: 6.0G BackTrack4-Final-base 1.4G CentOS 64-bit base 4.6G Fedora 13beta 64-bit 2.0G OpenSUSE 11.2 64-bit base 2.7G RHEL 6beta 64-bit -Josh On Tue, May 18, 2010 at 12:14 PM, Developers list for trouble-maker < tro...@li...> wrote: > On Tue, May 18, 2010 at 9:47 AM, Developers list for trouble-maker > <tro...@li...> wrote: > > If anyone wants VMs of CentOS 5, RHEL 6 beta, Fedora 13 beta or the like, > I > > have some on my laptop. Bring a portable drive, and I'll copy them over > to > > you. > > How big are these images? Approximately. > > -- > Todd > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-19 16:15:40
|
On Tue, May 11, 2010 at 6:06 PM, Developers list for trouble-maker < tro...@li...> wrote: > It took me a while, but I finally got Fedora 13 and RHEL6 downloaded, > installed, and VMware tools running. > > And after all that... I can't duplicate your problem. :) > > Can you send me your modified code, so I can try that? > > Thanks, > > -Josh If I use a fresh install of trouble-maker 0.03 on either RHEL5/RHEL6 or Fedora13 I'm not getting the YAML error (until I try to add a new OS as supported) I still can't get it to back up any files or make any modifications to the system as far as I can tell and get this error: [root@rhel55 bin]# ./trouble-maker.pl --version=RHEL_3 Trouble-maker version 0.03 Copyright (C) 2004 by Josh More Trouble-maker comes with ABSOLUTELY NO WARRANTY This is free software, and you are welcome to redistribute it under certain conditions. For details, see the file 'COPYING' included with this distribution. This program is intended for training purposes only, and will cause system problems. To proceed, type 'yes'. (To bypass this step, change the value of the $bypass variable to '1') > yes* print() on unopened filehandle O at ./trouble-maker.pl line 329.* PROBLEM: Networking is not working [root@rhel55 bin]# cd /tmp/trouble-maker/backup [root@rhel55 backup]# ls -l total 8 -rw-r--r-- 1 root root 60 May 19 11:02 BACKUP [root@rhel55 backup]# cat BACKUP Files that could not be backed up: ---------------------- [root@rhel55 backup]# cat ../rescue/DETAILS networking is turned off in /etc/sysconfig/network. To fix it, edit the file and turn it on again. [root@rhel55 backup]# ls -l /etc/sysconfig/network -rw-r--r-- 1 root root 65 *May 17 03:46 */etc/sysconfig/network [root@rhel55 backup]# date Wed *May 19 11:11:37* CDT 2010 I'm sure we can discuss more tonight, but I really do want to get this running properly. Matt -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-18 17:14:56
|
On Tue, May 18, 2010 at 9:47 AM, Developers list for trouble-maker <tro...@li...> wrote: > If anyone wants VMs of CentOS 5, RHEL 6 beta, Fedora 13 beta or the like, I > have some on my laptop. Bring a portable drive, and I'll copy them over to > you. How big are these images? Approximately. -- Todd |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-18 15:51:05
|
http://millardfam.com/trouble-maker/trouble-maker-0.03_millard.tgz I have a feeling it is something that I've modified in trouble-maker.pl, but I honestly can't figure it out from doing diff's. I'm hoping to make it to the meeting tomorrow night too. Matt On Tue, May 11, 2010 at 6:06 PM, Developers list for trouble-maker <tro...@li...> wrote: > It took me a while, but I finally got Fedora 13 and RHEL6 downloaded, > installed, and VMware tools running. > > And after all that... I can't duplicate your problem. :) > > Can you send me your modified code, so I can try that? > > Thanks, > > -Josh > > On Sat, May 8, 2010 at 8:36 AM, Developers list for trouble-maker > <tro...@li...> wrote: >> >> Also getting similar error on RHEL6 beta. Would anyone be interested >> in my modified 0.03 version that I updated to add RHEL4, RHEL5, RHEL6 >> and Fedora13 to be allowable OS's to run? None of these are tested >> out on the platforms yet as I've not been able to get it to run >> correctly without errors on my two VM's. >> >> Matt >> >> On Thu, May 6, 2010 at 1:45 PM, Matt Millard <mil...@gm...> >> wrote: >> > I'm trying to get things running on the Fedora 13 beta and am getting >> > this error when running trouble-maker. Thoughts? >> > >> > [root@fedora13beta ~]# /usr/local/trouble-maker/bin/trouble-maker.pl >> > --version=Fedora_2 >> > >> > Trouble-maker version 0.03 >> > Copyright (C) 2004 by Josh More >> > Trouble-maker comes with ABSOLUTELY NO WARRANTY >> > This is free software, and you are welcome to redistribute it under >> > certain conditions. >> > For details, see the file 'COPYING' included with this distribution. >> > >> > This program is intended for training purposes only, and will cause >> > system problems. >> > To proceed, type 'yes'. >> > (To bypass this step, change the value of the $bypass variable to '1') >> >> yes >> > YAML Warning: Duplicate map key found. Ignoring. >> > Code: YAML_LOAD_WARN_DUPLICATE_KEY >> > Line: 40 >> > Document: 1 >> > at /usr/share/perl5/YAML/Base.pm line 92 >> > YAML::Base::warn('YAML::Loader=HASH(0x9ddfe88)', >> > 'YAML_LOAD_WARN_DUPLICATE_KEY') called at >> > /usr/share/perl5/YAML/Loader.pm line 361 >> > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9ddfe88)', >> > '') called at /usr/share/perl5/YAML/Loader.pm line 170 >> > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9ddfe88)') >> > called at /usr/share/perl5/YAML/Loader.pm line 360 >> > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9ddfe88)', >> > '') called at /usr/share/perl5/YAML/Loader.pm line 170 >> > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9ddfe88)') >> > called at /usr/share/perl5/YAML/Loader.pm line 105 >> > YAML::Loader::_parse('YAML::Loader=HASH(0x9ddfe88)') called at >> > /usr/share/perl5/YAML/Loader.pm line 27 >> > YAML::Loader::load('YAML::Loader=HASH(0x9ddfe88)', '# In order >> > to minimize real system damage, these files will g...') called at >> > /usr/share/perl5/YAML.pm line 36 >> > YAML::Load('# In order to minimize real system damage, these >> > files will g...') called at >> > /usr/local/trouble-maker/bin/trouble-maker.pl line 158 >> > YAML Warning: Duplicate map key found. Ignoring. >> > Code: YAML_LOAD_WARN_DUPLICATE_KEY >> > Line: 27 >> > Document: 1 >> > at /usr/share/perl5/YAML/Base.pm line 92 >> > YAML::Base::warn('YAML::Loader=HASH(0x9dfb2d8)', >> > 'YAML_LOAD_WARN_DUPLICATE_KEY') called at >> > /usr/share/perl5/YAML/Loader.pm line 361 >> > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9dfb2d8)', >> > '') called at /usr/share/perl5/YAML/Loader.pm line 170 >> > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9dfb2d8)') >> > called at /usr/share/perl5/YAML/Loader.pm line 360 >> > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9dfb2d8)', >> > '') called at /usr/share/perl5/YAML/Loader.pm line 170 >> > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9dfb2d8)') >> > called at /usr/share/perl5/YAML/Loader.pm line 105 >> > YAML::Loader::_parse('YAML::Loader=HASH(0x9dfb2d8)') called at >> > /usr/share/perl5/YAML/Loader.pm line 27 >> > YAML::Loader::load('YAML::Loader=HASH(0x9dfb2d8)', '# >> > ===========================================================...') >> > called at /usr/share/perl5/YAML.pm line 36 >> > YAML::Load('# >> > ===========================================================...') >> > called at /usr/local/trouble-maker/bin/trouble-maker.pl line 158 >> > print() on unopened filehandle O at >> > /usr/local/trouble-maker/bin/trouble-maker.pl line 330. >> > PROBLEM: >> > The system will not boot >> > >> > The /tmp/trouble-maker/backup directory doesn't have the backed up >> > /boot/grub/grub.conf file in it and there are no modification made to >> > the existing /boot/grub/grub.conf. This is just an example. >> > Basically all of the modules are behaving in this manner. >> > >> > >> > FYI - on Fedora 13 the required perl modules perl-Archive-Tar and >> > perl-YAML are available in the default repo so getting going is pretty >> > painless. I've modified each of the config.yaml files to include >> > Fedora_13 as a valid os_version as well and repackaged them up locally >> > for testing. >> > >> > Matt >> > >> > -- >> > Matt Millard >> > >> > http://photos.millardfam.com >> > http://twitter.com/gocyclones >> > >> >> >> >> -- >> Matt Millard >> >> http://photos.millardfam.com >> http://twitter.com/gocyclones >> >> >> ------------------------------------------------------------------------------ >> >> _______________________________________________ >> Trouble-maker-developers mailing list >> Tro...@li... >> https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > > ------------------------------------------------------------------------------ > > > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > -- Matt Millard http://flavors.me/mattmillard |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-18 14:47:17
|
As a reminder for those of us in the central Iowa area, we have a TroubleMaker meeting tomorrow evening at 6:00 PM at Alliance Technologies (8th floor, Capitol square). We will run through the architecture and do a few tests. If anyone wants VMs of CentOS 5, RHEL 6 beta, Fedora 13 beta or the like, I have some on my laptop. Bring a portable drive, and I'll copy them over to you. Hope to see many of you there. -Josh More |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-11 23:06:50
|
It took me a while, but I finally got Fedora 13 and RHEL6 downloaded, installed, and VMware tools running. And after all that... I can't duplicate your problem. :) Can you send me your modified code, so I can try that? Thanks, -Josh On Sat, May 8, 2010 at 8:36 AM, Developers list for trouble-maker < tro...@li...> wrote: > Also getting similar error on RHEL6 beta. Would anyone be interested > in my modified 0.03 version that I updated to add RHEL4, RHEL5, RHEL6 > and Fedora13 to be allowable OS's to run? None of these are tested > out on the platforms yet as I've not been able to get it to run > correctly without errors on my two VM's. > > Matt > > On Thu, May 6, 2010 at 1:45 PM, Matt Millard <mil...@gm...> > wrote: > > I'm trying to get things running on the Fedora 13 beta and am getting > > this error when running trouble-maker. Thoughts? > > > > [root@fedora13beta ~]# /usr/local/trouble-maker/bin/trouble-maker.pl > > --version=Fedora_2 > > > > Trouble-maker version 0.03 > > Copyright (C) 2004 by Josh More > > Trouble-maker comes with ABSOLUTELY NO WARRANTY > > This is free software, and you are welcome to redistribute it under > > certain conditions. > > For details, see the file 'COPYING' included with this distribution. > > > > This program is intended for training purposes only, and will cause > > system problems. > > To proceed, type 'yes'. > > (To bypass this step, change the value of the $bypass variable to '1') > >> yes > > YAML Warning: Duplicate map key found. Ignoring. > > Code: YAML_LOAD_WARN_DUPLICATE_KEY > > Line: 40 > > Document: 1 > > at /usr/share/perl5/YAML/Base.pm line 92 > > YAML::Base::warn('YAML::Loader=HASH(0x9ddfe88)', > > 'YAML_LOAD_WARN_DUPLICATE_KEY') called at > > /usr/share/perl5/YAML/Loader.pm line 361 > > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9ddfe88)', > > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9ddfe88)') > > called at /usr/share/perl5/YAML/Loader.pm line 360 > > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9ddfe88)', > > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9ddfe88)') > > called at /usr/share/perl5/YAML/Loader.pm line 105 > > YAML::Loader::_parse('YAML::Loader=HASH(0x9ddfe88)') called at > > /usr/share/perl5/YAML/Loader.pm line 27 > > YAML::Loader::load('YAML::Loader=HASH(0x9ddfe88)', '# In order > > to minimize real system damage, these files will g...') called at > > /usr/share/perl5/YAML.pm line 36 > > YAML::Load('# In order to minimize real system damage, these > > files will g...') called at > > /usr/local/trouble-maker/bin/trouble-maker.pl line 158 > > YAML Warning: Duplicate map key found. Ignoring. > > Code: YAML_LOAD_WARN_DUPLICATE_KEY > > Line: 27 > > Document: 1 > > at /usr/share/perl5/YAML/Base.pm line 92 > > YAML::Base::warn('YAML::Loader=HASH(0x9dfb2d8)', > > 'YAML_LOAD_WARN_DUPLICATE_KEY') called at > > /usr/share/perl5/YAML/Loader.pm line 361 > > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9dfb2d8)', > > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9dfb2d8)') > > called at /usr/share/perl5/YAML/Loader.pm line 360 > > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9dfb2d8)', > > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9dfb2d8)') > > called at /usr/share/perl5/YAML/Loader.pm line 105 > > YAML::Loader::_parse('YAML::Loader=HASH(0x9dfb2d8)') called at > > /usr/share/perl5/YAML/Loader.pm line 27 > > YAML::Loader::load('YAML::Loader=HASH(0x9dfb2d8)', '# > > ===========================================================...') > > called at /usr/share/perl5/YAML.pm line 36 > > YAML::Load('# > > ===========================================================...') > > called at /usr/local/trouble-maker/bin/trouble-maker.pl line 158 > > print() on unopened filehandle O at > > /usr/local/trouble-maker/bin/trouble-maker.pl line 330. > > PROBLEM: > > The system will not boot > > > > The /tmp/trouble-maker/backup directory doesn't have the backed up > > /boot/grub/grub.conf file in it and there are no modification made to > > the existing /boot/grub/grub.conf. This is just an example. > > Basically all of the modules are behaving in this manner. > > > > > > FYI - on Fedora 13 the required perl modules perl-Archive-Tar and > > perl-YAML are available in the default repo so getting going is pretty > > painless. I've modified each of the config.yaml files to include > > Fedora_13 as a valid os_version as well and repackaged them up locally > > for testing. > > > > Matt > > > > -- > > Matt Millard > > > > http://photos.millardfam.com > > http://twitter.com/gocyclones > > > > > > -- > Matt Millard > > http://photos.millardfam.com > http://twitter.com/gocyclones > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-05-08 13:42:18
|
Also getting similar error on RHEL6 beta. Would anyone be interested in my modified 0.03 version that I updated to add RHEL4, RHEL5, RHEL6 and Fedora13 to be allowable OS's to run? None of these are tested out on the platforms yet as I've not been able to get it to run correctly without errors on my two VM's. Matt On Thu, May 6, 2010 at 1:45 PM, Matt Millard <mil...@gm...> wrote: > I'm trying to get things running on the Fedora 13 beta and am getting > this error when running trouble-maker. Thoughts? > > [root@fedora13beta ~]# /usr/local/trouble-maker/bin/trouble-maker.pl > --version=Fedora_2 > > Trouble-maker version 0.03 > Copyright (C) 2004 by Josh More > Trouble-maker comes with ABSOLUTELY NO WARRANTY > This is free software, and you are welcome to redistribute it under > certain conditions. > For details, see the file 'COPYING' included with this distribution. > > This program is intended for training purposes only, and will cause > system problems. > To proceed, type 'yes'. > (To bypass this step, change the value of the $bypass variable to '1') >> yes > YAML Warning: Duplicate map key found. Ignoring. > Code: YAML_LOAD_WARN_DUPLICATE_KEY > Line: 40 > Document: 1 > at /usr/share/perl5/YAML/Base.pm line 92 > YAML::Base::warn('YAML::Loader=HASH(0x9ddfe88)', > 'YAML_LOAD_WARN_DUPLICATE_KEY') called at > /usr/share/perl5/YAML/Loader.pm line 361 > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9ddfe88)', > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9ddfe88)') > called at /usr/share/perl5/YAML/Loader.pm line 360 > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9ddfe88)', > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9ddfe88)') > called at /usr/share/perl5/YAML/Loader.pm line 105 > YAML::Loader::_parse('YAML::Loader=HASH(0x9ddfe88)') called at > /usr/share/perl5/YAML/Loader.pm line 27 > YAML::Loader::load('YAML::Loader=HASH(0x9ddfe88)', '# In order > to minimize real system damage, these files will g...') called at > /usr/share/perl5/YAML.pm line 36 > YAML::Load('# In order to minimize real system damage, these > files will g...') called at > /usr/local/trouble-maker/bin/trouble-maker.pl line 158 > YAML Warning: Duplicate map key found. Ignoring. > Code: YAML_LOAD_WARN_DUPLICATE_KEY > Line: 27 > Document: 1 > at /usr/share/perl5/YAML/Base.pm line 92 > YAML::Base::warn('YAML::Loader=HASH(0x9dfb2d8)', > 'YAML_LOAD_WARN_DUPLICATE_KEY') called at > /usr/share/perl5/YAML/Loader.pm line 361 > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9dfb2d8)', > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9dfb2d8)') > called at /usr/share/perl5/YAML/Loader.pm line 360 > YAML::Loader::_parse_mapping('YAML::Loader=HASH(0x9dfb2d8)', > '') called at /usr/share/perl5/YAML/Loader.pm line 170 > YAML::Loader::_parse_node('YAML::Loader=HASH(0x9dfb2d8)') > called at /usr/share/perl5/YAML/Loader.pm line 105 > YAML::Loader::_parse('YAML::Loader=HASH(0x9dfb2d8)') called at > /usr/share/perl5/YAML/Loader.pm line 27 > YAML::Loader::load('YAML::Loader=HASH(0x9dfb2d8)', '# > ===========================================================...') > called at /usr/share/perl5/YAML.pm line 36 > YAML::Load('# > ===========================================================...') > called at /usr/local/trouble-maker/bin/trouble-maker.pl line 158 > print() on unopened filehandle O at > /usr/local/trouble-maker/bin/trouble-maker.pl line 330. > PROBLEM: > The system will not boot > > The /tmp/trouble-maker/backup directory doesn't have the backed up > /boot/grub/grub.conf file in it and there are no modification made to > the existing /boot/grub/grub.conf. This is just an example. > Basically all of the modules are behaving in this manner. > > > FYI - on Fedora 13 the required perl modules perl-Archive-Tar and > perl-YAML are available in the default repo so getting going is pretty > painless. I've modified each of the config.yaml files to include > Fedora_13 as a valid os_version as well and repackaged them up locally > for testing. > > Matt > > -- > Matt Millard > > http://photos.millardfam.com > http://twitter.com/gocyclones > -- Matt Millard http://photos.millardfam.com http://twitter.com/gocyclones |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-04-25 02:02:55
|
No you don't have to buy. The beta is open to the public now. The announcement is here: http://press.redhat.com/2010/04/21/red-hat-enterprise-linux-6-beta-available-today-for-public-download/ The download is available here: http://www.redhat.com/rhel/beta Matt Millard On Sat, Apr 24, 2010 at 5:43 PM, Developers list for trouble-maker < tro...@li...> wrote: > On Sat, Apr 24, 2010 at 10:52 AM, Developers list for trouble-maker > <tro...@li...> wrote: > > I'm going to go ahead and try to get things working in RHEL6 Beta. It > was > > just released a few days ago and I've got a copy running (no GUI yet) in > > VirtualBox 3.1.6. I'll probably go ahead and throw a RHEL5 install on > too > > How did you get RHEL? Does one need to buy it? > > -- > Todd > > > ------------------------------------------------------------------------------ > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-04-25 00:18:34
|
If you want to give a presentation at the Red Hat summit, that would be awesome! Let me know if you want any help putting it together. -Josh On Sat, Apr 24, 2010 at 10:52 AM, Developers list for trouble-maker < tro...@li...> wrote: > I'm going to go ahead and try to get things working in RHEL6 Beta. It was > just released a few days ago and I've got a copy running (no GUI yet) in > VirtualBox 3.1.6. I'll probably go ahead and throw a RHEL5 install on too > since it sounds like that is the area that will have most > development/testing to start out with. > > I'm also planning on going to the Red Hat Summit this year at the end of > June and might want to do a quick presentation on how the TroubleMaker > works. I think this would generate some more interest in the community > about this app. Summit is June 22-25th in Boston this year. > > Matt > > -- > Matt Millard > > http://twitter.com/gocyclones > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > > |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-04-24 23:03:57
|
No. You just can't patch without paying. On 4/24/10, Developers list for trouble-maker <tro...@li...> wrote: > On Sat, Apr 24, 2010 at 10:52 AM, Developers list for trouble-maker > <tro...@li...> wrote: >> I'm going to go ahead and try to get things working in RHEL6 Beta. It was >> just released a few days ago and I've got a copy running (no GUI yet) in >> VirtualBox 3.1.6. I'll probably go ahead and throw a RHEL5 install on too > > How did you get RHEL? Does one need to buy it? > > -- > Todd > > ------------------------------------------------------------------------------ > _______________________________________________ > Trouble-maker-developers mailing list > Tro...@li... > https://lists.sourceforge.net/lists/listinfo/trouble-maker-developers > -- Sent from my mobile device Sterling Thomas |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-04-24 22:43:35
|
On Sat, Apr 24, 2010 at 10:52 AM, Developers list for trouble-maker <tro...@li...> wrote: > I'm going to go ahead and try to get things working in RHEL6 Beta. It was > just released a few days ago and I've got a copy running (no GUI yet) in > VirtualBox 3.1.6. I'll probably go ahead and throw a RHEL5 install on too How did you get RHEL? Does one need to buy it? -- Todd |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-04-24 15:52:37
|
I'm going to go ahead and try to get things working in RHEL6 Beta. It was just released a few days ago and I've got a copy running (no GUI yet) in VirtualBox 3.1.6. I'll probably go ahead and throw a RHEL5 install on too since it sounds like that is the area that will have most development/testing to start out with. I'm also planning on going to the Red Hat Summit this year at the end of June and might want to do a quick presentation on how the TroubleMaker works. I think this would generate some more interest in the community about this app. Summit is June 22-25th in Boston this year. Matt -- Matt Millard http://twitter.com/gocyclones |
From: Developers l. f. trouble-m. <tro...@li...> - 2010-04-23 01:57:12
|
For those of you who were at the meeting last night, thanks for coming. We didn't really get much done, so next month's meeting will be the "official" kickoff. To summarize what we discussed: * TroubleMaker consists of both an engine and a collection of "trouble scripts". * The first thing needed are to update to trouble scripts to more modern distros. * Scripts can be written in ANY language! They are controlled with a YAML config file. Basic doc is here: http://trouble-maker.sourceforge.net/dev-modules.html * We also need people to write new scripts. New scripts will be based on the RHCE exam until we have coverage, then we get to go a bit nuts. * If you want help going after your RHCE, Michael Jang's RHCE study guide is the best. This is what those of us on the Red Hat path will be writing scripts to * If you are a Perl hacker, there are some minor engine modifications that would be nice... let me know off list if you want to brainstorm on this piece. So, as to tasks... here's what we need first and foremost: 1) Please install the app on your test system. 2) Go into /usr/local/trouble-maker/kitbag/ and look at the modules we have to play with 3) Run */usr/local/trouble-maker/bin/trouble-maker.pl --version=RHEL3 --selection=[name of trouble script]* 4) See if it broke what it should. 5a) If so, drop me an email saying "script [name of trouble script] works on [name of distro]" and I'll update the config.yaml file 5b) If not, see if you can figure out why. 5b1) If you want to adjust the script to make it work better, send me a copy of the new script and your notes. 5b2) If you don't want to/can't adjust the script, post to the list with what's going on, and we'll all learn together. Once we've checked all the scripts against current distros, we should all be more familiar with the system and can start doing parallel development if people wish. This is where the real fun starts, and we can start writing scripts to break one another's systems. At this time, I care the most about RHEL5 (or CentOS 5, I'm not particular), as that's what people are asking for. However, if you want to update for your own favorite distro, go for it. I'll probably hit the SUSE 11.x line while I'm mucking about with stuff, just 'cause. I know some of you are Ubuntu fans, so if you want to play with that, go for it. If you have any questions, ask here. Part of the point of this is so that we can all learn together. Thanks, -Josh |