Re: [SLUG] OT: question about IBM Aptiva

2003-10-22 Thread Kevin Saenz
Thanks all who responded I will try tomorrow. :)

 I know this is a little off topic,
 
 Not really
 
 Does anyone know how to get to the bios on an IBM APtiva?
 
 On my 2140, it's F1 -- may vary though.


-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: question about IBM Aptiva

2003-10-22 Thread Michael Lake
Kevin Saenz wrote:
 I know this is a little off topic,
 Does anyone know how to get to the bios on an IBM APtiva?
 
 
Try this:
Press both mouse buttons repeatedly during the boot


-- 

Mike Lake
Caver, Linux enthusiast and interested in anything technical.



UTS CRICOS Provider Code:  00099F

DISCLAIMER

This email message and any accompanying attachments may contain
confidential information.  If you are not the intended recipient, do not
read, use, disseminate, distribute or copy this message or attachments.
If you have received this message in error, please notify the sender
immediately and delete this message. Any views expressed in this message
are those of the individual sender, except where the sender expressly,
and with authority, states them to be the views the University of
Technology Sydney. Before opening any attachments, please check them for
viruses and defects.




-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: question about IBM Aptiva

2003-10-22 Thread Trevor D. Manning
* Kevin Saenz ([EMAIL PROTECTED]) wrote:
 I know this is a little off topic,
 Does anyone know how to get to the bios on an IBM APtiva?

Googled access+bios+IBM+Aptiva, and it's covered on the first hit:

http://www.iomega.com/support/documents/10894.html

# IBM® Aptiva
To access the IBM Aptiva Setup (BIOS) utility:
Press the F1 key at restart.

- TManning

-- 
This email was delivered via a well trained penguin and etched
into your hard drive via a rapid beak pecking during your absence...
--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: question about IBM Aptiva

2003-10-22 Thread Michael Lake

 * Kevin Saenz ([EMAIL PROTECTED]) wrote:
I know this is a little off topic,
Does anyone know how to get to the bios on an IBM APtiva?

Trevor D. Manning wrote:
 Googled access+bios+IBM+Aptiva, and it's covered on the first hit:
 http://www.iomega.com/support/documents/10894.html
 # IBM® Aptiva
 To access the IBM Aptiva Setup (BIOS) utility:
 Press the F1 key at restart.

yes. note that what I sent was how to bypass the bios password. there is 
a difference. Kevin prob needs what Trevor sent him not what I sent :-) 
I have been too busy reading security stuff lately.

-- 
Michael Lake
Chemistry, Materials  Forensic Science, UTS
Ph: 9514 1724 Fx: 9514 1460




UTS CRICOS Provider Code:  00099F

DISCLAIMER

This email message and any accompanying attachments may contain
confidential information.  If you are not the intended recipient, do not
read, use, disseminate, distribute or copy this message or attachments.
If you have received this message in error, please notify the sender
immediately and delete this message. Any views expressed in this message
are those of the individual sender, except where the sender expressly,
and with authority, states them to be the views the University of
Technology Sydney. Before opening any attachments, please check them for
viruses and defects.



--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Tiwari, Rajnish
Hi All,

I am stuck trying to decide on 2 courses of action - one
of which involves changes to loads of files (I wish to avoid
doing this if possible).

Currently, I have this C-function:
int DEBUG(char* xstr, int somelevel)
   { 
 // pseudo-pseudo-code follows
 if ( somelevel  10 )
  print xstr;

 return 0;
   }

   char* fs(const char* fmt, ...);

   And they are used as follows (as an example):
DEBUG( fs(%s%s, -, =), 25 );


I aim to deprecate the use of fs() - as you will see the call to
fs() is wasted its output isn't being printed. I aim to shove down
that responsibility to DEBUG itself.

   My Question:
   Is it possible to do use C-processor macros to define fs() to
   _become_ nothing, and call my new DEBUG with the follow prototype:
   int NEW_DEBUG(int somelevel, const char* fmt, ...);  ??

That is:
   #define fs(msg,...) ?? // leaves me with just msg,...
#define DEBUG(const char*, ... , level) NEW_DEBUG(level, const
char*, )

(Please note: I have used incorrect CPP syntax as I am trying
to get an idea across only [and also 'cos I don't know howto])

Is the above idea possible - or I should go ahead and do the
hundreds
of lines of changes ?

Thanks in advance.

Regards,
Rajnish

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Benno
On Wed Oct 22, 2003 at 18:39:07 +1000, Tiwari, Rajnish wrote:
Hi All,

   I am stuck trying to decide on 2 courses of action - one
   of which involves changes to loads of files (I wish to avoid
   doing this if possible).

   Currently, I have this C-function:
   int DEBUG(char* xstr, int somelevel)
   { 
 // pseudo-pseudo-code follows
 if ( somelevel  10 )
  print xstr;

 return 0;
   }

   char* fs(const char* fmt, ...);

   And they are used as follows (as an example):
   DEBUG( fs(%s%s, -, =), 25 );


   I aim to deprecate the use of fs() - as you will see the call to
   fs() is wasted its output isn't being printed. I aim to shove down
   that responsibility to DEBUG itself.

   My Question:
   Is it possible to do use C-processor macros to define fs() to
   _become_ nothing, and call my new DEBUG with the follow prototype:
   int NEW_DEBUG(int somelevel, const char* fmt, ...); ??

   That is:
   #define fs(msg,...) ?? // leaves me with just msg,...

I'm sure I answered this question, or a similar a couple of days ago, but

#define fs(msg...) msg

   #define DEBUG(const char*, ... , level) NEW_DEBUG(level, const
char*, )

Um, I'm not sure what you want to do here. Your old DEBUG was:

DEBUG(char*, level), not DEBUG(const char*, ..., level)

Of course the latter is impossible, you can't have variadic arguments in
the middle of your function definition.

Instead of a solution, I'll point you to the wonerful manual:

http://gcc.gnu.org/onlinedocs/gcc/Variadic-Macros.html,

which is kind of hard to find if you don't realise these things are
called variadic macros. (And even then if you can't spell like me, you
still have trouble).

Benno
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Michael Still
On Wed, 22 Oct 2003, Tiwari, Rajnish wrote:

And they are used as follows (as an example):
   DEBUG( fs(%s%s, -, =), 25 );

Doesn't that leak?

Mikal

-- 

Michael Still ([EMAIL PROTECTED]) | All my life I've had one dream,
http://www.stillhq.com|  to achieve my many goals
UTC + 10  |-- Homer Simpson

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Robert Collins
On Wed, 2003-10-22 at 18:39, Tiwari, Rajnish wrote:
[ ... debug constructs ]

We came up with this in squid3:
/* Debug stream */
#define debugs(SECTION, LEVEL, CONTENT) \
   do { \
if ((Debug::level = (LEVEL)) = Debug::Levels[SECTION]) { \
Debug::getDebugOut()  CONTENT; \
Debug::finishDebug(); \
} \
   } while (/*CONSTCOND*/ 0)
  


used like this:
debugs(1,4, and int   variablename   or other object type  
objectreference);

will only evaluate  Debug::getDebugOut() and the content to output when
the section 1 has it's debug level set above 3.

We have a similar construct for C - see the squid3 sources for both.

Rob
-- 
GPG key available at: http://members.aardvark.net.au/lifeless/keys.txt.


signature.asc
Description: This is a digitally signed message part
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Ken Foskey
On Wed, 2003-10-22 at 18:39, Tiwari, Rajnish wrote:
 Hi All,
 
   I am stuck trying to decide on 2 courses of action - one
   of which involves changes to loads of files (I wish to avoid
   doing this if possible).
 
   Currently, I have this C-function:
   int DEBUG(char* xstr, int somelevel)
{ 
  // pseudo-pseudo-code follows
  if ( somelevel  10 )
   print xstr;
 
  return 0;
}
 
char* fs(const char* fmt, ...);
 
And they are used as follows (as an example):
   DEBUG( fs(%s%s, -, =), 25 );
 
 
   I aim to deprecate the use of fs() - as you will see the call to
   fs() is wasted its output isn't being printed. I aim to shove down
   that responsibility to DEBUG itself.
 
My Question:
Is it possible to do use C-processor macros to define fs() to
_become_ nothing, and call my new DEBUG with the follow prototype:
int NEW_DEBUG(int somelevel, const char* fmt, ...);??
 
   That is:
#define fs(msg,...) ?? // leaves me with just msg,...
   #define DEBUG(const char*, ... , level) NEW_DEBUG(level, const
 char*, )
 
   (Please note: I have used incorrect CPP syntax as I am trying
 to get an idea across only [and also 'cos I don't know howto])
 
   Is the above idea possible - or I should go ahead and do the
 hundreds
   of lines of changes ?

You are trying to hard.  Ignore fs and what it does and have another
look at DEBUG:

int DEBUG(char* xstr, int somelevel)

If you translate this into nothing then you wont even have the function
call left.  The catch to this sort of change is programming by side
effect.

DEBUG( something, i++ );

If you translate this to nothing then i++ just goes away as well.  If
nothing strange is in your code then a simple macro will do the trick.

#define DEBUG(x,y)

You will get another error, I will leave this for you to ponder where
:-)

-- 
Thanks
KenF
OpenOffice.org developer

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OT: question about IBM Aptiva

2003-10-22 Thread Ben Donohue
Hi Kevin,
It's an old trick but it just might work...
Hold down any key and turn on the power. Don't worry about beeps etc. 
The computer thinks there is a stuck key and throws you into the BIOS.
Also hitting F1 or F12 or the DEL key sometimes works, sometimes CTRL+A 
or CTRL+S.
Keep hitting these straight after turning on the power.
Or are you talking about REMOVING the BIOS password?
Ben

Kevin Saenz wrote:

I know this is a little off topic,
Does anyone know how to get to the bios on an IBM APtiva?
 

--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] VideoLan

2003-10-22 Thread Simon Bryan
Has anyone had direct experience with Videolan (Video Server). I am about to setup a
test server for a very small scale trial. If so are there any gotcha's? Did you use
a video or DVD converted to MP3 - waht did you use for the conversion? Was any
thought given to copyright issues? (Mine would be for within a school)


Simon Bryan
IT Manager
OLMC Parramatta
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] linux hardware raid controllers

2003-10-22 Thread Matt M
At 07:46 22/10/2003, you wrote:

SCSI's great. IMO, it'll always be faster, no matter what the IDE drive 
specs state. I run both my workstations on SCSI, and love it. It is 
pricey, however. The good news is that almost all mainstream SCSI RAID 
controllers have Linux support (IIRC). I run a Dell PERC2/DC (Ultra2, 
rebadged AMI EliteRAID 1500) in my other workstation. Works great with 
the megaraid driver.
so you like the AMI EliteRAID1500. ? how feature full is the driver? can 
you blink disk LEDS?
The card isn't available on the new market at the moment, as far as I know, 
but the info about the drivers should apply to all LSI cards now (all of 
the new stuff should be under the megaraid driver, if I understand right).

Re: The Driver. The short answer is I don't really know at the moment, as I 
haven't had much time to play with it. The driver has been very painless so 
far (2.4.22, driver revision 1.18k), and has a pretty nice /proc interface 
with all the right info, but not writable stuff. You may be able to do so 
in the mailbox file, but I'm not sure.

I've just tried out the MegaRAID manager (you can grab it from the LSI site 
-- just download the Red Hat 8 driver, which is actually just a tarball), 
and you can do anything you can do in the BIOS with it (I suspect it is 
just a bridge to the BIOS). As I haven't got any drives connected to the 
adapter at the moment, I can't confirm whether or not you can flash drive 
lights.

On vendor gear, I'm sure everyone's had some pretty bad experiences. I know 
we had some horrors with a nice shiny Adaptec SAN we got in a while back 
(which was then resolved pretty quickly, actually, once the right people 
heard about it..). The IBM gear I've used lately all uses the LSI Fusion 
MPT Ultra320 chipset (which even does RAID1 natively!), and seems very, 
very nice, though I've yet to be able to put Linux on one of these puppies 
(Netware 6 and Win2k so far) - I think all the big names are using this 
chipset now. It may even be the one LSI is using on the RAID adapters. I 
tend to lean towards researching hardware very carefully, but then buying 
from a big name, to try and save myself from the blame game (oh no, it's 
definitely XYZ's equipment.. couldn't be ours..). Just my $0.02.

Cheers,

Matt 

--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] OSS investment

2003-10-22 Thread Ken Foskey

I was thinking about investing money and thinking about what market I
know more about than average.  Open Source springs to mind, so this is
obviously where I would be smartest to put my money, besides it is
another way for me to encourage OSS investment.

So I was wondering what Australian public companies develop or support
OSS as a major portion of their revenue (eliminates ISP, IBM, Sun)? 
Thought others might be interested in the answer as well...  I can then
do my digging on those specific companies.

-- 
Thanks
KenF
OpenOffice.org developer

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] linux hardware raid controllers

2003-10-22 Thread David Kempe
Well Debian didn't support that chipset natively when I installed it on the
box in question Matt :-(
just took a different woody boot disk and an extra driver.
Also needed a decent new kernel package with the mptbase and mptscsi
drivers.
according to the IBM website, the redhat installer and kernels support that
chipset from a fair while ago.
seems to run very fast now its installed, but installing it was a bit of
bitch.
Also the Broadcom onboard 10/100/1000 nic on those boxes (IBM x335) can use
the tg3 driver or a different one.
The tg3 driver seemed to work ok in preliminary testing.

I think the Fusion chipset has some nice ideas, but I am not sure why they
decided having a network card and scsi controller on the same chip. Would it
make that much difference? besides, the Fusion nic support in linux is a bit
problematic, and according to the IBM readme, only useable as a module.

Dave

- Original Message - 
From: Matt M [EMAIL PROTECTED]

 heard about it..). The IBM gear I've used lately all uses the LSI Fusion
 MPT Ultra320 chipset (which even does RAID1 natively!), and seems very,
 very nice, though I've yet to be able to put Linux on one of these puppies
 (Netware 6 and Win2k so far) - I think all the big names are using this
 chipset now. It may even be the one LSI is using on the RAID adapters. I
 tend to lean towards researching hardware very carefully, but then buying
 from a big name, to try and save myself from the blame game (oh no, it's
 definitely XYZ's equipment.. couldn't be ours..). Just my $0.02.

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] OSS investment

2003-10-22 Thread Darren Williams
Hi Ken

You could look at 
Equivalence Pty Ltd,
http://www.equival.com

These guys started openH323 the open source VoIP 
based in the H323 recommendation. I spent a year
working on a security project and the effort 
from the developers is quite good.

They are an Australian company despite the url.

Darren

On Thu, 23 Oct 2003, Ken Foskey wrote:

 
 I was thinking about investing money and thinking about what market I
 know more about than average.  Open Source springs to mind, so this is
 obviously where I would be smartest to put my money, besides it is
 another way for me to encourage OSS investment.
 
 So I was wondering what Australian public companies develop or support
 OSS as a major portion of their revenue (eliminates ISP, IBM, Sun)? 
 Thought others might be interested in the answer as well...  I can then
 do my digging on those specific companies.
 
 -- 
 Thanks
 KenF
 OpenOffice.org developer
 
 -- 
 SLUG - Sydney Linux User's Group - http://slug.org.au/
 More Info: http://lists.slug.org.au/listinfo/slug
--
Darren Williams [EMAIL PROTECTED]
[EMAIL PROTECTED] www.gelato.unsw.edu.au
--
--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] no user access for pppd

2003-10-22 Thread Russell
Hi,
when a users dials to isp,  kppp returns 'unable to open modem'
however,  success when root user can dial isp, with no errors or time outs.
the users are members of group 'dip'
the file permissions for pppd are set to suid
the gid for kppp and pppd are set as 'dip'
this is a debian box,  with kde 3.1.4  and running kernel 2.4.18 
compiled for this box.
this occurs for existing and new users.

this started to occur after upgrading kde to 3.1.4 from original knoppix 
install
(to run gnucash 1.8.7)
and kde has some problems, ie kde doesn't displaying some fonts, e.g. in 
kde help konsole and sysV-init editor, and  and X display on monitor is 
reduced vertically (vertically challenged?)

getting exasperated, maybe a kde downgrade?
any help appreciated (esp on dialout,  help other stuff is also appreciated)
TIA
Russell
(baffled again by linux...)
--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


RE: [SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Tiwari, Rajnish
 

::And they are used as follows (as an example):
::DEBUG( fs(%s%s, -, =), 25 );
::
::Doesn't that leak?

oh yes, _big_ time !!
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] linux hardware raid controllers

2003-10-22 Thread Matt M
At 07:44 23/10/2003, David Kempe wrote:
Well Debian didn't support that chipset natively when I installed it on the
box in question Matt :-(
just took a different woody boot disk and an extra driver.
Also needed a decent new kernel package with the mptbase and mptscsi
drivers.
according to the IBM website, the redhat installer and kernels support that
chipset from a fair while ago.
seems to run very fast now its installed, but installing it was a bit of
bitch.
Also the Broadcom onboard 10/100/1000 nic on those boxes (IBM x335) can use
the tg3 driver or a different one.
The tg3 driver seemed to work ok in preliminary testing.
I think the Fusion chipset has some nice ideas, but I am not sure why they
decided having a network card and scsi controller on the same chip. Would it
make that much difference? besides, the Fusion nic support in linux is a bit
problematic, and according to the IBM readme, only useable as a module.
Weird. I was under the impression that both onboards were driven by the 
broadcom chip. IIRC, this is the case on a single NIC box with the Fusion 
chipset that I've also installed on (IBM x225).

There shouldn't be any advantage other than saving some space on the PCB, 
'cause for the NIC to access any data on the SCSI controller it'd have to 
go through main memory (Beyond this, I don't think it should be -- an 
application should be in control -- at least without something like NBD). 
It's a very strange thing to do.

Cheers,

Matt 

--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] Error Messages - Hardware Issue

2003-10-22 Thread scott
Hi Sluggers,
Last night a server died, and on reboot there are the following error 
messages that constantly appear in the log:
eth0: Too much work at interrupt, IntrStatus=0x0001.
Oct 23 10:01:25 rrserver kernel: scsi0: PCI error Interrupt at seqaddr = 
0x8
Oct 23 10:01:25 rrserver kernel: scsi0: Data Parity Error Detected during 
address or write data phase

The eth0 error doesn't happen as often as the scsi error, I think it only 
happens when someone tries to remotely connect to the server.
The scsi error happens every 30 seconds or so, I guess this is becuase it 
has a scsi hard drive.

Output of lspci:
00:00.0 Host bridge: VIA Technologies, Inc. VT8367 [KT266]
00:01.0 PCI bridge: VIA Technologies, Inc. VT8367 [KT266 AGP]
00:05.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 
10)
00:09.0 USB Controller: VIA Technologies, Inc. USB (rev 50)
00:09.1 USB Controller: VIA Technologies, Inc. USB (rev 50)
00:09.2 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 51)
00:0c.0 VGA compatible controller: S3 Inc. 86c764/765 [Trio32/64/64V+] 
(rev 44)
00:0d.0 SCSI storage controller: Adaptec AIC-7892A U160/m (rev 02)
00:0f.0 Ethernet controller: D-Link System Inc RTL8139 Ethernet (rev 10)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8233A ISA Bridge
00:11.1 IDE interface: VIA Technologies, Inc. Bus Master IDE (rev 06)
00:11.2 USB Controller: VIA Technologies, Inc. USB (rev 23)
00:11.3 USB Controller: VIA Technologies, Inc. USB (rev 23)

This machine has been running for nearly a year flawlessly, no recent 
changes, and it is not connected to the internet, so this is why I think 
its a hardware issue - But where?

Any suggestions appreciated.

Thanks,

Scott

-- 
Scott Ragen
Support Manager/IT Administrator
Roadtech Systems
www.roadtech.com.au
PH: +61 2 9807 3516 FAX: +61 2 9808 5294
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


RE: [SLUG] Error Messages - Hardware Issue

2003-10-22 Thread Rowling, Jill
Just as a guess, possibly there is a hardware fault on the disk at SCSI 0
and the controller is automatically correcting the one-bit parity error. The
earlier shutdown would have occurred when there was more than one bit in
error.
The eth0 error may be a timeout due to the first fault, as you say.
If you have a spare disk, it might be time to swap it out. Of course it is
probably the main system disk and you didn't really want to keep the machine
offline ... :)

Time to do a surface scan of the media, I think. Also if it's only one year
you might check your hardware warranties. Some of the newer disks are
guaranteed for three years.
If a surface scan does not show up anything, you might have a controller
fault. You can always try re-seating the card and connectors (actually you
might want to do that first before the media test).

Regards,

Jill. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 23 October 2003 10:22 AM
To: [EMAIL PROTECTED]
Subject: [SLUG] Error Messages - Hardware Issue


Hi Sluggers,
Last night a server died, and on reboot there are the following error 
messages that constantly appear in the log:
eth0: Too much work at interrupt, IntrStatus=0x0001.
Oct 23 10:01:25 rrserver kernel: scsi0: PCI error Interrupt at seqaddr = 
0x8
Oct 23 10:01:25 rrserver kernel: scsi0: Data Parity Error Detected during 
address or write data phase

The eth0 error doesn't happen as often as the scsi error, I think it only 
happens when someone tries to remotely connect to the server. The scsi error
happens every 30 seconds or so, I guess this is becuase it 
has a scsi hard drive.

Output of lspci:
00:00.0 Host bridge: VIA Technologies, Inc. VT8367 [KT266] 00:01.0 PCI
bridge: VIA Technologies, Inc. VT8367 [KT266 AGP] 00:05.0 Multimedia audio
controller: C-Media Electronics Inc CM8738 (rev 
10)
00:09.0 USB Controller: VIA Technologies, Inc. USB (rev 50) 00:09.1 USB
Controller: VIA Technologies, Inc. USB (rev 50) 00:09.2 USB Controller: VIA
Technologies, Inc. USB 2.0 (rev 51) 00:0c.0 VGA compatible controller: S3
Inc. 86c764/765 [Trio32/64/64V+] 
(rev 44)
00:0d.0 SCSI storage controller: Adaptec AIC-7892A U160/m (rev 02) 00:0f.0
Ethernet controller: D-Link System Inc RTL8139 Ethernet (rev 10) 00:11.0 ISA
bridge: VIA Technologies, Inc. VT8233A ISA Bridge 00:11.1 IDE interface: VIA
Technologies, Inc. Bus Master IDE (rev 06) 00:11.2 USB Controller: VIA
Technologies, Inc. USB (rev 23) 00:11.3 USB Controller: VIA Technologies,
Inc. USB (rev 23)

This machine has been running for nearly a year flawlessly, no recent 
changes, and it is not connected to the internet, so this is why I think 
its a hardware issue - But where?

Any suggestions appreciated.

Thanks,

Scott

-- 
Scott Ragen
Support Manager/IT Administrator
Roadtech Systems
www.roadtech.com.au
PH: +61 2 9807 3516 FAX: +61 2 9808 5294
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

--
IMPORTANT NOTICES
This email (including any documents referred to in, or attached, to this
email) may contain information that is personal, confidential or the subject
of copyright or other proprietary rights in favour of Aristocrat, its
affiliates or third parties. This email is intended only for the named
addressee. Any privacy, confidence, copyright or other proprietary rights in
favour of Aristocrat, its affiliates or third parties, is not lost because
this email was sent to you by mistake.

If you received this email by mistake you should: (i) not copy, disclose,
distribute or otherwise use it, or its contents, without the consent of
Aristocrat or the owner of the relevant rights; (ii) let us know of the
mistake by reply email or by telephone (+61 2 9413 6300); and (iii) delete
it from your system and destroy all copies.

Any personal information contained in this email must be handled in
accordance with applicable privacy laws.

Electronic and internet communications can be interfered with or affected by
viruses and other defects. As a result, such communications may not be
successfully received or, if received, may cause interference with the
integrity of receiving, processing or related systems (including hardware,
software and data or information on, or using, that hardware or software).
Aristocrat gives no assurances in relation to these matters.

If you have any doubts about the veracity or integrity of any electronic
communication we appear to have sent you, please call +61 2 9413 6300 for
clarification.
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] Asking about NAT With Debian and tutorial about Firewall using iptables or ipchains

2003-10-22 Thread pesoy misak
Dear All

I have 3 computer that one of them I want to become my gateway. I have read about the Masquarding HOWTOs but i seems too difficult to be understood. My question is there anyone that could teach me using NAT or is there any good tutorials that could teach me about the masquaring. 

PS well I am using dial up anyway but I would willing to learn that could share with the cables as well in case of having one 

many thanks in advance
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] Asking about NAT With Debian and tutorial about Firewall using iptables or ipchains

2003-10-22 Thread pesoy misak

Dear All

I have 3 computer that one of them I want to become my gateway. I have read about the Masquarding HOWTOs but i seems too difficult to be understood. My question is there anyone that could teach me using NAT or is there any good tutorials that could teach me about the masquaring. 

PS well I am using dial up anyway but I would willing to learn that could share with the cables as well in case of having one 

many thanks in advance
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Asking about NAT With Debian and tutorial about Firewall using iptables or ipchains

2003-10-22 Thread Jeff Waugh
quote who=pesoy misak

 I have 3 computer that one of them I want to become my gateway. I have
 read about the Masquarding HOWTOs but i seems too difficult to be
 understood. My question is there anyone that could teach me using NAT or
 is there any good tutorials that could teach me about the masquaring. 
  
 PS well I am using dial up anyway but I would willing to learn that could
 share with the cables as well in case of having one 

If you want a quick start on Debian, just install the ipmasq module on your
firewall/gateway. It will automagically set up NAT to do the right thing! I
don't know where to find a really good intro document though, but perhaps
someone else will. :-)

- Jeff

-- 
linux.conf.au 2004: Adelaide, Australia http://lca2004.linux.org.au/
 
  Anyway - I need something more James Bond than Banana Man, if you know
   what I mean... - Tom Gilbert
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Error Messages - Hardware Issue

2003-10-22 Thread Darren Williams
Hi scott

There was a lot of discussion on this at LKML
http://lkml.org/

A quick search with 'Too much work at interrupt'

returned plenty, hopfully it will help.

Darren

On Thu, 23 Oct 2003, [EMAIL PROTECTED] wrote:

 Hi Sluggers,
 Last night a server died, and on reboot there are the following error 
 messages that constantly appear in the log:
 eth0: Too much work at interrupt, IntrStatus=0x0001.
 Oct 23 10:01:25 rrserver kernel: scsi0: PCI error Interrupt at seqaddr = 
 0x8
 Oct 23 10:01:25 rrserver kernel: scsi0: Data Parity Error Detected during 
 address or write data phase
 
 The eth0 error doesn't happen as often as the scsi error, I think it only 
 happens when someone tries to remotely connect to the server.
 The scsi error happens every 30 seconds or so, I guess this is becuase it 
 has a scsi hard drive.
 
 Output of lspci:
 00:00.0 Host bridge: VIA Technologies, Inc. VT8367 [KT266]
 00:01.0 PCI bridge: VIA Technologies, Inc. VT8367 [KT266 AGP]
 00:05.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 
 10)
 00:09.0 USB Controller: VIA Technologies, Inc. USB (rev 50)
 00:09.1 USB Controller: VIA Technologies, Inc. USB (rev 50)
 00:09.2 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 51)
 00:0c.0 VGA compatible controller: S3 Inc. 86c764/765 [Trio32/64/64V+] 
 (rev 44)
 00:0d.0 SCSI storage controller: Adaptec AIC-7892A U160/m (rev 02)
 00:0f.0 Ethernet controller: D-Link System Inc RTL8139 Ethernet (rev 10)
 00:11.0 ISA bridge: VIA Technologies, Inc. VT8233A ISA Bridge
 00:11.1 IDE interface: VIA Technologies, Inc. Bus Master IDE (rev 06)
 00:11.2 USB Controller: VIA Technologies, Inc. USB (rev 23)
 00:11.3 USB Controller: VIA Technologies, Inc. USB (rev 23)
 
 This machine has been running for nearly a year flawlessly, no recent 
 changes, and it is not connected to the internet, so this is why I think 
 its a hardware issue - But where?
 
 Any suggestions appreciated.
 
 Thanks,
 
 Scott
 
 -- 
 Scott Ragen
 Support Manager/IT Administrator
 Roadtech Systems
 www.roadtech.com.au
 PH: +61 2 9807 3516 FAX: +61 2 9808 5294
 -- 
 SLUG - Sydney Linux User's Group - http://slug.org.au/
 More Info: http://lists.slug.org.au/listinfo/slug
--
Darren Williams [EMAIL PROTECTED]
[EMAIL PROTECTED] www.gelato.unsw.edu.au
--
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Asking about NAT With Debian and tutorial about Firewall using iptables or ipchains

2003-10-22 Thread Jeff Allison
pesoy misak wrote:

Dear All
 
I have 3 computer that one of them I want to become my gateway. I have 
read about the Masquarding HOWTOs but i seems too difficult to be 
understood. My question is there anyone that could teach me using NAT 
or is there any good tutorials that could teach me about the masquaring.
 
PS well I am using dial up anyway but I would willing to learn that 
could share with the cables as well in case of having one
 
many thanks in advance

Do you Yahoo!?
The New Yahoo! Shopping 
http://shopping.yahoo.com/?__yltc=s%3A15443%2Cd%3A22708228%2Cslk%3Atext%2Csec%3Amail 
- with improved product search 
Look for tutourials near the bottom

http://www.netfilter.org/documentation/index.html#HOWTO

--
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Stock market software and WinXX

2003-10-22 Thread Alan L Tyree
 I trade using CommSec, viewed via Mozilla Firebird, and it works just
 fine.
 
 P.S. Buy Amalgamated Spats!!!

And I have used ComSec with Galeon - no problems. I hope that you have
your ASIC Financial Services Provider licence since you are offering
market advice!!

Cheers,
Alan

 
-- 
--
Alan L Tyree
http://www2.austlii.edu.au/~alan
Tel: +61 2 4782 2670
Mobile: +61 405 084 990
Fax: +61 2 4782 7092
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Stock market software and WinXX

2003-10-22 Thread Anthony Wood
  I trade using CommSec, viewed via Mozilla Firebird, and it works just
  fine.
  
  P.S. Buy Amalgamated Spats!!!
 
 And I have used ComSec with Galeon - no problems. I hope that you have
 your ASIC Financial Services Provider licence since you are offering
 market advice!!

No Alan,

he's not giving financial advice, he's talking about car parts.  See 
http://www.wood.id.au/valiant/spats/

cheers,
Woody

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] Recommended .com.au registrar

2003-10-22 Thread Matthew Palmer
I've got a couple of domains coming up for renewal in the next couple of
months, and don't particularly want to give another chunk of change to
Extortion IT.

Does anyone have any particular experiences, good or bad, with the rest of
the crop of registrars able to act directly for the .com.au registry?  I'm
interested in both kudos and brickbats anyone might have.

Thanks,
Matt
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] OT:24VDC PC UPS

2003-10-22 Thread Ulung Gurtala
This is slighltly off topic but I'm sure someone have come across a similar
problem and have a solution for it.

I have a 24vDC PC thats going in a truck. I want to ensure there is a reliable
power supply and ensure that if the power is interupted the pc will not
shutdown. I can source a 24v Battery with enough juice to run the pc for 15 min
when the truck ignition is off. What Iam unsure of is the wirring and other
electronic gear to ensure that whilst the truck is going (running) it is using a
regulated 24v of the trucks electrical system and trickle charging the battery
if it is not fully charged and if the truck ignition is off it uses the
batteries and allows the users to shut the system down gracefully.

Any help is appreciated.

Cheers

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


RE: [SLUG] OT: [C/C++/CPP] Is it possible to do ...

2003-10-22 Thread Tiwari, Rajnish
Hi All,
The example from Robert is quite good indeed. Learnt quite
a bit about macros.

I used the ideas from it and made a quickdirty solution
only to come up with a bug in the Sun CC compiler handling of
macros with __VA_ARGS__ and the operator -. (It drops the
 when the macro is expanded.) No suchproblems with gcc.

Thanks a lot to everyone.

Regards,
Rajnish

ps: For those interested, can try it out on the following code(tte):
/*
 * use either: gcc -E filename
 * or: CC -E filename
 * to see the difference.
 */
#include stdio.h

#define myprintf(str,...) printf(str,__VA_ARGS__);

struct foo {
int bar;
};

int main() {

foo* a = new foo;
foo-bar = 10;
myprintf(foo-bar=%d\n, foo-bar);

return 0;
}
 

::-Original Message-

::#define debugs(SECTION, LEVEL, CONTENT) \
::   do { \
::if ((Debug::level = (LEVEL)) = Debug::Levels[SECTION]) { \
::Debug::getDebugOut()  CONTENT; \
::Debug::finishDebug(); \
::} \
::   } while (/*CONSTCOND*/ 0)
::  
::
::
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Recommended .com.au registrar

2003-10-22 Thread Chris Deigan
It is said that Matthew Palmer wrote:
I've got a couple of domains coming up for renewal in the next couple of
months, and don't particularly want to give another chunk of change to
Extortion IT.

Does anyone have any particular experiences, good or bad, with the rest of
the crop of registrars able to act directly for the .com.au registry?  I'm
interested in both kudos and brickbats anyone might have.

In my experience, bottle domains are alright, not sure about payments
though -- however I've heard good things about them. (Bit pricey too,
but they match prices :-D)

 - Chris
[EMAIL PROTECTED]
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug