[SLUG] ipchains

2000-08-28 Thread [EMAIL PROTECTED]

hi all,

I have started setting up my firewall and have run into trouble with DNS
lookups.  I beleive that I have enabled DNS out but the log file says that
I am denying it.  The ISP's DNS servers are at 203.13.174.1 and
203.13.174.15.  All the requests for DNS Lookups are coming from squid on
port 1032 and going to port 53 on the ISP's end.  

What have I missed??

regards,
Linz



Chain output (policy DENY: 1118 packets, 301676 bytes):
 pkts bytes target prot opttosa tosx  ifname mark   outsize  source
destination   ports
0 0 ACCEPT tcp  -- 0xFF 0x00  ppp+   anywhere  
   0.0.0.0   any ->   0:www
0 0 ACCEPT tcp  -- 0xFF 0x00  anyanywhere  
   203.41.12.50  any ->   0:pop-3
0 0 ACCEPT tcp  -- 0xFF 0x00  any
203.41.12.50 anywhere  0:pop-3 ->   any
  228 16513 ACCEPT tcp  -- 0xFF 0x00  ppp+   anywhere  
   203.13.174.107any ->   0:webcache
7   659 ACCEPT udp  -- 0xFF 0x00  ppp+   anywhere  
   203.13.174.107any ->   0:icp

0 0 ACCEPT tcp  -- 0xFF 0x00  anyanywhere  
   203.13.174.15 any ->   0:domain
0 0 ACCEPT tcp  -- 0xFF 0x00  anyanywhere  
   203.13.174.1  any ->   0:domain

0 0 ACCEPT all  -- 0xFF 0x00  eth0   
192.168.1.0/24   eric.wdbc n/a
   79 11591 ACCEPT all  -- 0xFF 0x00  eth0   eric.wdbc 
   192.168.1.0/24n/a
   12  1008 ACCEPT icmp -- 0xFF 0x00  anyanywhere  
   anywhere  any ->   any
  826  373K ACCEPT all  -- 0xFF 0x00  lo anywhere  
   anywhere  n/a
  641 44366 DENY   all  l- 0xFF 0x00  anyanywhere  
   anywhere  n/a

Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.1:53 L=73 S=0x00 I=3144 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.15:53 L=73 S=0x00 I=3145 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.1:53 L=72 S=0x00 I=3146 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.15:53 L=72 S=0x00 I=3147 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.1:53 L=71 S=0x00 I=3148 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.15:53 L=71 S=0x00 I=3149 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.1:53 L=70 S=0x00 I=3150 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.15:53 L=70 S=0x00 I=3151 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.1:53 L=70 S=0x00 I=3152 F=0x T=64 (#12) 
Aug 29 12:10:22 eric kernel: Packet log: output DENY ppp0 PROTO=17 203.57.114.176:1031 
203.13.174.15:53 L=70 S=0x00 I=3153 F=0x T=64 (#12) 



Re: [SLUG] Indenting shell scripts under vim

2003-08-30 Thread [EMAIL PROTECTED]
> I've been using vim to edit shell scripts. Tonight, when I go to
> continue editing my files, I find that automatic indenting is off.
> 
> a) How the hell did this happen?
Not sure, but probably related to...

> b) How do I correct it?
:set ai

The colon tells vi(m) that you're about to give it a non-editing
command.
"set" (can be abbreviated to "se", for the impatient like me) tells it you
want to set a vim-environment variable
"ai" is short for "auto-indent"

You can, if you wish, use the full version of the variable name in your
.vimrc file, to save you scratching your head later and wondering what
that cryptic command does.
Or you could add a comment in there :)


Hope this helps.

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


Re: [SLUG] Linux Partition Resize

2003-09-02 Thread [EMAIL PROTECTED]
>   Uh.. one of the new partitions will house Rh8.0
>   and another  will be win2k. Please do suggest
>   things I must be on the lookout for (particularly
>   with win2k around - eg grub conflicts etc).

Repeating what I've been told:
Windows apparently has the endearing habit of assuming it'll be the
only OS on the machine, and dumps its own bootloader onto the MBR with
that assumption operating.

If you're planning to add RH8 on a third partition, it would make sense
to do that last. It's less arrogant, and willingly adds any other
OSes it finds into the bootloader config. That way, you'll get all three
installs selectable at boot.

I'll second the advice about having a rescue disk handy, though :)


I'll re-emphasise that this is hearsay, as I haven't dual-booted since
about 1998, and then only to add Linux onto a shiny new box.

Hope this helps.

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


Re: [SLUG] Colo somewhere *other* then Sydney CBD/North Sydney.

2003-09-02 Thread [EMAIL PROTECTED]
> After today's power problems in Sydney, My company is looking at
> implementing a backup system somewhere out of Sydney's CBD centers..
*smile* Oops - it _can_ happen to us!

> Anyone know of any companies which are reasonably priced with good
> bandwidth - but not in Sydney CBD / North Sydney?  Paramatta would be good.
Not sure how close it qualifies to North Sydny, but my employer (large,
faceless corporate monolith-type) uses space in a nice big facility in
West Pennant Hills. I can't recall offhand who owns/operates it, as my
team never need to go onsite, but will follow up in the next day or so
with details.
I'll find out what I can about their pricing deals, too.

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


Re: [SLUG] Colo somewhere *other* then Sydney CBD/North Sydney.

2003-09-05 Thread [EMAIL PROTECTED]
> > > Anyone know of any companies which are reasonably priced with good
> > > bandwidth - but not in Sydney CBD / North Sydney?  Paramatta would be good.
> > Not sure how close it qualifies to North Sydny, but my employer (large,
> > faceless corporate monolith-type) uses space in a nice big facility in
> > West Pennant Hills.
Jon Teh was right - it's IBM.
I wasn't able to get any details on pricing, so I can only suggest
calling them directly.

> I'm helping out with a group which is providing mostly web and mail
> services for a bunch of community and activist organisations.  They need
> to move their main server and are looking at options of where to move to.
If they're not overly concerned about being in the middle of Sydney,
Global Switch's colo facility may be worth a try.
I had a look around their building while it was being built, and it
looked OK to my relatively untrained eye. One interesting feature was
their "kinetic interim power supply" (or terms to that effect) - a
multi-ton concrete cylinder which is kept spinning at some intimidating rate.
When the power supply fails, its motor turns into a generator which
supplies current until the UPS batteries and/or generators take over.

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


Re: [SLUG] Connecting a Mac to a Linux box masquerading a ppp0 connection

2003-09-05 Thread [EMAIL PROTECTED]
> I want to set up the old Mac PPC to access the internet (dial-up) through 
> the Linux box. Where do I start reading?

Terse version:
man pppd
man wvdial
man minicom
man iptables


Slightly more verbose version:

pppd is the point-to-point protocol daemon, which can be started
manually via minicom or the like, or can be set up in dial-on-demand
mode, to automatically connect when internet-bound packets are
received, and then (optionally) log off again after a specified period
of inactivity.

wvdial is a well-regarded programme for driving pppd. I've never used
it myself, but it's certainly recommended often enough.

iptables takes care of two jobs for you: firewalling, and masquerading.
I can assure you it does a good job of both.


-- 
Hoping this helps,
James
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] slug archive searching seriously broken

2003-09-09 Thread [EMAIL PROTECTED]
> I've been casting around for search engines recently.
> swish-e (Simple Web Indexing System for Humans - Enhanced.)
> lookss pretty good.
We use that for a couple of our sites. It works pretty well, but has
been known in the past to go berserk and nail the CPU indefinitely.
I don't know what the trigger conditions were (possibly recursive
links), and it hasn't happened for quite some time, so I'd rate it as
a minimal risk.

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


Re: [Fwd: RE: [SLUG] Oracle over NFS]

2003-09-09 Thread [EMAIL PROTECTED]
> > The shared aspect is the key.  2 boxes both able to access the data
> > (oracle and application failover), otherwise I'd disk array it.

What about a SCSI array shared between a pair of servers, with a cable
to each?
I've seen this operating as a very clean failover system between a pair
of Netware boxes. I have no idea how Oracle would deal with it, though.

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


Re: [SLUG] Xine is AWOL

2003-09-15 Thread [EMAIL PROTECTED]
> Hi all,
Hi there,

> Installed Xine, but can't find it.  I have been searching for the ".exe"
> for xine.  
You'll be out of luck, then. Linux, like all other forms of Unix,
doesn't need or use a .exe suffix to identify an executable file.
The executable for Xine, as it happens, is generally just called
"xine".
Most files contain a "magic number" that identifies their type, leaving
you free to call them whatever you want. You'll find suffixes here and
there, but they're mostly for convenience.

> Using Redhat 9.0 (why else would I have to install Xine!)
Errm... because you're one of us difficult types that prefer to compile
things from source?

> Any pointers?
Yup. Try "locate xine". locate is a very handy utility; it searches
through a database to find files, instead of crunching its way through
your entire filesystem. While this is vastly faster (and less noisy),
the catch is that the database isn't updated in realtime; instead, a
programme called "updatedb" is run every day or so to do that.
locate returns everything that contains a matching string, though, so
you may find yourself wading through a few screenfuls of results.
"locate xine | more" allows you to check it a screenful at a time, if
you don't feel like scrolling back up.


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


[SLUG] Kazanmanin keyfini bahisnet.net 'le yasayin!

2003-10-10 Thread [EMAIL PROTECTED]
Title: Eng_Tur





  




  


  



  

  


  

  

  

  

  


  

TURKİYE - İNGİLTERE MACI 11 EKİMDE
Grup liderini belirleyecek onemli macta, Turk
sporseverler, yuksek bilet fiyatlarına rağmen karşılaşmaya buyuk
ilgi gosterdi. 42 bin koltuk kapasitesi olduğu acıklanan Fenerbahce
Şukru Saracoğlu Stadı'nda yapılacak karşılaşmanın biletlerinin
tamamı, dev maca 2 hafta kala satıldı. Bilet satışlarından
yaklaşık 2.5 trilyon liralık gişe hasılatının elde edildiği
oğrenildi.


Sitemize uye olarak hem macın hem de kazanmanın
keyfini YAŞAYIN!!! 


Turkiye - İngiltere macının hemen ardından lig
heyecanı tekrar başlıyor!


  

  C. Rizespor -
  GalatasarayGalatasaray, Rize deplasmanında
  puan arıyor.

  
  Beşiktaş -
  DiyarbakırsporBeşiktaş kendi evinde, başarılı
  bir sezon gecirmeyen Diyarbakırspor'la karşı karşıya.
  
  

  Denizlispor -
  TrabzonsporTrabzonspor, ligin
  başarılı takımlarından Denizlispor ile puan savaşında.


  Bursaspor -
  Fenerbahceİyi bir sezon geciren Fenerbahce,
  Bursa'da 3 puana ulaşabilecek mi?
  


Bunlarla birlikte butun Turkiye Super
Ligi maclarını ve Dunya'daki onemli diğer tum karşılaşmaları www.bahisnet.net 'te bulabilir, sonucları
tahmin edebilir ve
  KAZANABİLİRSİNİZ!
  
  

  
  

  
  
  Bahis.Net KMS-Betshop lisansı ve guvencesiyle hizmet
  vermektedir.Bizden mail
  almak istemiyorsanız lutfen buraya
  tıklayınız.
  










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


[SLUG] Kazanmanin keyfini bahisnet.net 'le yasayin!

2003-10-17 Thread [EMAIL PROTECTED]
Title: bulten





  


  

  


  Tum dunyadaki spor karşılaşmalarını
  takip edebileceğiniz, eğlenirken kazanabileceğiniz, kazanırken guven
  duyabileceğinizwww.bahisnet.net yayına girdi. Kısa bir sure
  sonra Şans Topu, Sayısal Loto ve On Numara zevkini sitemizden
  yaşayabileceğiniz gibi at yarışlarını da takip ederek kazancınıza kazanc
  katabileceksiniz! 
   

  

  LİG HEYECANI DEVAM
  EDİYOR!TIKLAYIN!NE KADAR KOLAY
  KAZANABİLECEĞİNİZİTEST EDİN!  
  


  
C.
Rizespor - GalatasarayGalatasaray, Rize
deplasmanında puan arıyor.
  

Beşiktaş -
DiyarbakırsporBeşiktaş kendi evinde, başarılı bir
sezon gecirmeyen Diyarbakırspor'la karşı karşıya. 

  
Denizlispor -
TrabzonsporTrabzonspor, ligin başarılı
takımlarından Denizlispor ile puan savaşında. 
  
Bursaspor -
Fenerbahceİyi bir sezon geciren Fenerbahce,
Bursa'da 3 puana ulaşabilecek mi?

  Sitemize
  Uye Olun Kazanmanın Keyfini Yaşayın! 
  

  İşte Bu Haftanın Oranları :
  
  


  C.Rizespor - Galatasaray 
  
4.65
  
3.45
  
1.70 

  Beşiktaş - Diyarbakırspor
  
1.12 
  
6.30
  
20.00

  Bursaspor - Fenerbahce 
  
5.00
  
3.50
  
1.65 

  Denizlispor - Trabzonspor 
  
2.10
  
3.30 
  
3.30

  Adana - Konya 
  
2.00
  
3.25
  
3.60

  Ankaragucu - Elazığ 
  
1.50
  
3.65
  
6.50

  Akcaabat Sebat - Genclerbirliği 
  
3.80
  
3.30
  
1.90

  Malatya - İstanbulspor 
  
1.90
  
3.25
  
4.00

  Samsunspor - Gaziantepspor
  
2.35
  
3.25
  
2.75
  
  
  Bunlarla birlikte butun Turkiye Super Ligi
  maclarını ve Dunya'daki onemli diğer tum karşılaşmaları www.bahisnet.net 'te bulabilir, sonucları tahmin
  edebilir ve KAZANABİLİRSİNİZ!
   
  

  




Bizden mail almak istemiyorsanız lutfen buraya tıklayınız.



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


[SLUG] No Keyboard in X

2003-10-26 Thread [EMAIL PROTECTED]
I shutdown on Friday. Came in this morning and fired up.

The keyboard won't connect in X, although it does in the console.

I can't work it out. Perhaps someone came in and, being baffled 
by the linux login, decided to muck around in the bios. I've 
changed a few keyboard settings there (K7), to no effect.

I have another installation on a small partition for testing 
purposes. Strangely the keyboard won't work there either in X.

Any suggestions as to possible fixes?

Any ideas would be appreciated.

Nick


mail2web - Check your email from the web at
http://mail2web.com/ .


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


Re: [SLUG] No more Red Hat Linux support after April 30 2004 - Quick Survey

2003-11-04 Thread [EMAIL PROTECTED]
> If you haven't heard the news, Red Hat will no longer provider errata
> updates for RHL after April 30 next year.
> 
> So a quick survey among Red Hat SLUGgers. I'm a long time RH user
> currently with a few RH9 machines. So where are you going to go to?
> 
> 8) Something else

I'm a longtime RedHat user, but have been starting to move away for a
different reason. I've tried other distros (Mandrake, Debian and
Slackware), but have felt most at home with RH.

However, being a fussy git and having taken an interest in trimmming
down the bloat that's crept in, I've been driven to developing my own
distro based on Linux From Scratch.
Periodically discovering that rpm's database had gone and corrupted
itself yet again was aggravating, but realising that RH wants all of
OpenLDAP installed just to change passwords was the final straw.

It's not easy, or quick, but will give me _precisely_ the system I want,
with no extra trimmings. Plus, I'm developing a depth of system
knowledge whose surface I'd barely scratched in 5 years as a
user/tweaker.

It helps that the machines in question are my own home boxes, with
nobody else relying on them.


Regards,
James

-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


[SLUG] Re: ADSL modem

2003-11-08 Thread [EMAIL PROTECTED]


* Original Message:
-
> From: Grant Parnell [EMAIL PROTECTED]
> Date: Sat, 8 Nov 2003 14:49:34 +1100 (EST)

> I have an original Alcatel SpeedTouch laying around ...
> I was thinking $100?

> I'm in Five Dock ...
> Also, you can order a new PCI card for $132.00

Thanks for that Grant. I called past eLinux and considered the PCI card,
but given the number of variables and obstacles with the static IP 
account I have with TPG, I pressed on and ended up at the Dick Smith
SuperStore in Chatswood, where the D-Link DSL-300G, normally $169 was 
going for $129 packaged up as an OzEmail starter kit.

It took couple of hours of boogling to get recognised by tpg. Anyway 
I'm up and running and writing from the router box now, next step is to get 
the workstation on the scene. (Hence the strange format of this email).

Thanks for the kind offer. It's still a temptation, but I'm sure it's in
good hands.

Nick


mail2web - Check your email from the web at
http://mail2web.com/ .


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


[SLUG] Continuation of PPP woes.

2003-11-18 Thread [EMAIL PROTECTED]
G'day all...

I'm still having some PPP woes. PPP doesn't always reconnect properly upon
reboot - which then causes squid to fall-over - and sometimes PPP falls
over by itself and doesn't manage to reconnect. If it was just for me, it'd
be ok, as I can fix it - but its for an organisation I volunteer for, so it
causes drama when I'm not around and they can't access the internet. I need
to create a solution so that it automagically corrects itself, or the fault
is prevented from happening. At this stage I'm not sure where the fault
lies. (Eg. The line itself, SwiftDSL or our server.)

I tried putting "MAXFAIL=0" into the options file for the device which
someone else suggested. (Sorry, can't remember who, but thanks for their
help.) Unfortunately this has only helped marginally, and the problem
persists.

Attached is a cut down version of the /var/log/messages file from the
machine. (IP addresses have been blanked out.) I've tried to diagnose the
fault myself, but I'm not really that au-feaux (sp) with PPP - I'd
really appreciate a hand on this one.

Many thanks and all the best.

Mike Kraus



mail2web - Check your email from the web at
http://mail2web.com/ .

Nov 17 12:25:48 rosebud network: Bringing up interface ppp0:  failed 
Nov 17 12:25:58 rosebud pppd[2177]: Connection terminated.
Nov 17 12:25:58 rosebud pppd[2177]: LCP: timeout sending Config-Requests 
Nov 17 12:26:02 rosebud pppd[2177]: Exit.
Nov 17 12:26:02 rosebud pppoe[2178]: Timeout waiting for PADS packets
Nov 17 12:35:01 rosebud pppd[2918]: Connect: ppp0 <--> /dev/pts/0
Nov 17 12:35:01 rosebud pppd[2918]: pppd 2.4.1 started by root, uid 0
Nov 17 12:35:01 rosebud pppd[2918]: Using interface ppp0
Nov 17 12:35:02 rosebud /etc/hotplug/net.agent: assuming ppp0 is already up
Nov 17 12:35:02 rosebud pppoe[2919]: PPP session is 6178
Nov 17 12:35:05 rosebud pppd[2918]: local  IP address ***.***.***.*
Nov 17 12:35:05 rosebud pppd[2918]: primary   DNS address ***.**.**.**
Nov 17 12:35:05 rosebud pppd[2918]: remote IP address ***.***.**.***
Nov 17 12:35:05 rosebud pppd[2918]: secondary DNS address ***.***.**.**
Nov 18 16:58:43 rosebud adsl-stop: Killing adsl-connect
Nov 18 16:58:43 rosebud adsl-stop: Killing pppd
Nov 18 16:58:43 rosebud pppd[2918]: Terminating on signal 15.
Nov 18 16:58:44 rosebud pppd[2918]: Connection terminated.
Nov 18 16:58:44 rosebud pppd[2918]: Connect time 1703.7 minutes.
Nov 18 16:58:44 rosebud pppd[2918]: Sent 2052513 bytes, received 28330500 bytes.
Nov 18 16:58:44 rosebud pppoe[2919]: read (asyncReadFromPPP): Session 6178: 
Input/output error
Nov 18 16:58:44 rosebud pppoe[2919]: Sent PADT
Nov 18 16:58:45 rosebud pppd[2918]: Exit.
Nov 18 16:59:06 rosebud pppd[4481]: Connect: ppp0 <--> /dev/pts/0
Nov 18 16:59:06 rosebud pppd[4481]: pppd 2.4.1 started by root, uid 0
Nov 18 16:59:06 rosebud pppd[4481]: Using interface ppp0
Nov 18 16:59:07 rosebud /etc/hotplug/net.agent: assuming ppp0 is already up
Nov 18 16:59:07 rosebud pppoe[4482]: PPP session is 6631
Nov 18 16:59:10 rosebud pppd[4481]: local  IP address ***.***.***.*
Nov 18 16:59:10 rosebud pppd[4481]: primary   DNS address ***.***.**.**
Nov 18 16:59:10 rosebud pppd[4481]: remote IP address ***.***.**.***
Nov 18 16:59:10 rosebud pppd[4481]: secondary DNS address ***.***.**.**
Nov 18 17:05:56 rosebud adsl-connect: ADSL connection lost; attempting re-connection.
Nov 18 17:05:56 rosebud adsl-stop: Killing adsl-connect
Nov 18 17:05:56 rosebud adsl-stop: Killing pppd
Nov 18 17:05:56 rosebud pppd[4481]: Connection terminated.
Nov 18 17:05:56 rosebud pppd[4481]: Connect time 6.9 minutes.
Nov 18 17:05:56 rosebud pppd[4481]: Exit.
Nov 18 17:05:56 rosebud pppd[4481]: Sent 462 bytes, received 378 bytes.
Nov 18 17:05:56 rosebud pppd[4481]: Terminating on signal 15.
Nov 18 17:05:56 rosebud pppoe[4482]: read (asyncReadFromPPP): Session 6631: 
Input/output error
Nov 18 17:05:56 rosebud pppoe[4482]: Sent PADT
Nov 18 17:06:04 rosebud pppd[4788]: pppd 2.4.1 started by root, uid 0
Nov 18 17:06:05 rosebud /etc/hotplug/net.agent: assuming ppp0 is already up
Nov 18 17:06:05 rosebud pppd[4788]: Connect: ppp0 <--> /dev/pts/0
Nov 18 17:06:05 rosebud pppd[4788]: Using interface ppp0
Nov 18 17:06:05 rosebud pppoe[4789]: PPP session is 6639
Nov 18 17:06:08 rosebud pppd[4788]: local  IP address ***.***.***.*
Nov 18 17:06:08 rosebud pppd[4788]: primary   DNS address ***.***.**.**
Nov 18 17:06:08 rosebud pppd[4788]: remote IP address ***.***.**.***
Nov 18 17:06:08 rosebud pppd[4788]: secondary DNS address ***.***.**.**
Nov 18 17:08:48 rosebud adsl-stop: Killing adsl-connect
Nov 18 17:08:48 rosebud adsl-stop: Killing pppd
Nov 18 17:08:48 rosebud network: Shutting down interface ppp0:  succeeded
Nov 18 17:08:48 rosebud pppd[4788]: Connection terminated.
Nov 18 17:08:48 rosebud pppd[4788]: Connect time 2.8 minutes.
Nov 18 17:08:48 rosebud pppd[4788]: Exit.
Nov 18 17:08:48 rosebud pppd[4788]: Sent 114 bytes, received 114 bytes.
Nov 18 17:08:4

[SLUG] Sampiyonlar Ligi heyecani tum hiziyla devam ediyor!!!

2003-11-24 Thread [EMAIL PROTECTED]
Title: Sampiyonlar Ligi heyecani tum hiziyla devam ediyor!!!




  

	
		

			
		
			
	
	
		

			
		


		

			
		
			
	
	
		
			
		
			
	
	
		

Bahisnette
Oyna Kazan!  ŞAMPİYONLAR LİGİNDE Anderlecht-Lyon 
Celtic-Bayern  Internazionale-Arsenal Lokomotiv Moskova-Dynamo
Kyiv  Deportivo-AEK  Monaco-PSV  Olympiyakos-Real
Sociedad maclarının oranları BAHİSNET ile OYNAYIN KAZANIN!!!


		
			
		
			
	
	
		
			
		
			
	
	
		
			
		
			
		

			
		
			
		
			
	
	
		
			
		
			
	
	
		

			
		

			
		
			
		

			
		
			
		
			
	
	
		
			
		
			
	
	
		

			
		
			
		

			
		
			
	
	
		
			
		
			
	
	
		

			
		
			
	
	
		
			
		
			
	
	
		

			
		
			
	
	
		
			
		
			
	
	
		

			
		
			
	
	
		
			
		
			
		
			
		
			
	
	
		

			
		
			
	
	
		
			
		
			
		
			
		
			
		
			
		
			
		
			
		
			
		
			
		
			
		
	

  

Bizden mail almak istemiyorsanız
lutfen buraya tıklayınız.
 



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


Re: [SLUG] keys for digital signature

2003-11-29 Thread [EMAIL PROTECTED]
> HOw do you go about getting keys for digital signatures?
gnupg --keyserver  --recv-key 

Where  is usually one of us.wwwkeys.pgp.net,
gnv.us.cryptnet.net or us.keyserver.net. I'm sure there are servers in
Australia, but I stopped looking after I found a few that tend to do the
job between them.

One gotcha is that they sometimes want a 0x prefix on the key. I'm too
lazy to find out why, and just try it both ways in the hope that one
will work.
And yes, you can quote me out of context on that :)

Sometimes you can download a textfile containing signatures, in which
case it's a simple
gpg --import /path/to/key

If you're using something other than GnuPG, however, I'll bow to the
expertise of anybody who knows what they're on about.



Cheers,
James

-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] good cd burning software?

2003-12-03 Thread [EMAIL PROTECTED]
> any recommendations on a good piece of cd burning software, i'm using 
> k3b and not liking it very much :(

It depends on whether you prefer GUI or CLI. My own choice is mkisofs +
cdrecord, as between them they take care of everything I need them to
do.

On the GUI side, there's X-CDroast, at www.xcdroast.org. I used to use
this quite a bit, until I became comfortable with the command-line
stuff.


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] good cd burning software?

2003-12-04 Thread [EMAIL PROTECTED]
>  XCDRoast is one of the few apps
> that makes GUI buring more difficult than just running the command line
> tool.
Aha! Maybe that's why it seemed so natural to switch :)


James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] mutt and sendmail.

2003-12-13 Thread [EMAIL PROTECTED]
> the reason for this statement is because I'd like to get mutt and sendmail
> to play nice.
I'll risk starting a flamewar here - have you looked at Postfix?
The reason I bring this up is not bigotry but rather that I've found it
much easier to configure than sendmail.
I also use mutt+postfix+fetchmail to handle mail over dialup, so can
actually be of help with such a setup.

> I'm using slackware 9.1 as I decided to give it a shot today.
Haven't tried slack in quite some time, so don't recall whether it
includes postfix with the distribution.
If not, ignore this post :)


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] Turn off annoying auto-search in Mozilla

2004-01-09 Thread [EMAIL PROTECTED]
> If you use Mozilla, you might have discovered the "feature" in Mozilla which
> e.g. decides that when you say you want to go to a URL like
> "localhost:1234", that you really mean "http://www.localhost.net.au/";.  
> 
> You can turn this behaviour off by going to the URL "about:config", finding
Thankyou! Thankyou very much!


James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] ls sort order askew

2004-01-12 Thread [EMAIL PROTECTED]
> What is it that determines the order that files/directories are sorted 
> by the ls command?
A combination of things, including aliases. Those and locale settings.

I suffered the same problem, and it turned out to be the LANG setting
(locale-related).
Putting "unset LANG" in my .bashrc file set things back the way I like
them: case-sensitive, and paying attention to the leading dot.
Hopefully, this will help you as well.

 
> Would anyone like any toast?
Thanks, but I already have dinner on the way.


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] So Linux is American.....read on!

2004-02-16 Thread [EMAIL PROTECTED]
> Drivel is a profoundly Australian word.
Really? It's very well known in England and NZ as well. I always thought
it was Commonwealth-wide slang.
It'll still probably confuse the poor, freedom-loving American underdog,
either way.

The really sad thing is that they probably _are_ leaders of the free
world. The problem is where they're leading us...


James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Press request: Legitimate uses of P2P

2004-02-18 Thread [EMAIL PROTECTED]
> I used a web browser once and I believe there was no globally
> centralised server involved at any point.  Does that count?
Not unless you use a very loose definition of "p2p" - it's a
client-server technology.

Decentralised != p2p


James the cranky
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Press request: Legitimate uses of P2P

2004-02-18 Thread [EMAIL PROTECTED]
> On Thu, 19 Feb 2004, [EMAIL PROTECTED] wrote:
> 
> > > I used a web browser once and I believe there was no globally
> > > centralised server involved at any point.  Does that count?
> > Not unless you use a very loose definition of "p2p" - it's a
> > client-server technology.
> >
> > Decentralised != p2p
> 
> Zeroconf, APIPA, SMB browsers elections, etc. aren't client server
> technology. They could be considered peer to peer...

Fair call. I was specifically referring to web browsers/servers, and
haven't met either Zeroconf or APIPA.
The very terse line that followed was an abbreviated form of, "being
decentralised doesn't necessarily mean it's a peer-to-peer system."


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Qestion about configure

2004-02-20 Thread [EMAIL PROTECTED]
> I haven't used the configure tool much before while building from source 
> and am wondering if I want to configure in new options or change old 
> ones do I need to include all the origional configuration options I used 
> or will it 'remember' these and just add or change the new options I use?

This probably won't help you much with whatever you're compiling right
now, but has long-term benefits:

I've gotten into the habit of creating a file called "configure.script",
and putting the configure line in there. Remember to set the executable
bit (chmod u+x configure.script) and invoke that script.

This is something I've learned from running into your exact problem too
many times. It's also great for refining the configure arguments when
something goes pop partway through the compile.

And yes, I even wrote a script to back up all my configure.script files.
Saves much time when (re)building machines, as well as when compiling an
upgraded version.


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Remote keyboard/mouse combo

2004-02-20 Thread [EMAIL PROTECTED]
> If you've seen a remote keyboard mouse combo, I'd love to know - my
> searching has so far been fruitless.

Took a while to find out the make and model, but I've seen a Chicony
KB-9820 in reasonably effective use. IR communication, mouse-type disc
on the RHS of the keypad, and L/R mouse keys to the left.


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] anti virus tool

2004-02-23 Thread [EMAIL PROTECTED]
> John, Jeff, of course I meant him... There are too many j-names in this
> thread.  James, you are not allowed to reply to this message.
But I haven't said a word in the whole thread!


James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Thank you for your email to Hender Consulting

2004-03-04 Thread [EMAIL PROTECTED]
This is an automatically generated response.  Please do not reply to this
e-mail.

 

Unless otherwise advised Hender Consulting will direct all email
correspondence to this address.

 

Thank you for your details which we accept subject to our Privacy/Collection
Statement below.  

 

We will be in touch with you again.

 

 

PRIVACY / COLLECTION STATEMENT

 

Statement of commitment 

 

Hender Consulting is committed to protecting an individual's right to
privacy and to full compliance with its obligations under the Privacy Act
1988 (Cth) as amended by the Privacy Amendment (Private Sector) Act 2000
(Cth) ("Act"). In particular, Hender Consulting will comply with the
National Privacy Principles contained in the Act. This Privacy/Collection
Statement explains some of these Principles and how they may apply to you. 

 

What is personal information?

 

Personal information is any information or an opinion (whether true or not)
about you. It may range from the very sensitive (e.g. medical history or
condition) to the everyday (e.g. address and phone number). It would include
the opinions of others about your work performance (whether true or not),
your work experience and qualifications, aptitude test results and other
information obtained by us in connection with your possible work placements.
Sensitive information can, in most cases, only be disclosed with your
consent. 

 

How will your information be collected? 

 

Personal information will be collected from you when you submit any
information in connection with your application to us for registration or
when you fill out and submit one of our registration forms. 

 

Personal information will also be collected when: 

 

* you attend an interview with one of our staff or are interviewed
by other means by one of our staff; 

* we receive any reference about you; 

* we receive results of inquiries that we might make of your former
employers, work colleagues, professional associations or registration body; 

* we receive the results of any competency or medical test; 

* we receive performance feedback (whether positive or negative); 

* we receive any complaint from or about you in the workplace; 

* we receive any information about a workplace accident or incident
in which you are involved; 

* we receive any information about any insurance investigation,
litigation, registration or professional disciplinary matter, criminal
matter, inquest or inquiry in which you are involved; 

* we receive a response from a job advertisement either written,
verbal or email; 

* we receive the outcomes of a psychological assessment; 

* you provide us with any additional information about yourself
including banking, taxation, superannuation and other details in relation to
the payroll function. 

 

You can visit our website and browse without the need to disclose any
personal information. You may forward an email to us via the email link in
our website. The information collected through this email will only be used
for the purpose for which you have provided it. We will add your details to
our database, unless you have specified that we do not do so. We will not
disclose or use your information for any other purpose other than the
intended one. 

 

How will your information be used? 

 

Your personal information may be used in connection with: 

 

* your actual or possible work placement; 

* payment for work completed on a temporary/contract assignment; 

* your performance appraisals; 

* our assessment of your ongoing performance and prospects; 

* any test or assessment (including medical tests and assessments)
that you might be required to undergo; 

* our identification of your training needs; 

* any workplace rehabilitation; 

* our management of any complaint, investigation or inquiry in which
you are involved; 

* any insurance claim or proposal that requires disclosure of your
personal information. 

 

Who may your personal information be disclosed to? 

 

* potential and actual employers and clients of Hender Consulting; 

* referees; 

* other areas of Hender Consulting; 

* our insurers; 

* a professional association or registration body that has a proper
interest in the disclosure of your personal information; 

* a Workers Compensation body; 

* our contractors and suppliers - e.g. our I.T. contractors,
database designers, payroll, superannuation, insurance and WorkCover
providers; 

* any person with a lawful entitlement to obtain the information. 

 

If you do not give us the information we seek 

 

If you do not give us the information we seek: 

 

* we may be limited in our ability to locate suitable work for you; 

* we may be limited in our ability to place you in work. 

 

Security of your per

Re: [SLUG] MTA for laptop

2004-03-10 Thread [EMAIL PROTECTED]
> > I have an old Compaq Armada currently running Debian Woody...
> > Question is a good lightweight MTA for it.
> For MTA, you might want to try lightweight stuff like nullmailer. Personally,
> I find Postfix light enough to use on my laptop.
Seconded on Postfix - works nicely with mutt on my own laptop, with
minimal load.
I haven't used nullmailer, but will probably also do what you want.


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] A valid analogy.

2004-03-14 Thread [EMAIL PROTECTED]
> >Evolution theory is based on getting better from NON intelligence. 
> >Intelligence is NOT in the equation.
> Oh no. So you're a creationist then?

This isn't necessarily implied. It looks to me like he's just
distinguishing between biological evolution (as in the Origin of Species
etc.) and the process that's producing Linux et al.

The key difference is that the biological model assumes almost purely
random input, whereas the variations in "software evolution" are the
product of intention; they're targeted.
Where the important similarity in the patterns of variation lies is that
the software process involves many changes by people with greatly
varying intentions - and, let's face it, degrees of skill.
It's been a while since I've done any statistical work in anger, but I'm
pretty sure that the variation to be found in "software evolution," if
looked at without regard to its origins, would look very much like
noise. That is, close to random, at least over short time-scales.

The defining common factor for me, though, is that the key mechanism for
both systems is that improvements _tend_ to be retained, and unhelpful
aspects _tend_ to be removed.


> >>were the fittest and most diverse survive.

Typo aside, the latter assertion is an exaggeration. Too much diversity
in software results in incompatibility; too much in a living species
results in the inability to breed. The result in both cases is that the
population is divided into more than one incompatible sub-groups. Either
that or they die out.



> >>Were windows has a forced
> >>evolutionary development based on what sells software.
Much as I hate to admit it, it's worked pretty well in respect of that
goal. It could be argued that its evolution has been quite successful to
date. Whether it can handle what looks like a coming ice-age is probably
a subject for slug-chat.


Cheers,
James
-- 
...so there I am at ten thousand feet with a power drill in one hand, a
takeaway menu in the other, no parachute and a _very_ suprised
expression...


pgp0.pgp
Description: PGP signature
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] bt878 instability

2004-04-13 Thread [EMAIL PROTECTED]
I've a pc with a bt878 chipset video card. I'm running 2.4.22 kernel 
(mdk 9.2) and am having stability issues with the card locking up the 
desktop often.

Reading the website leads me to believe that upgrading to a 2.6 kernel 
with the 0.9 module release (2.4 only goes to 0.7) might be the way to go.

Has anyone done this and if so, is is more stable?

TIA

Stuart
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] umask & kde

2004-04-15 Thread [EMAIL PROTECTED]
I'm getting a weird error for users on a kde desktop network.

The umask I set in /etc/profiles and /etc/bashrc  is not being honoured 
in the GUI but if I run an xterm and vi a new file for the same user on 
the same desktop, the umask permissions for the new file are created 
correctly.

I was wondering if kde has it's own umask settings in some obscure 
config file or its some other network thingo.

The other complicating factor is that the client desktop is 'fat client' 
with autofs enabling nfs shares for their home directory.

No clever PAM ldap stuff just straight passwd authentication.

Should I be fiddling with NFS mount settings?  (They are rw for users).

Stu
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Re: building pvr

2004-04-18 Thread [EMAIL PROTECTED]
I've got a nova-t on a via 10K. It's a good card, no lockups so far but 
I still haven't got mythtv going. More a time issue than anything else.

You need linuxtv-dvb. I've heard it's built into 2.6 kernel but the 
media box is a 2.4 kernel - works OK anyway.

The nova-t is around $200 with no MPEG decode it that helps. The Via 10K 
boards have mpeg decoding built in but its a bitch to get going. There 
is a binary version on Xine that does it.

PVRs from my experience suck up a long of time.

HTH

Stu

Michael F wrote:

I'd actually recommend going with a DVB-T card. All TV 
stations now broadcast as an MPEG-2 stream as well as 
analogue, and the picture quality far exceeds that of any 
analogue card I've seen. There is zero interference from the 
internals of the PC.

Most cards work well under linux. I've been using the 
hauppauge nova-t card for a while in a remote (> 10,000km) 
box, and have never had a fault with it, even though i record 
shows almost daily.
   

I am either going to get the nova-t or the visionplus, but still very
undecided. I guess I will have to do more research. What distribution do you
run on your linux machine acting as the PVR?
Can those who have a working unit point me to some docs to read up on it and
also maybe lead me to several applications used on the machine acting as the
PVR etc. I've got a spare Celeron 2.4Ghz machine here and hey if I get
either pci card, might put the card in the machine and install linux to
experiment myself.
Any links and feedback appreciated.

 

--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] revisiting a hot topic (accounting systems)

2004-05-10 Thread [EMAIL PROTECTED]
Quoting Dave <[EMAIL PROTECTED]>:

On a scale of 0 - 10,I rate this software to be 9 as
bookeeping and financial tool.
Being double entry is a plus and helps with operational
and financial accuracy.
A word of extreme caution: Security wise I rate this
software 1 on a scale of 0 - 10. For current users of
this software you will notice that username and
password are displayed as plain text (encryted version)
 on the http address and bottom panel. Defeats the purpose
of having user logging with password to secure the
application. I will never use as multi-user financial
tool as it is. This is a critical problem with this
package. It can be fixed of course.


Hi all,

I use sql-ledger as well. http://www.sql-ledger.com/

It does GST and PST for Canada eh! But probably can be used for
Australian GST without too much trouble.
It should be able to apply on the same invoice taxable and non-taxable
items/services. Each part or service you setup you can specify if it is
taxable.
--
Dave Peters


On Sun, May 09, 2004 at 05:06:52PM +1000, David wrote:


On Sun, 9 May 2004, Hugh Madden wrote:

> Hi all,
> I realise this thread was done to death a few years back.
>
> Anyway, perhaps the situation has improved.
>
> I resent having to purchase myob or quicken and vmware simply to keep
> track of my finances.
>
> I'm wondering how to go about:
> BAS/STS/depreciating assets
>
> GNU Cash looks pretty awful in respect to GST.
I've been using SQL-Ledger now for two years (two tax returns). It does
the basic double entry accounting perfectly. It's a very active open
source project with new releases coming all the time.
It does GST very well - albeit with some problems relating to single
invoices with mixed taxable/non-taxable items. I get around that without
too much hassle, and in any case it's not all that common a situation.
It doesn't do depreciation. That's something your accountant does (or
yourself if you are smart enough).
I highly recommend it. It's not perfect, but it's very good, bug-free and
improving constantly. It's better than MYOB (which i used previously) and
even if you pay for the support it's cheaper. It's written in
Perl/Postgres. I believe you can even run it on Windows, so you can keep
you vmware going if you wish ;-)


>
> Is there any good open office spreadsheets floating around, or have any
> of the open source projects started to support australia tax?
>
> There must be a couple of hundred thousand home rolled systems around
> australia, why aren't any of them open source and shared?
>
> cheers,
> Hugh
>
>
> --
> SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
> Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
>
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html



This message was sent using IMP, the Internet Messaging Program.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] seg fault on df

2004-05-06 Thread [EMAIL PROTECTED]
Quoting Ramon Buckland <[EMAIL PROTECTED]>:
Learn more why this is so by using commands 'ldd' and 'strace' like this:
#ldd /bin/df
#strace /bin/df

Hi,
sometime in the past month, I performed an upgrade
to my unstable debian. (apt-get update/upgrade) and possibly (i can't
remember, a dist-upgrade.
I'm now getting a seg fault on a few commands., but repeatable is
when attempting to run df.
Can anyone suggest a way I can resolve the issue? My ultimate aim is to
fix without a reinstall the box. (but if needed, I guess I will).
Probably the one thing that might be the issue is I am running
2.5.72 kernel.
Here's my seg fault (not that it will help much, but show my pain I
guess :-)
sebago:~# df
Filesystem   1K-blocks  Used Available Use% Mounted on
<1>Unable to handle kernel NULL pointer dereference at virtual address
0018
 printing eip:
 0018
 *pde = 
 Oops:  [#14]
 CPU:0
 EIP:0060:[<0018>]Not tainted
 EFLAGS: 00010246
 eax: 010c   ebx: 08051228   ecx: 0054   edx: 007b
 esi: b420   edi: 40156510   ebp: c438a000   esp: c438bfc0
 ds: 007b   es: 007b   ss: 0068
 Process df (pid: 9407, threadinfo=c438a000 task=c326ace0)
 Stack: c010904f 08051228 0054 b420 b420 40156510 b408
010c
007b 007b 010c 400f0334 0073 0246 b3b0
007b
Call Trace: []
Code:  Bad EIP value.
 Segmentation fault
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


This message was sent using IMP, the Internet Messaging Program.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] LDAP address book?

2004-06-24 Thread [EMAIL PROTECTED]
http://alcastle.com/index.php?id=239 aldap was also pretty OK for a 
basic web-interface address book.
It took a while to install as there is at least one significant bug (as 
at 4/2004).

I think the moz ldap interface is read-only which is a pity.
Evolution on Linux is read/write so much better from the gui/ldap 
backend perspective.

There is also work in the KDE space with Kontact and Kolab but haven't 
had the time to test them.

Rolodap didn't do it for me but that was 1.5 years ago.
HTH
Stu
David Gillies wrote:
Matthew Davidson wrote:
Recalling a SLUG talk from a few years ago about LDAP, I thought here's
the very thing.  A day of cursing and growling later, I'm not so sure.
Most of the tutorials on this subject are based on the premise that
you're creating your own database and front-end from scratch, rather
than a database that existing apps can use (I'm principally concerned
about Thunderbird here).
There are a few LDAP-based apps that claim to use Netscape-compatible 
address books, but all of those I've tried are so flaky that they 
don't generate anything but error messages.

Has anybody else tried this with any success?  Any tools/resources 
been especially useful?

At home I setup up an LDAP server using OpenLDAP, nothing fancy. Then 
I used phpldapadmin (http://phpldapadmin.sf.net/) to create the 
addresses in my directory. I've accessed this using Mozilla 
Mail/Thunderbird's addressbook component, and also using the 
addressbook function under MS Entourage and Addressbook in Mac OS X.

For another way of doing this (specifically for creating an ldap-based 
addressbook) perhaps you could try out rolodap 
(http://rolodap.sourceforge.net/).

--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Backup-web-server

2004-07-21 Thread [EMAIL PROTECTED]
Hi Trevor,
Google is your friend. The sort of words you want are 'failover' 'high 
availability' and probably apache.

I googled 'apache failover' and go these.
http://www.geocities.com/latompa/ha/apache_heartbeat.html
http://www.openminds.co.uk/high_availability_solutions/web_servers/apache.htm
If you get a good easy solution, please post it to the list.
ATB
Stu
Trevor Tregoweth wrote:
Hi All
after my last post, which i think wasn't quite to the point,  i would like
to find out how to have a web-backup server, and how to configure them, so
that when one goes down the other takes affect.
Thanks for you help and suggestions
Trevor Tregoweth

 

--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] looking at vi file in wordpad

2004-07-25 Thread [EMAIL PROTECTED]

Dear slugers,
I have created a file using vi. 
When I look at the same file on a windows box with notepad it is loaded as one line 
and where I expect to have carriage returns i have box looking characters. 
Can someone tell me how I can replicate these box looking characters on a windows 
system using wordpad or notepad. 
i hope this all makes sense.
Looking forward to your reply. 
regards 
michael 
  

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Evolution problems! :(

2004-08-06 Thread [EMAIL PROTECTED]
G'day all,

I've had some problems with gnome and evolution. I managed to fix gnome,
but evolution seems to be having problems across all users.

Evolution quits on startup with the error: Unable to initialize evolution
shell.

>From a gnome-terminal:

--
[belfry]$ evolution


Gtk-WARNING **: Unable to locate loadable module in module_path:
"libindustrial.so",


Gtk-WARNING **: Unable to locate loadable module in module_path:
"libindustrial.so",


Gtk-WARNING **: Unable to locate loadable module in module_path:
"libindustrial.so",


Gtk-WARNING **: Unable to locate loadable module in module_path:
"libindustrial.so",


Gtk-WARNING **: Unable to locate loadable module in module_path:
"libindustrial.so",


Gtk-WARNING **: Unable to locate loadable module in module_path:
"libindustrial.so",
(Killing old version of Wombat...)
(Cannot access Bonobo/ConfigDatabase, not upgrading configuration.)
IDL:OAF/GeneralError:1.0


evolution-shell-WARNING **: Cannot access Bonobo/ConfigDatabase on wombat:
(IDL:OAF/GeneralError:1.0)



Any thoughts or assistance *greatly* appreciated.

-Mike


mail2web - Check your email from the web at
http://mail2web.com/ .


--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Evolution problems! :(

2004-08-06 Thread [EMAIL PROTECTED]
G'day...

Ahh... thanks for your assistance...

> This looks suspiciously like you have a new version of Evolution and an
old
> version of wombat. Which distro and verions? Have you built it yourself or
> something?

RedHat-9, although I have upgraded Evolution lately, and various parts of
the OS... Hrmm... Maybe time to upgrade to FC2 or a Debian distro...

-Mike


mail2web - Check your email from the web at
http://mail2web.com/ .


--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Evolution problems! :(

2004-08-09 Thread [EMAIL PROTECTED]
G'day...

No... Evolution is in the standard directory... sorry, when I said "parts"
I was intending to mean "packages" ie RPM packages. (I usually leave things
as default where possible.)

I've started using yum - which I found to be good (maybe I should have just
installed apt) ... however, I added a repository and performed an upgrade
of my system - shortly after this my system started going wierd... anyone
know how to downgrade the gnome parts of my system?

(I've downgraded evolution, which includes wombat in the package, to no
avail.) :(

I'm actually tossing up if I should be installing Debian vs RedHat in my
mind... Have to be truthful and say that I'm quite suprised that Woody is
still the latest release...!

I've run both before, and I find that RH both installs and looks nicer
straight out of the box... I'm wondering if Debian is more stable when
upgrading from the stable repository...

(And after all, Debian is *all* free...)

Thanks for your help so far...

All the best...

Mike


Original Message:
-
From: Jeff Waugh [EMAIL PROTECTED]
Date: Fri, 6 Aug 2004 23:25:35 -0700
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: [SLUG] Evolution problems! :(




> > This looks suspiciously like you have a new version of Evolution and an
> > old version of wombat. Which distro and verions? Have you built it
> > yourself or something?
> 
> RedHat-9, although I have upgraded Evolution lately, and various parts of
> the OS... Hrmm...

Parts? How? If you've installed Evolution to a different prefix, it's
probably still running the system-installed wombat (or vice versa).

> Maybe time to upgrade to FC2 or a Debian distro...

Yeah, no point sticking with RH9 when FC2 is around. :-)

- Jeff

-- 
linux.conf.au 2005: Canberra, Australiahttp://linux.conf.au/
 
   "There, I did it... I defiled a timeless piece of ART!" - Jim Carrey,
  covering I Am The Walrus


mail2web - Check your email from the web at
http://mail2web.com/ .


--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Worst Installer ever!!!

2007-01-04 Thread [EMAIL PROTECTED]
So now I am using Fedora It was a bitch of an install as the Anaconda installer kept on crashing all the time. In the end I had to format my partitions using the Mandriva installer and then switch over to the Fedora installer once formatting was complete, but now that that it is completed I will crack open the champagne.
Then I think that It would have been even better if I could have used the Mandriva installer to install Fedora
Then I thought why couldn't we have 1 or 2 universal installers which are available on a separate CD/DVD which is pre loaded into the computer and does all the formatting and boot sector configuring, Then after the Universal installer is installed I Load my O/S of choice and the Universal installer will interface with the O/S DVD because on the O/S DVD there is a configuration file which tells the Universal Installer what to do.
I am putting this Idea out there in the hope that it is a good and novel idea but I would bet $,1000,000 on that somebody has thought of it before.
 
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] resolv.conf

2007-01-04 Thread [EMAIL PROTECTED]
I wen't to linux.org/lessons and skipped straight to the ADSL section and did exactly what it said including the modification of resolv.conf 
And everything worked as expected
Then when my intenet connection didn't work I checked all the system files I had modified including resolv.conf 
It seems that some process in my OS has seen fit to change my resolv.conf file in such a way that it points to the gateway at 10.1.1.1 and not to the ISP Nameserver at 202.154.83.53 how can I stop the O/S (Fedora) from getting it's fingers on my resolv.conf file?
PS the same thing also happens in Mandriva but I run Fedora now
 
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] Need a Mail Client

2007-01-04 Thread [EMAIL PROTECTED]
I have found that when I open Evolueion for the first time it opens the email configuation wizard 
The only thing is the 2nd screen crashes (without fail) so I cannot configure the Evolution Client.

Does anybody recommend another suitable email client anything that works will be good. 
RPM applications would probably be better but I am open to anything.

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] IPTABLES rule change to allow interface with AD

2007-01-18 Thread [EMAIL PROTECTED]
We have a server running in a DMZ servicing intranet and extranet.

In the past we have blocked all traffic originating on the server from the
two internal networks we run (eth1 and eth2) but have accepted traffic
coming from the networks outside of the server.  Eth0 is the direct
connection to the internet and a solid state firewall looks after port
redirection to eth0.  No traffic is blocked on eth0 so that we can apply
patches and updates to the server (Mandriva 2007).  The tables below have
done the job.

We now need to allow access to port 389 (Active Director) only, from the
DMZ server to an AD server on eth2.  I am no good at this and was wondering
if someone could suggest the change/changes to the rules below to allow
this to happen.
|---|
eth2-->-|   |---eth0 <--> Internet
eth1-->-|   |
|---|
iptables -A INPUT -m state --state NEW -i eth2 -j ACCEPT
iptables -A INPUT -m state --state NEW -i eth1 -j ACCEPT
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i eth2 -j ACCEPT
iptables -A INPUT -i eth1 -j ACCEPT
iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o eth2 -j DROP
iptables -A OUTPUT -o eth1 -j DROP

Many thanks in advance.

Rick Phillips


mail2web - Check your email from the web at
http://mail2web.com/ .


--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Network Card On Holidays

2007-01-19 Thread [EMAIL PROTECTED]
My Internet connection has been working fine after following the advice in lesson 17C @ Linux.org but as allways it was too good to last?
I had been trying to read my old IDE doze disks for the purpose of data transfer but after I had came into (hardware related) problems I took my doze disks down to the local computer shop for the purpose of  data recovery
Then when I put my computer back the way it was I tried to access the intenet, so I made changes to the dhcclient script which in turn modeified the resolv.conf file so that the resoolv-conf file held the correct nameservers in it (It woluld have been useful if the dhcclient -script actually did this without user interference)
and after lots of mucking arount I realised that Mandriva Linux doesn't recognize my network card and I thouhgt It is really strange as a few days ago Mandriva Linux had no trouble recognising my network card.
I also found that there is a graphical screen in which I can choose to make my graphics card active but this doesn't activate my graphics card when I try it.
Now I have also installed a lot of updates lately and I am thinking that if I could uninstall some or all of those updates could this help the situation
Does anybody have any Ideas?
Actually I am wondering if maybe I may have ripped out part of the dhcclient-script that enables the network card to be detected in which case I should ask if somebody could send me a copy
Thanks Steve

 
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] Sorry I made a mistake

2007-01-19 Thread [EMAIL PROTECTED]
In my previous email I said that I use Mandriva Linux but I actually use Fedora Linux.
I have installed that many Linux Versions that it is hard to keep track of which is which
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] Using Ubuntu in an Internet cafe problems!

2007-02-15 Thread [EMAIL PROTECTED]

Hi all

I'm travelling over in Sydney at the moment and have been trying to get 
my Dell 640m laptop connected to the network in Global Gossip internet 
cafe in Kings Cross. I'm running Ubuntu 6.06 on it. It connects well 
when I boot up into Windows XP, everything as it should be. Finds the 
Global Gossip wireless network, you then open the browser and it 
defaults to the www.moreways2pay.com website where it asks for your 
membership details from where you can start using their internet connection.


In Ubuntu however it doesn't work, it finds the wireless connection or 
the hard LAN connection, but never connects to it, I contacted the admin 
of the cafe and he said he could see my MAC address on the network and 
that it had been assigned an IP but for some reason it's not connecting 
properly.


Apprently there was someone running Redhat in here before and it was 
working so it must be possible.


If anyone has any thoughts I would really appreciate the help, thanks 
very much! :)


Jim
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Re: Firefox and 64 bit java plug in

2007-06-09 Thread [EMAIL PROTECTED]
use 32-bit firefox instead. you can get it here:
http://software.opensuse.org/download/mozilla/openSUSE_10.2/i586/
you also need 32-bit jre:
http://software.opensuse.org/download/Java:/addon/openSUSE_10.2/i586/java-1_5_0-sun-1.5.0_update10-4.1.i586.rpm

On Jun 5, 10:33 pm, Sharon Doig <[EMAIL PROTECTED]> wrote:
> Hi,
> I want to find a 64 bit java plug in for my firefox browser. As far as I can 
> make out there isn't one made by Sun. Can people suggest if blackdown java is 
> any good? I have an AMD 64 bit architecture laptop running Suse 10.2. I need 
> the java plug in to access a chat room for my nutrition e-group.
>
> Help, suggestions.
>
> Thanks
>
> Sharon.
>
> Sharon Doig in Canberra - Australia
> E: [EMAIL PROTECTED]
>
> 
> Make your mark and achieve success
> or, if need be, die in the attempt.
> Miriam Leslie
> 
>
> -
> How would you spend $50,000 to create a more sustainable environment in 
> Australia?  Go to Yahoo!7 Answers and share your idea.
> --
> SLUG - Sydney Linux User's Group Mailing List -http://slug.org.au/
> Subscription info and FAQs:http://slug.org.au/faq/mailinglists.html

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Important about Novell Certifications

2007-11-07 Thread [EMAIL PROTECTED]
Novell Certifications
http://educational-world.blogspot.com/2007/09/novell-certifications.html

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Hi to ALL. I just join this group.

2007-12-16 Thread [EMAIL PROTECTED]
Greetings to all http://elicitch.tripod.com/naruto-and-wallpaper.html
naruto and wallpaper
 http://elicitch.tripod.com/naruto-hentai-wallpaper.html naruto hentai
wallpaper
 http://elicitch.tripod.com/naruto-phone-wallpaper.html naruto phone
wallpaper
 http://elicitch.tripod.com/ichigo-naruto-wallpaper.html ichigo naruto
wallpaper
 http://elicitch.tripod.com/naruto-kiba-wallpaper.html naruto kiba
wallpaper
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Someones bouncing funny

2008-01-10 Thread [EMAIL PROTECTED]


On Thu Jan 10 11:11 , Dean Hamstead <[EMAIL PROTECTED]> sent:

>when i post, someones mail server sends me this
>
>(see attached)
>
>
>
>i have no idea whos email is causing this.

I do. Well the email address is mine. The server however, is not mine - all of 
my
machines were off. I have used email from my ISP's web interface all week.

It would seem (most likely) my address is being used by a spammer.

>
>
>
>sorry for the on list post
>
>
>
>Dean
>

Thanks for the heads up.
Cheers.
D.

--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Optus for dial-up

2008-01-20 Thread [EMAIL PROTECTED]

A while ago, I asked about people's experience using the above. I'm now recording the following, just in case it should be relevant to someone else hereafter.

Wvdial worked immediately to connect to Optus.

I did precede the telephone number, username and password in a "Dialer Optus" section of /etc/wvdial.conf with "Stupid mode = yes". Whether that was necessary or not, I don't know.

My thanks again to those who replied to my earlier question.

Leslie


Visit http://stumblng.tumblr.com

An Australian lawyer's tumblelog about things (some legal, most not) you might otherwise have missed 
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

[SLUG] Boot problem

2008-03-14 Thread [EMAIL PROTECTED]
I have LinuxMint KDE 4.0.44 installed

My system has suddenly decided not to boot, giving the following error from /var/log/fsck/checkfs:-

Log of fsck -C -R -A -a 
Fri Mar 14 23:43:10 2008

fsck 1.40.2 (12-Jul-2007)
/dev/hda3: clean, 6800/1376256 files, 1585688/2749123 blocks
fsck.ext3: No such file or directory while trying to open /dev/hdb1
/dev/hdb1: 
The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 

/dev/hda4: clean, 49472/17465344 files, 19579827/34903220 blocks
fsck died with exit status 8

Fri Mar 14 23:43:11 2008



/media/hdb1 is no longer  attached.

I can access  /hda1( /),hda 3(/home) and /hda4 (data) from a LiveCD distro.

What do I need to do to be able to boot ( apart from reattaching  /hdb1)?

Bill
 
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Re: [SLUG] eee pc 900 (20080709)

2008-07-10 Thread [EMAIL PROTECTED]
Jacinta,

Apologies for the top posting.  For some reason my Evolution mailer refuses
to allow me to reply without locking up so I have had to resort to mail2web.

I am an Asus reseller and have been aggrieved to find that the Linux based
901 is not being imported into Australia, probably because in the scheme of
things, our market is very small.  So it's 901 for Windows (with bluetooth
and 12Gb HDD) and 900 for Linux (no bluetooth and 20Gb HDD).  I took
delivery of my 900 Linux unit on Monday and I am not disappointed.  The
extra ram and HDD is a godsend (4Gb for system and 15Gb for home - 1Gb for
recovery I think).  The 9" screen makes all of the difference in the world
in the usability stakes.  Microphone in lid beside the webcam and speakers
underneath.  Battery lasts at least twice as long as before.

In Oz, we never did see the selection of colours that have been available
(pink, green, blue etc) so I guess we are stuck with whatever Asus
Australia thinks they can sell comfortably.

Regards,

Rick Phillips

Original Message:
-
From: Jacinta Richardson [EMAIL PROTECTED]
Date: Thu, 10 Jul 2008 15:46:52 +1000
To: [EMAIL PROTECTED], slug@slug.org.au
Subject: Re: [SLUG] eee pc 900 (20080709)


David Andresen wrote:
> Have you considered the eeepc 901 ( linux installed) ?
> 
> You may have to wait a bit.

Do you know how long?  I've spoken to ASUS and they've recommended
retailers who
haven't even heard of the Linux one.  Apparently it might not be released in
Australia yet, but ASUS wasn't able to tell me that.  I've spent the last
month
looking for someone in Australia selling the 901 with Linux pre-installed
to no
avail.

I could buy it from Hong Kong, but that'll cost me an additional $100AUD
which
seems kind of pointless, seeing as how I can get the Windows 901 already and
just buy an SD card.

J

-- 
   ("`-''-/").___..--''"`-._  |  Jacinta Richardson |
`6_ 6  )   `-.  ( ).`-.__.`)  |  Perl Training Australia|
(_Y_.)'  ._   )  `._ `. ``-..-'   |  +61 3 9354 6001|
  _..`--'_..-_/  /--'_.' ,'   | [EMAIL PROTECTED] |
 (il),-''  (li),'  ((!.-' |   www.perltraining.com.au   |
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html



mail2web - Check your email from the web at
http://link.mail2web.com/mail2web


--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


RE: [SLUG] Too many ethx ports

2008-09-17 Thread [EMAIL PROTECTED]
Apologies for top posting - this web based client does not accommodate
proper indenting.

Gerald, I am pretty sure you are using PCLOS or Mandriva with KDE.

You should be able to go to /etc/sysconfig/network-scripts and remove the
files of the form ifcfg-ethX.  When done, use MCC -> Network & Internet to
set up your network again using (now) the only available network card eth0.
If have tested this and it works

Regards,

Rick

Original Message:
-
From: Gerald [EMAIL PROTECTED]
Date: Thu, 18 Sep 2008 07:14:43 +1000
To: slug@slug.org.au
Subject: [SLUG] Too many ethx ports


Hi Guy's,
How can I get rid of eth1,eth2,and just keep eth0. with no
references to
the other ports?
The system is very confused and will not send/receive email with
all the
network ports. 
The reason for the number of ports is because I tried a wireless
network
when the on board 1GB network failed that was eth0, then the
wireless
becane eth1 the next trail wan a 1GB Intel network card that
became
eth2.
Now I want to get rid of eth0,eth1,eth2 then have eth0 only.
The question is HOW?
Many thanks in advance
Gezza



-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html



mail2web.com – Enhanced email for the mobile individual based on Microsoft®
Exchange - http://link.mail2web.com/Personal/EnhancedEmail


--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


RE: [SLUG] Computer Parts

2001-12-02 Thread [EMAIL PROTECTED]

Matt,

There IS a HUGE difference between a no-name "eagle" "powerview" and a name brand card 
eg ASUS card.

I went thru 3 TNT/Geforce until  learn't my lesson any pruchased a 32 MB Asus 7100 
deluxe(mx400) for $225.00 when at the time a 64 MB noname mx 400 was $150.00

The image quality of the ASUS is good (NOT perfect) at high res/refesh 1400 x 1080 @ 
85 HZ the no name was blurry mess, while the ASUS is much better. This problem with 
TNT/Geforce is quite well documented on the net. The problem being with dodgy filters 
used on VGA output of the cheaper cards.

So if you only interested in 1024 and less get the no-name, if you want run decent res 
+ refresh (1280+ @ 85HZ) get a good card.

If you get a cheap card make sure you can return if your not satisfied as many of the 
traders at north rocks won't refund for this sort of thing.

Regards

Mehmet Ozdemir



Original Message:
-----
From: Matt - [EMAIL PROTECTED]
Date: Mon, 03 Dec 2001 13:56:16 +1100
To: [EMAIL PROTECTED]
Subject: [SLUG] Computer Parts



I'd also like to hear what you guys think of no-name video
cards, for example I am looking at GeForce MX400 cards and
here's what I found so far:

Eagle (64mb)- $132
Hercules (32mb) - $155
Polyview (64mb) - $169
Leadtek (64mb)  - $195

I am wondering whether there are any disadvantages of
purchasing the no-name Eagle or Polyview brand, some
one actually told me that there's a difference in image
quality !

Matt

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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


mail2web - Check your email from the web at
http://mail2web.com/ .


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



RE: RE: [SLUG] Linux (or other) Dial-up Router

2001-12-02 Thread [EMAIL PROTECTED]

I use a single disk FREESCO distro, gives me NATed inet + dialin on upto 2 modems, Net 
connection is probably not need but it's really good for dialin on a disk.

With a 16 MB compact flash plus a compact flash to ide adpator, you could put together 
a "black box" pentium for under $100.00

Regards

Mehmet ozdemir

Original Message:
-
From: Ciaran Finnegan [EMAIL PROTECTED]
Date: Mon, 3 Dec 2001 14:05:18 +1100
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: RE: [SLUG] Linux (or other)  Dial-up Router


Sorry, should have said - we want to dial into the box, no outward
dialing capabilities needed, but it would be nice to have the option.

-Original Message-
From: Howard Lowndes [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 03, 2001 12:41 PM
To: Ciaran Finnegan
Cc: [EMAIL PROTECTED]
Subject: Re: [SLUG] Linux (or other) Dial-up Router

Are you going to be dialling in or are they going to be dialling out, or
both.  Anyway you look at it, I would have to say that a Linux box
_WITH_WELL_DESIGNED_FIREWALLING_ has to be the way to go.  At least you
know what it is doing; with many "black boxes" you don't have a clue
what
does, or does not go on.

On Mon, 3 Dec 2001, Ciaran Finnegan wrote:

> I’m looking for a ‘dial-up router’ to put on customer networks for
> support purposes.
>
> I’m in two minds as to whether I’d prefer a low spec. PC or some sort
of
> ‘black box’ for a number of reasons.
>
> 1/ Black Box, is liable to be more reliable than a PC.
> 2/ Network Managers seem to get less excited when you put a
> hardware device on their networks than they do if you suggest using an
> old 486.
> 3/ Low Spec. PC would be cheaper and probably more versatile.
>
> Has anyone come across anything like this, I’m particularly interested
> in linux distro’s that would be suitable for running on low spec.
PC’s.
>
> Oh, and it has to be cheap as well.
>
> Thanks.
>

--
Howard.
LANNet Computing Associates - Your Linux people
Contact detail at http://www.lannetlinux.com
 "We are either doing something, or we are not.
 'Talking about' is a subset of 'not'."



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


mail2web - Check your email from the web at
http://mail2web.com/ .


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



RE: [SLUG] Proposed joint trainning between TRIComm & CBNSW

2001-12-12 Thread [EMAIL PROTECTED]

Richard,

While I'm not a student, would you clasify a student as 10% of the 'commercial' price? 
If not the only other classification I see is other, ouch!

Another point I'd like to make is if your going to charge $495.00 (just an example I 
know) per day for the full commercial rate, your not really going to get many 
"commercial" clients willing to go out to penrith for the training, when they can 
attend course in town or at worst parramatta.

Will the training be backed up with course notes, trainers with training skills etc. 
This is in general what the more established companies provide. If you are going to 
charge commercial rates, you will be expected to provide a commercial service.

On the other hand if you charged say $295.00, more people would willing to come out to 
penrith as the discount makes it worth it.

I personally would be intested in, some of the administration stuff, but like any full 
paying customer would like to see course outlines etc before coughing up the cash.

Will you have a website to promote you training activities?

Hope this feedback assists

Kind Regards
Mehmet Ozdemir



Original Message:
-----
From: Richard Hayes [EMAIL PROTECTED]
Date: Thu, 13 Dec 2001 10:05:23 +1100
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: [SLUG] Proposed joint trainning between TRIComm & CBNSW


Dear list,

Yesterday I collected the keys to our new facilities at Penrith.  One of the
main things TRIComm want to do is to increase the usage of their trainning
facilities.  What they want is a model for both organisations to work
together.

I suggest that we offer trainning in range of subjects from the very simple
eg basic email / web etc  all the way to advanced system administration.

But all using a similar three tier pricing scheme

Unemployed / disadvantaged / volunteers  10% of the 'commercial' price

Paid employees of non-profit groups  35% of the commercial price

Others  100% of commercial price

eg  1 day training course in computer security  $495

Unemployed people and unpaid voluenteers would paid  $49.50

Paid staff  of non profit groups  would paid  $173.25

Normal participants would paid $495

Please comment on both the idea of join operations and the suggested pricing
model.

regards,

Richard Hayes






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


mail2web - Check your email from the web at
http://mail2web.com/ .


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



Re: [SLUG] converting deb file to rpm

2002-01-31 Thread [EMAIL PROTECTED]

Please ignore, as this is a transition from Sylpheed to Evolution
configuration problem that caused this to be resent

Apologies

Chris
On Fri, 2002-02-01 at 13:59, Christopher Booth wrote:
> Any takers ?
> 
> Chris
> On Fri, 7 Dec 2001 10:19:31 +1100
> "Christopher Booth" <[EMAIL PROTECTED]> wrote:
> 
> > Could any deb heads convert a deb file (dictionary) to a rpm file for me, I'm 
>getting errors doing from Mandrake.
> > 
> > email me off list and I will attach the file ~300kbs
> > 
> > TIA
> > 
> > Chris
> > 
> > -- 
> > SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> > More Info: http://lists.slug.org.au/listinfo/slug


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



RE: [SLUG] routing

2002-01-31 Thread [EMAIL PROTECTED]

On Fri, 2002-02-01 at 10:51, George Vieira wrote:
> You probably find that it's not routing the whole network via the dialup
> device..
> 
> Other words your dial up device only sees X.X.143.YY which is the dial up
> server...
It can actually see of X.X.8.X which is what the DNS, and proxy server
are on so it isn't just limited to X.X.143.X.  I think it just can't see
X.X.104.0-107.255 which is grabbed by eth0 X.X.105.30 for which I had a
default route of X.X.104.1

I have a script which is run after connecting which does this
route del default   # deletes current default route
ifdown eth0 # downs ethernet interface
route add default gw X.X.143.187# adds new default gw

> in your ip-up.local , try detecting that dial up connection and route the
> network through it..
> 
> route add -net X.X.143.0/24 gw $5   # (or was it $6)..
What do the $5 and $6 refer to, they're variables but where do they get
values from ?
> 
> try that...

I'll give it a go,
> 
> I'd firstly add the route manually and see if that fixes it..
> 
I manually delete the default route and do a
route add default gw 192.168.0.1
when I have to connect to my local network at home

Thanks

Chris


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



Re: [SLUG] Web CAMS

2002-02-03 Thread [EMAIL PROTECTED]

I've got a USB Plustek 300U or something like that, setup under linux
was much less drama than under win98.
USB found it straight away, it lists it under the chipset OV11

Software for capturing I use either camstream or xawtv.

w3cam also is a cgi script that puts it on a web page automagically
/dev/video* has to have permission for use by apache

With regards to lighting, it works perfectly at work under office
flourescent lighting, at home under normal lighting, everything has a
pinkish tinge to it.
I seem to remember under win98 it had an option for choosing which
lighting source, fluorescent, direct sunlight or indoor light.

Cheers

Chris
On Sat, 2002-02-02 at 12:55, Steven Kerr wrote:
> I am starting a project at my place of employment that requires the
> use of a WebCAM for monitoring Government controlled equipment
> (Gaming)
> 
> Any information regarding the Logitech QuickCAM Express or the
> Creative Video Blaster WebCAM along the following lines would be
> appreciated.
> 
> Recommedations of OTHER hardware (USB) would also be welcommed given
> that the END result WILL run on Linux.
> 
> 1. Supplied Software - Can it capture automagically at predefined
> periods to JPG etc. (I know this is a winblows question, but it will
> help get the device installed BEFORE going to the Linux Solution)
> 
> 2. Low light ability (low fluro lit room - not dark)
> 
> 3. Suitablitity and ease of interface (chip set etc..) with the USB
> modules on a 2.4x Kernel.
> 
> 4. Suggestions regarding any Linux Software (unattended system
> (P1-200/64Mb/Headless) PC with no X, dumping to a series of images
> every 10 - 30 seconds to a predefined image file)
> 
> Regards
> 
> SK
> 
> 
> __
> Get your free Australian email account at http://www.start.com.au
> 
> -- 
> SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> More Info: http://lists.slug.org.au/listinfo/slug


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



[SLUG] Company Merger

2002-02-04 Thread [EMAIL PROTECTED]
Title: eNewsletter 2
		YOU ARE RECEIVING THIS EMAIL BECAUSE YOU HAVE EXPRESSED INTEREST IN PRODUCTS THAT WE CAN SAVE YOU MONEY ON.  IF YOU WOULD LIKE TO BE REMOVED FROM OUR MAILING LIST PLEASE CLICK THE UNSUBSCRIBE LINK AT THE BOTTOM OF THIS EMAIL. WE CAN ASSURE YOU THAT YOU WILL BE REMOVED IMMEDIATELY.	IImportant Announcement from J.C. Morris & Company	For the past few years, our customers have enjoyed the ability to purchase computers and related products from manufacturers like Sony, Apple, IBM, Toshiba and Compaq at prices below wholesale.  J.C. Morris & Company has been able to accomplish this because of our direct relationship with distributors that use our Advertising & Marketing Services.Now, J.C. Morris & Company has teamed up with and additional distributor, Allied Interactive Micro-Systems, a company that specializes in the world-wide distribution of computer hardware, software and electronics, from manufacturers like Bose, Pioneer and Canon.Here’s your chance to get to know us, and from now until February 8, 2002 if you visit us on-line or in person and would like to make a purchase, we will give you an additional 30% off our current selling price.This is our way of saying thank you for taking the time to visit our company.Should you have any questions please feel free to call us at 1-800-845-6215 or direct at 404-521-3624.  If you would like to be remove from our mailing list just click on the link below. Sincerely,Jim MorrisVice PresidentJ.C. Morris & CompanyCome visit us today!		Apple iMac$1099.00Visit our Company on-line!			Tower Place Center Suite 1800, 3340 Peachtree Road NEAtlanta, GA 303261-888-567-2444			  
Click here to unsubscribe from our mailing list.  Or reply to this message with the word unsubscribe in the subject line.




[SLUG] Company Merger

2002-02-04 Thread [EMAIL PROTECTED]
Title: eNewsletter 2
		YOU ARE RECEIVING THIS EMAIL BECAUSE YOU HAVE EXPRESSED INTEREST IN PRODUCTS THAT WE CAN SAVE YOU MONEY ON.  IF YOU WOULD LIKE TO BE REMOVED FROM OUR MAILING LIST PLEASE CLICK THE UNSUBSCRIBE LINK AT THE BOTTOM OF THIS EMAIL. WE CAN ASSURE YOU THAT YOU WILL BE REMOVED IMMEDIATELY.	IImportant Announcement from J.C. Morris & Company	For the past few years, our customers have enjoyed the ability to purchase computers and related products from manufacturers like Sony, Apple, IBM, Toshiba and Compaq at prices below wholesale.  J.C. Morris & Company has been able to accomplish this because of our direct relationship with distributors that use our Advertising & Marketing Services.Now, J.C. Morris & Company has teamed up with and additional distributor, Allied Interactive Micro-Systems, a company that specializes in the world-wide distribution of computer hardware, software and electronics, from manufacturers like Bose, Pioneer and Canon.Here’s your chance to get to know us, and from now until February 8, 2002 if you visit us on-line or in person and would like to make a purchase, we will give you an additional 30% off our current selling price.This is our way of saying thank you for taking the time to visit our company.Should you have any questions please feel free to call us at 1-800-845-6215 or direct at 404-521-3624.  If you would like to be remove from our mailing list just click on the link below. Sincerely,Jim MorrisVice PresidentJ.C. Morris & CompanyCome visit us today!		Apple iMac$1099.00Visit our Company on-line!			Tower Place Center Suite 1800, 3340 Peachtree Road NEAtlanta, GA 303261-888-567-2444			  
Click here to unsubscribe from our mailing list.  Or reply to this message with the word unsubscribe in the subject line.




Re: [SLUG] Redhat 7.2 crashes my computer

2002-04-08 Thread [EMAIL PROTECTED]

I have installed the gcc3 rpms from ximian, but it only puts a gcc3 in the /usr/bin 
dir. how do i get gcc3 to be the default? can i just delete the gcc file and replace 
it with a symlink to gcc3?

Regards,
Karl Bowden


>On  8 Apr, Broun, Bevan wrote:
>>  Just a note: make sure your dont compile with that RH gcc (2.96).
>
>Why not?  It's the default version of gcc on RH7.2, and I did nothing
>special for building any of the 2 dozen or so kernels I've experimented
>with over the last few months, with no compiler-ish problems.  (Just
>hardware, and scsi error handling problems.)  Unless the kernel build
>is set up to use a special version of gcc squirrelled away specially
>for the purpose, by the makefiles?
>
>luke



mail2web - Check your email from the web at
http://mail2web.com/ .

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



[SLUG] DHCP from the command line!

2002-07-01 Thread [EMAIL PROTECTED]

Hi Guys and Girls, just a quick one!

I was wondering how you would  change from a static IP address *i.e * 
eth0 192.16.1.30

but you want to change to  using DHCP from the command line.

I dont want to use linuxconf or netconfig etc , just the command line 
thanks?

Cheers

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



Re: [SLUG] Ensoniq AudioPCI

2002-09-09 Thread [EMAIL PROTECTED]



Original Message:
-
From: Felix Sheldon [EMAIL PROTECTED]
Date: 10 Sep 2002 15:25:42 +1000
To: [EMAIL PROTECTED]
Subject: Re: [SLUG] Ensoniq AudioPCI

> 
> I think a Creative Vibra 128 is the same thing, it uses the ES1371 
> Ensoniq chipset.

According to the google search I just did, it certainly does use the ES1371
chipset for the vibra 128.

Thanks



mail2web - Check your email from the web at
http://mail2web.com/ .


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



Re: [SLUG] gnome migration

2002-09-12 Thread [EMAIL PROTECTED]

while we're on the subject of gnome migration...

I run fluxbox, and run severl gtk programs (such as evolution and galeon).
I'm fairly new to *nix, but presumably this means there is a bunch of gnome
1.4 libraries and stuff installed??

I was reading about gnome 2 recently however, and it sounded pretty nifty,
so i installed it, but when I run gdm it loads gnome 1.4...( i think
anyway. Someone else suggeste you can check by the version number of gnome
panel.. which is 1.4.something)

is there an easy way to run gnome2??

thanks

James


mail2web - Check your email from the web at
http://mail2web.com/ .


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



Re: [SLUG] gnome migration

2002-09-12 Thread [EMAIL PROTECTED]

> If you've built it from source or something like that, you need to start
> gnome-session in the GNOME 2 prefix.

exactly what i did... now what is this prefix thingy, and how do I start
gnome-session with it? :-)

I already use gnome-session in ~/.xinitrc..

James



mail2web - Check your email from the web at
http://mail2web.com/ .


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



Re: [SLUG] Script Help

2005-05-11 Thread [EMAIL PROTECTED]
 It would seem using somthing like xargs may be appropriate.

xargs 

Xargs will ensure the command argument buffer is chopped into appropriate sized 
chunks.

Cheers
Shane
 Peter Miller <[EMAIL PROTECTED]> wrote: 
On Wed, 2005-05-11 at 13:58 +1000, Julio Cesar Ody wrote:

> $ for dirname in `cat studentlist`; do rm -rf $dirname/*; done

cat studentlist | while read dirname; do rm -rf $dirname/*; done

this will cope more elegantly with large numbers of line in the slug
student list file.  The line


-- 
Regards
Peter Miller <[EMAIL PROTECTED]>
/\/\*http://www.canb.auug.org.au/~millerp/

PGP public key ID: 1024D/D0EDB64D
fingerprint = AD0A C5DF C426 4F03 5D53  2BDB 18D8 A4E2 D0ED B64D
See http://www.keyserver.net or any PGP keyserver for public key.

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] New lappy success!

2005-08-02 Thread [EMAIL PROTECTED]

> So if anyone has been wondering what makes for a painless
> Linux+Lappy  combination, I highly recommend the HP NC6230
> with Ubuntu/Kubuntu. Note  though, this lappy comes
> standard with the evil Broadcom Wifi chipset - I  ordered
> mine specifically with the IPW2200BG Wifi as I knew it was
> supported  under Linux. Supoort those whose support F/OSS!

Congratulations on painless transition! I'm just curious who
did you buy this laptop from?  Because I just visited HP's
online store and they don't even seem to sell this model
(the closest I found was Compaq nc6220) and they don't
provide any options regarding wifi chipsets...
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


RE: [SLUG] Limit desktop to one program

2002-10-30 Thread [EMAIL PROTECTED]

My guess,

.xinitrc 

in your users directory :) As it usually exec's the gui right at the end...
and if you search for .xinitrc examples you'll see it also launches pre set
xterm's you want etc too... just about anything can be loaded with it as
you desktop comes up. SO I'd say make one and only put the app in it you
want to load...

Thanks


Original Message:
-
From: Simon Bryan [EMAIL PROTECTED]
Date: Thu, 31 Oct 2002 15:35:37 +1100
To: [EMAIL PROTECTED]
Subject: [SLUG] Limit desktop to one program


Hi all,
I have been told that it is possible to limit a desktop to only one program.
I beleive the description was that the program launches the desktop rather
than the other way around. Is this true? If so waht am I looking for in my
(so far useless) google searches?


Cheers,


_
Simon Bryan
IT Manager
OLMC Parramata
ICQ#: 137562751
_

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


mail2web - Check your email from the web at
http://mail2web.com/ .


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



Re: [SLUG] iinet connectivity

2002-11-14 Thread [EMAIL PROTECTED]

Check out that text file I sent you Kevin, of an actually bash script
example :)

Original Message:
-
From:  [EMAIL PROTECTED]
Date: Fri, 15 Nov 2002 15:29:50 +1100
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: [SLUG] iinet connectivity


I will have to do that when I get home, If I did that now I would loose
my internet connection. :(
The only thing is that I will need to do source based routing. :)

> > 
> > I will try and play around with routes.
> 
> try this:
> 
> route add default gw IP-of-DLink
> 
> you'll need to add it to your startup scripts to ensure it persists.
> 
> marty
> 
> --
> I didn't know it was over
> Until it was too late, too late
> But if I ever needed you
> Would you be there?
> 
> "It's Too Late" - The Streets
> -- 
> SLUG - Sydney Linux User's Group - http://slug.org.au/
> More Info: http://lists.slug.org.au/listinfo/slug
> 
> 




-
This mail sent through IMP: http://horde.org/imp/
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


mail2web - Check your email from the web at
http://mail2web.com/ .


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



[SLUG] One for the brains trust.

2002-12-19 Thread [EMAIL PROTECTED]
I have a linux firewall on the end of a ppp link to Telstra Direct.

It's a Pentium II box, 2.4.19 kernel.

Very standard config.

The modem 'link' stays 'up'.

But there are intermittent 'outages'.

Every so often there is an outage of 4 minutes, 57ish seconds.

This happens with the following periodicity

An outage every eight hours of 4 mins.

Then after a few days, outages occur more frequently.
Ping times seem pretty long as well in general.

I've noticed this on another link using 2.4 kernel with an HDSL link to DavNet.

Any clues?

Regards & happy pagan festival to all.

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



Re: [SLUG] One for the brains trust.

2002-12-20 Thread [EMAIL PROTECTED]
Thanks for the suggestions folks!

The link is fine now.

I took the phone line out of the APC...

Yep. Wakko stuff maybe.

Mysteries are good. Problems are not.

This is both.

I am investigating a DSL option.

Though for the sake of completeness it would be good to find out what 
this is/was.

My current theory is that the APC is introducing a line voltage drop 
occasionally.

This would have the effect of provoking unpredictable behavior in the modem.

The testing of this would be enabled by dumping packets at the Telstra router.
I got close to the escalation for this to happen, then found a power 
cycle of the modem cleared the effect temporarily.

Telstra understandably lost interest when this was found.

This theory is due to be shot down quickly soon when I see another 4 
minute pause!
Also, I do not remember seeing power backup on the other link with 
this problem...

With the DSL modems, is there any recommendation for one that will 
reset when there is a bona-fide line drop?
I have found some good looking power cyclers on the web. Most I've 
found are serial line monitors though
Telstra recommend that the modem line could be kept as a second route 
in case of outage issues.
Fair comment I guess.

Merry pagan festival to all!

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


Re: [SLUG] German characters in linux

2003-06-10 Thread [EMAIL PROTECTED]
* Robert Tillsley <[EMAIL PROTECTED]> ([EMAIL PROTECTED]) wrote:
> Hi guys
> I've been looking into being able to type accented characters in linux.
> This is because I'm learning german and want to be able to type notes.
>
Hello Robert.

Perhaps the neatest thing available now is sexkbmap which should come
with X.

You'll need a recent xterm (version 4.1.0 or newer). Get a utf-8 xterm
running by calling 'uxterm'.

You can then use different keyboard layouts by calling (for instance)

setxkbmap de

If you want to get back to the US layout, call setxkbmap us or
setxkbmap us_group3.

All the layouts are in listed in /usr/X11R6/lib/X11/kbd.

Some of them can be toggled back to US by using the right alt key as
a switch.

'setxkbmap de' will give you umlauts on the keys around ;'\[] etc.
The German ss character is where you'd expect =.

Read http://melkor.dnp.fmph.uniba.sk/~garabik/debian-utf8/howto.html
for a full treatment.

Nick



mail2web - Check your email from the web at
http://mail2web.com/ .


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


[SLUG] (?Courier?) IMAP + Postfix

2003-08-04 Thread [EMAIL PROTECTED]
G'day all...

I'm wanting to create an IMAP server that will play nicely with postfix,
and am currently considering Courier.

It's for a small organisation and network, on a RH9 server that does not
have development tools installed (no gcc, etc). (FWIW, 900MHz Celeron
hardware - not too grunty, especially with Gnome2 running on top of it.)

I guess, I'm looking for a lightweight, robust, binary-distributed imap
server.

Courier looks great, only there isn't any RPMs available for it.

I've downloaded the compressed archive for it, and gone to rpmbuild it,
however I get these errors:

# rpmbuild -ta courier-imap-2.0.0.20030721.tar.bz2
error: Failed build dependencies:
openssl-devel is needed by courier-imap-2.0.0.20030721-1.9
gdbm-devel is needed by courier-imap-2.0.0.20030721-1.9
pam-devel is needed by courier-imap-2.0.0.20030721-1.9
fam-devel is needed by courier-imap-2.0.0.20030721-1.9
postgresql-devel is needed by courier-imap-2.0.0.20030721-1.9
openldap-devel is needed by courier-imap-2.0.0.20030721-1.9
mysql-devel is needed by courier-imap-2.0.0.20030721-1.9
openldap-servers is needed by courier-imap-2.0.0.20030721-1.9

Argh! I don't want ldap, mysql, postgresql, fam, gdb, openSSL anyway! I'm
worried if I install all those packages just to satisfy dependencies I'll
actually have to install a far greater number of packages than the amount
listed above. (I'm wanting to keep things compact here.)

Any suggestion? I was hoping to go down the Courier+Maildrop+Postfix path,
but I'm happy to have alternatives.

TIA...

Mike


mail2web - Check your email from the web at
http://mail2web.com/ .


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


Re: [SLUG] fetchmail and Maildir format - oops!!!

2003-08-11 Thread [EMAIL PROTECTED]
G'day...

Procmail is not installed.

postfix is configured to handle mail for the domain, and deliver locally.
(dovecot handles imap access to the mail.)

mailbox_command is not declared in /etc/postfix/main.cf
and
home_mailbox = Maildir/
(in main.cf)

There is no mbox, mail, etc - just Maildir in the users home directory

fetchmail does download the messages, but they do not appear in the
appropriate users mail. dovecot and postfix are up and running.

If I `telnet localhost smtp` and manually send an email to the user - it
works.

In the meantime, I'm now ensuring I'm using the keep option of fetchmail.

(I'm running fetchmail as root, with the user there is user here method.)

When I manually call fetchmail (with the keep option) - I can watch it
download messages, yet they aren't delivered locally - they just seem to
disappear without a trace or log. (Can't see anything in /var/log/messages
that refers to fetchmail.)

My ***major*** concern is that fetchmail downloaded approx. 40 messages and
deleted from the server, without delivering them. (When I was silly enough
to run it without the keep option, as daemon earlier.)

Is it possible that postfix has these messages stored somewhere?

Aah! Help!

Mike


Original Message:
-----
From: Jamie Wilkinson [EMAIL PROTECTED]
Date: Mon, 11 Aug 2003 16:05:22 +1000
To: [EMAIL PROTECTED]
Subject: Re: [SLUG] fetchmail and Maildir format - oops!!!


This one time, at band camp, [EMAIL PROTECTED] wrote:
>A high number of messages were downloaded, and I'm not sure where they've 
>been stored. /var/spool/mail/ seems to be an empty file. Any 
>clues on how to recover the downloaded mail? (If possible?)

Is procmail installed?  Check /home/$user/Mail or mail or Maildir.

What MTA?  If it's postfix, check the value of mailbox_command or
home_mailbox
in /etc/postfix/main.cf.

Is the host configured as a destination for the mail it's getting; if not it
might be being rejected (in which case the original email accounts will be
getting messages from mailer-daemon) or forwarded on (in which case the
original accounts will be filling up with duplicates).

>Also, any clues on how this /should/ be done?

fetchmail is good; other options involve grabbing the mbox from the current
mail server and using formail and procmail to filter them into users
mailboxes.

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



mail2web - Check your email from the web at
http://mail2web.com/ .


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


Re: [SLUG] large fonts with kde

2001-01-15 Thread [EMAIL PROTECTED]

Owen wrote:

> I installed Mandrake 7.2 at the weekend, everything was working fine.
> However now for some reason whenever I log on as a user (using KDE)
> my title bars and fonts are really large.
> If I log in as root they are normal sized.
>
> I tried using Gnome which comes up fine but if I use any KDE
> applications
> they too come up really large.
> Any suggestion on where to look?
>
> Owen.
>
> --
> SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> More Info: http://slug.org.au/lists/listinfo/slug

Have you tried adding a new user to your box , login and see what
happens

Craig



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



RE: [SLUG] Anyone heard of this? (Redmond Linux)

2001-02-18 Thread [EMAIL PROTECTED]

Anwser to first part, yes. Answer to second part, no.

Original Message:
-
From: Andrew Reilly [EMAIL PROTECTED]
Date: Mon, 19 Feb 2001 08:53:03 +1100
To: [EMAIL PROTECTED]
Subject: [SLUG] Anyone heard of this? (Redmond Linux)



Anyone heard of this before?  Is it what the name suggests that
it could be?




Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



RE: RE: [SLUG] Hardware recommendation

2001-02-21 Thread [EMAIL PROTECTED]

Yes, but your cable modem is only 10Mbits/Sec, well atleast my CM100 is.

Original Message:
-
From: Marty Richards [EMAIL PROTECTED]
Date: Thu, 22 Feb 2001 09:51:56 +1100
To: [EMAIL PROTECTED]
Subject: RE: [SLUG] Hardware recommendation

Also, 486's sometimes have trouble keeping up with a 100Mb card (if you can
find an ISA one?), and PCI is not an option.




Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



RE: [SLUG] Hardware recommendation

2001-02-21 Thread [EMAIL PROTECTED]

Hi,

Firstly is this box to be used only as a firewall, or will it be doing other duties. 
If It's only going to be you connection to cable and ip masq etc I would even bother 
spending big bucks on new PIII/Athlon boards, PCI cards, 128 MB ram.

Here's me fire wall config:

Intel 486 DX 2 66, (over powered btw)
32 MB (once again overkill)
2 Intel Ether Express isa Cards
1 Floppy Router, there are many option in this area eg: LRP, FloppFW, FreeSco etc etc.

On to the main question, I've been using DEC 21140 (I think that's the number) W/O any 
problems at all, These cards are quite affordable (around $50.00 for PCI) and work 
really well. In case your interested I managed to ftp binary files across two of these 
cards on a 100 Mb Hub at 4.5 MBytes/sec not bad considering the SCSI disks were UW and 
rated at 40 Mbits/Sec.

Original Message:
-
From: Nicholas Lawrence [EMAIL PROTECTED]
Date: Wed, 21 Feb 2001 12:15:25 -0800 (PST)
To: [EMAIL PROTECTED]
Subject: [SLUG] Hardware recommendation


Hi all,


I'm putting together a new Linux firewall box for bigpond cable and
am having fun trying to decide between two motherboards.

Doing the relevant googling and archive searches, I have ended up
with two choices:

1. An Asus board with an onboard Realtek 8139.
2. An Aopen board with an onboard Intel 82559.

The case I'm going to use requires a half-height NIC which will be
another 8139.

I noted in my research that the Realtek is not rated very highly
for
performance but appears well-supported.

The Intel 82559 is supposed to be very good for both speed and
support but a few notes in linux-kernel August last year suggested
problems with 2.4pre recognising onboard variants. There didn't
seem to be any followup after that.

For background - the addon card would be plugged into the cable
modem, the onboard into a 100 switch.

I know that the Aopen board would be the better buy but:
1. An additional $100+
2. The Asus board has a nice connector for a front monitoring
panel.

Apologies for the long-winded post - I guess my question boils down
to:

1. Is anyone having problems with 1 or 2 8139 cards in the same
machine?
2. The Intel seems to be a very popular choice - would it be worth
investing in (I know worth is relative but the difference is 128meg
of ram ).

Thanks for your help.



Nicholas



__
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices! http://auctions.yahoo.com/

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


Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



Re: [SLUG] Dual Screen Problem

2001-03-01 Thread [EMAIL PROTECTED]

Crossfire wrote:

> [EMAIL PROTECTED] was once rumoured to have said:
> > Peter Rundle wrote:
> > >
> > > Sluggers,
> > >
> > > How do I get gdm to display / work with a second physical screen?
> > >
> > Afaik You don't.
>
> Bullshit.

very mature


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



Re: [SLUG] Dual Screen Problem Progress

2001-03-01 Thread [EMAIL PROTECTED]

Peter Rundle wrote:

> Ok, kinda got it working.
>
> Seems that the dual screen thing is a limitation of Gnome.
> If I launch E (or even twm, lwm or wmaker) from the xinitrc
> it opens up on the second screen no worries.
>
> I can't move windows from one screen to the other (but I kinda
> figured that wouldn't work anyway cause the DISPLAY variable
> would get narked!, I know I know I should use Xinerama if I
> want to do this because the DISPLAY var remains :0.0 with one
> large virtual display).
>
> Anyways, Next I'll try and launch Gnome from E and see if that
> works.
>
> Oh BTW Single G400 Matrox with dual video ports
>

Hi

startx -- +xinerama

to drag windows between your monitors

Craig


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



Re: [SLUG] How to launch Gnome panel from E (was Dual Screens)

2001-03-01 Thread [EMAIL PROTECTED]

Peter Rundle wrote:

> Ok,
>
> So I have E working on both screens --> (way cool).
>
> I basically only want Gnome for the panel, so I try
> and launch a gnome-session and of course if barfs cause
> the window manager is already running. I can run just
> the gnome control centre from the E menus and all so
> obviously I can just run components of gnome so I
> should be able to just fire up the panel right?
>
> Searching, searching.nup, nup, nup, Umm
> bugger!
>
> Ok I give up! what is the command just to run the gnome
> panel?

ahhh , panel

Craig


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



RE: Re: [SLUG] Dell Laptop with Potato

2001-03-08 Thread [EMAIL PROTECTED]

The latest ALSA drivers work just fine with my Latitude CPxJ650, also using Maestro-3 
chipset. I think I was using v 0.5X

Regards

Mehmet Ozdemir

Original Message:
-
From: Craige McWhirter [EMAIL PROTECTED]
Date: Fri, 9 Mar 2001 10:46:22 +1100
To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: [SLUG] Dell Laptop with Potato


Bill, I got one these for work yesterday and now have a happy Debian system. The only 
issue I know of and haven't tried to get working yet is that Potato does not have 
support for the audio chipset - Maestro 3 - and a few months ago on a previous model I 
could not get sound working. I'm kinda hoping this has changed, I'll find out soon 
enough.




Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



Re: [SLUG] Procmail Shunting

2001-03-18 Thread [EMAIL PROTECTED]

Craige McWhirter wrote:

> I'm looking for a fairly concise source of info on procmail folder pre-sorting. I've 
>used some samples I've found but I'm having no luck thus-far. Here's a relevent 
>sample from my .procmailrc:
>
> - Start .procmail Excerpt -
>
> :0:
> * ^Sender: owner-\/[^@]+
> lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
>
> :0:
> * ^X-BeenThere: \/[^@]+
> lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
>
> :0:
> * ^Delivered-To: mailing list \/[^@]+
> lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
>
> :0:
> * X-Mailing-List: <\/[^@]+
> lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
>
> :0:
> * X-Loop: \/[^@]+
> lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
>
> - End .procmail Excerpt -
>
> This was supposed to pre-shunt mail into relevent folders but doesn't appear to be 
>working. There's nothing in the log files.
>
> --
>
> Cheers,
>   Craige.
>
> --
> SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> More Info: http://slug.org.au/lists/listinfo/slug

Hi ,

heres mine it works great , it put mail in my ~/Mail/group-list


:0:
* X-Mailing-List: <\/[^@]+
`echo $MATCH | sed -e 's/[\/]/_/g'`

:0:
* ^Sender: owner-\/[^@]+
`echo $MATCH | sed -e 's/[\/]/_/g'`

:0:
* ^X-BeenThere: \/[^@]+
`echo $MATCH | sed -e 's/[\/]/_/g'`

:0:
* ^Delivered-To: mailing list \/[^@]+
`echo $MATCH | sed -e 's/[\/]/_/g'`

:0:
* X-Loop: \/[^@]+
`echo $MATCH | sed -e 's/[\/]/_/g'`

# Slug
:0:
* ^Sender:[SLUG][EMAIL PROTECTED]
slug

# Enlightenment
:0:
* ^Sender:[E-devel][EMAIL PROTECTED]
edevel

# broken lists using win32 software and NO LIST HEADER. Dumb.
:0:
* ^Sender: (Bugtraq|Incidents Mailing|VULN-DEV) List
bugtraq

# MySQL
:0:
* ^Sender:[MySQL][EMAIL PROTECTED]
mysql


--
Regards Craig

Oceania Computers
Port Macquarie NSW AU




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



Re: [SLUG] Procmail Shunting

2001-03-18 Thread [EMAIL PROTECTED]

Craige McWhirter wrote:

> What I failed to mention was that it was suppised to pre-shunt mailing list mail 
>(from most mailing lists) into like named folders.
>
> Thus spake Craige McWhirter ([EMAIL PROTECTED]):
>
> > I'm looking for a fairly concise source of info on procmail folder pre-sorting. 
>I've used some samples I've found but I'm having no luck thus-far. Here's a relevent 
>sample from my .procmailrc:
> >
> > - Start .procmail Excerpt -
> >
> > :0:
> > * ^Sender: owner-\/[^@]+
> > lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
> >
> > :0:
> > * ^X-BeenThere: \/[^@]+
> > lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
> >
> > :0:
> > * ^Delivered-To: mailing list \/[^@]+
> > lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
> >
> > :0:
> > * X-Mailing-List: <\/[^@]+
> > lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
> >
> > :0:
> > * X-Loop: \/[^@]+
> > lists/`echo $MATCH | sed -e 's/[\/]/_/g'`
> >
> > - End .procmail Excerpt -
> >
> > This was supposed to pre-shunt mail into relevent folders but doesn't appear to be 
>working. There's nothing in the log files.
> >
> > --
> >
> > Cheers,
> >   Craige.
> >
> > --
> > SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> > More Info: http://slug.org.au/lists/listinfo/slug
>
> --
>
> Cheers,
>   Craige.
>
> --
> SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> More Info: http://slug.org.au/lists/listinfo/slug

Oh , and if you do a tail -f ~/.procmail_log
you should see this happening

 cut 

 Subject: Re: Scale/load for mysql
  Folder: mysql3510
>From craig  Wed Mar 14 11:54:50 2001
  Folder: /home/craig/Mail/inbox376
>From craig  Wed Mar 14 11:55:18 2001
  Folder: /home/craig/Mail/inbox376
>From [EMAIL PROTECTED]  Wed Mar 14 11:58:13 2001
 Subject: Re: [E-devel] E web pages?
  Folder: enlightenment-devel  4111
>From [EMAIL PROTECTED]  Wed Mar 14 12:08:32 2001
 Subject:  FORW: [ANNOUNCE]  Apache 1.3.19 Released
  Folder: bugtraq      8890
>From [EMAIL PROTECTED]  Wed Mar 14 12:08:33 2001
 Subject: Re: [E-devel] efsd from CVS compilation
  Folder: enlightenment-devel      3254
>From [EMAIL PROTECTED]  Wed Mar 14 12:13:46 2001
 Subject: Question!
  Folder: netfilter    7216
>From [EMAIL PROTECTED]  Wed Mar 14 
>12:18:48 2001
 Subject: [railroadandco] Shunting
  Folder: railroadandco    3420
>From [EMAIL PROTECTED]  Wed Mar 14 12:18:54 2001
 Subject: RE: AW: MASQ problems
  Folder: netfilter7079
>From [EMAIL PROTECTED]  Wed Mar 14 12:23:56 2001
 Subject: [SLUG] Easiest MP3 ripping around
  Folder: slug 2641
>From [EMAIL PROTECTED]  Wed Mar 14 12:24:01 
>2001
 Subject: test suite skips all tests
  Folder: mysql6046

 cut 

--
Regards Craig

Oceania Computers
Port Macquarie NSW AU




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



RE: Re: SLUG Membership WAS:[SLUG] JOB: Exciting Development Opportunities

2001-04-17 Thread [EMAIL PROTECTED]

> > Hopefully you were tuned in to the troubles we've had with our business
> > documents and bank account - if we had had a list of members, we would
> > certainly have done more with it.
>
> Sorry I can't say that I was. Like I said my new little beastie is
> taking up a lot of my computing time. Any chance of brief recap, or a
> pointer to when this was disussed on the list so I can catch up.

Basically our treasurer disappeared. Thus we were stymied through
lack of access to our records and funds. Hopefully the problem is
under control this year and we won't have the same thing happen.


> > This I accept, and really $25.00 + GST isn't really going to be missed,

> $25.00 (inc. GST).

The web page states:
"Membership is currently only $25 p.a. (plus GST post June 2000) and entitles you to 
free or ultra low cost entry to all SLUG activities. "

which should probably be changed then.

> > but one may still ask the question what the $25.00 gets them, other a
> > peice of papaer and voting rights.

> The right to sit on the committee as well.

> What do you expect for your membership? Your (plural) feedback will us
> to decide what our priorities as a committee should be.

Don't know ??, maybe take a look at what other clubs provide, maybe increase the 
membership a little and give SLUG limited edition tshirts etc, etc.


Regards

Mehmet Ozdemir


Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



RE: Re: Re: SLUG Membership WAS:[SLUG] JOB: Exciting Development Opportunities

2001-04-17 Thread [EMAIL PROTECTED]

Original Message:
-
From: Anand Kumria [EMAIL PROTECTED]
Date:   Wed, 18 Apr 2001 10:43:41 +1000


> > The web page states:
> > "Membership is currently only $25 p.a. (plus GST post June 2000) and entitles you 
>to free or ultra low cost entry to all SLUG activities. "

> > which should probably be changed then.

> --> Jeff

> Actually have you thought about participating with the web-site redesign.

Anand,

Are you asking me or Jeff ?, anyway I'd be happy to help out. Just let me know.

Regards

Mehmet




Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



[SLUG] Ximian Gnome 1.4 Niggle

2001-04-25 Thread [EMAIL PROTECTED]

Hello,

Just installed Ximian Gnome 1.4 on my Redhat 7.1 Laptop. While everything installed 
fine (although it took over 10 hours to download on cable !!!), post installation of 
have 1 small problem.

Ximian defaults to Nautilus, nautilus tho pretty is slw, so I turned it off by 
going to preferences and unticked the option to have nautilus draw my desktop. So far 
so good, next time when I reload X, I get the standard desktop and gmc as my 
filemanager. But there is still a nautilus process running, this process seems to stop 
me from shutting down gnome, eg the shutdown dialog will not pop-up until I kill the 
nautilus proccess.

My question is where would this nautilus process be started from, and how can I stop 
it from being loaded. I noticed that when I run gnome as root it doesn't default to 
nautilus and everything works fine ??


Regards

Mehmet Ozdemir


Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



RE: [SLUG] 2 x Mac plus with keyboard and mouse

2001-05-15 Thread [EMAIL PROTECTED]

Terry,

As per: http://www.mac.linux-m68k.org/ the answer is no. You need a minimum of a 
MC68030 which the Mac Plus isn't (MC68000@8Mhz). This requirment would be because an 
MMU is required which the MC68000 doesn't have.

Mehmet Ozdemir

Original Message:
-
From: Terry Collins [EMAIL PROTECTED]
Date: Wed, 16 May 2001 13:52:14 +1000
To: [EMAIL PROTECTED]
Subject: [SLUG] 2 x Mac plus with keyboard and mouse


Are these any good for running Linux?
(is that an open question or what {:_)

If so, which version/distro?

"2 x Mac plus with keyboard and mouse"

What can reasonably be done with them?

taah.

--
   Terry Collins {:-)}}} Ph(02) 4627 2186 Fax(02) 4628 7861
   email: [EMAIL PROTECTED]  www: http://www.woa.com.au
   WOA Computer Services 

 "People without trees are like fish without clean water"

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


Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



RE: Re: [SLUG] 2 x Mac plus with keyboard and mouse

2001-05-15 Thread [EMAIL PROTECTED]

Ahhh No it won't,

Please refer to earlier posts from Crossfire and myself, YOU NEED AND MMU
equiped Mac of which the Mac Plus'es are not. The debian site you mailed
mentions this in the second paragraph

Mehmet Ozdemir

Original Message:
-
From: Craige McWhirter [EMAIL PROTECTED]
Date: Wed, 16 May 2001 15:08:00 +1000
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: [SLUG] 2 x Mac plus with keyboard and mouse


Ta, Jon.

Terry, you can run Linux on them:

http://www.debian.org/ports/m68k/

Bring it to the next InstallFest (or tonight).




Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



[SLUG] ftp problem

2001-05-22 Thread [EMAIL PROTECTED]

Hi All,

I have a problem with ftping files under rh7.1,

The problem is that the transfers will start then stall. Here's the config

Firewall/Gateway running FREESCO 0.27
connected to Optus@home
Gateway is running dial-in server
eth0 = optus
eth1 = lan
ppp0 = dial-in

When I dial-in using my Notebook (rh7.1) ftp sessions will start, download around 8-10 
K then stall.

When I dial-in Using Win2k (on the same notebook) ftp's work fine, downloading the 
entire file w/o problems.

In both instances I using command line ftp utils.

ftp.ximian.com seems to fail everytime, whereas mirror.aarnet.edu.au will work on and 
off.

My redhat 7.1 is a vanilla install other ximian-gnome 1.4

Does anyone have any thoughts ??

Regards

Mehmet Ozdemir


Mail2Web - Check your email from the web at
http://www.mail2web.com/ .


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



RE: [SLUG] USB Memory keys

2001-09-17 Thread [EMAIL PROTECTED]

$99.00 US for an 8 MB stick ouch.

an alternative may be getting a 64 MB smart media (AU$105.00) and a miniture usb smart 
media reader (AU$80.00). Only marginally bigger than the usb key but much more useful. 
Only question is if the usb reader is supported un linux, back to square one.

Have a look at www.flashmemory.com.au

Mehmet Ozdemir

Original Message:
-
From: Marco Gatta [EMAIL PROTECTED]
Date: Tue, 18 Sep 2001 09:51:55 +1000
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: RE: [SLUG] USB Memory keys


I have one of the IBM USB keys, and (from what I have found by trying to
getting mine to work, and from others on the web) they won't work under
Linux. But IBM will be releasing version 2 of this key (date unknown),
which will work under Linux.

Heres the link:
http://commerce-29.www.ibm.com/cgi-bin/ncommerce/ProductDisplay?prrfnbr=
1904514&cntrfnbr=1&prmenbr=1&cntry=036&lang=en_AU&scrfnbr=89

Don't know about the others on the market.

Marco


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf
Of Steve
Sent: Tuesday, 18 September 2001 9:24 AM
To: [EMAIL PROTECTED]
Subject: [SLUG] USB Memory keys

Is anyone using one of these aforementioned beasties?
I know IBM make one which is apparently platform agnostic, but do
you think I could find it on ibm.com.au, no.

So, anyone who is using one, and not necessarily the IBM one, could you
let us know of any good/bad stories, prices, and where you got it
from even! Obviously I'm looking for ones which are reliable under
Linux and kernel 2.4.x
Kernel config tips and any related URL's gratefully accepted

Thanks
Steve
--
The most exciting phrase to hear in science,
the one that heralds new discoveries, is not
"Eureka!" but "That's funny..."' - Isaac Asimov








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


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


mail2web - Check your email from the web at
http://mail2web.com/ .


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



[SLUG] RE: [SLUG-ANNOUNCE] Debian SIG

2001-10-03 Thread [EMAIL PROTECTED]

Do yo mean Wednesday 10 October?

Thx
James

Original Message:
-
From: Craige McWhirter [EMAIL PROTECTED]
Date: Thu, 4 Oct 2001 15:15:44 +1000
To: [EMAIL PROTECTED]
Subject: [SLUG-ANNOUNCE] Debian SIG


Afternoon one and all. Okay, no speaker this month. Due to "a lot of
stuff happenning" I failed to organise a speaker for this months Debian
SIG. Pretty weak, I know but please hold back those tears and sobs as I
have an alternate cunning plan. This month I'd like everyone one to
tell of at least 3 Debian experiences they've had, good, bad or
indifferent. Perhaps even discuss a feature they think is tres chic.

The telling of these tales will be in Haiku format.

The best Haiku Debian tale gets the complimentary meal usually reserved
for the guest speaker.

Where: Woolloomooloo Bay Hotel - boardroom (upstairs)
When: Wednesday, 12th September 19:00 - 20:00
Cost: $0,
  $10 if you pre-order tea/coffee
Misc: Dinner, alcohol are available
Park: Domain (closes 21:00) or
  Beside the Bells Hotel

--

Cheers,
  Craige.


mail2web - Check your email from the web at
http://mail2web.com/ .


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



[SLUG] Kernel lockup when ejecting pcmcia card

2001-10-22 Thread [EMAIL PROTECTED]

Hello all,

I have a problem on desktop pc which is equipped with a ISA tcic chipset pcmcia reader.

PCMCIA starts up fine and recognises cards being inserted etc, but when I eject the 
card the machine totally locks up, only the reset switch brings it back to life, then 
I have to cross my fingers a hope that fsck gets thru w/o problems.

This problem doesn't occur if i first shutdown pcmcia then eject the card. I have been 
using this method but sometimes i forget.

My system is running rh7.1 with all the latest up2date patches applied (2.4.9) and the 
latest kernel-pcmcia in rawhide. This problem was also occuring in the stock rh7.1 
distro. Does any know what is happening here, I would really love to get pcmcia 
working properly or moving to a journalling filesystem :), I address in my next post.

Regards

Mehmet Ozdemir


mail2web - Check your email from the web at
http://mail2web.com/ .


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



[SLUG] ext3 on Redhat 7.1

2001-10-22 Thread [EMAIL PROTECTED]

Hello All,

Can someone point me in the right direction to getting EXT3 going on my RH7.1 box. I'd 
like to get a journaling filesystem because of my pcmcia lockups, (see other msg). 
Anyway I've been won over by the redhat propaganda about ext3 and I think it the fs 
for me.

So far I've checked beta.redhat.com and that info seems old, dated Oct/2000 plus all 
the files are for the 2.2 series kernels.

Regards

Mehmet Ozdemir




mail2web - Check your email from the web at
http://mail2web.com/ .


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



Re: [SLUG] mandrake 8.1 and swat

2001-11-04 Thread [EMAIL PROTECTED]

I just installed 8.1 and I cant get it going either... strange

BTW did you notice that the smbadduser command is missing from the samba*.rpms
I grabbed the file from the RedHat 7.2 cdrom and used what we all learned the other 
day about unpacking and rpm
rpm2cpio file.rpm | cpio -d -i
and grabbed the smbadduser script and copied it to the relevant directory

Chris

PS here it is if you need it

#!/bin/csh
#
# smbadduser - Written by Mike Zakharoff
#
# * Sun Aug 6 2000 Philipp Knirsch <[EMAIL PROTECTED]>
# - Bugfix to change file location from /etc to /etc/samba and to use
#   smbpasswd -a to add the user entry to the smbpasswd file in case it didn't
#   exist before.
#

unalias *
set path = ($path)

set smbpasswd = /etc/samba/smbpasswd
set user_map  = /etc/samba/smbusers
#
# Set to site specific passwd command
#
set passwd= "cat /etc/passwd"
#set passwd= "niscat passwd.org_dir"
#set passwd= "ypcat passwd"

set line = "--"
if ($#argv == 0) then
echo $line
    echo "Written: Mike Zakharoff email: [EMAIL PROTECTED]"
echo ""
echo "   1) Updates $smbpasswd"
echo "   2) Updates $user_map"
echo "   3) Executes smbpasswd for each new user"
echo ""
echo "smbadduser unixid:ntid unixid:ntid ..."
echo ""
echo "Example: smbadduser zak:zakharoffm johns:smithj"
echo $line
exit 1
endif

touch $smbpasswd $user_map
set new  = ()
foreach one ($argv)
echo $one | grep ':' >& /dev/null
if ($status != 0) then
echo "ERROR: Must use unixid:ntid like -> zak:zakharoffm"
continue
endif
set unix = `echo $one | awk -F: '{print $1}'`
set ntid = `echo $one | awk -F: '{print $2}'`

set usr = `eval $passwd | awk -F: '$1==USR {print $1}' USR=$unix`
if ($#usr != 1) then
echo "ERROR: $unix Not in passwd database SKIPPING..."
continue
endif

# Fix 8/7/2000 Phil Knirsch: Removed the smbpasswd stuff here and fixed
# the way the usermap gets updated as that one was really wrong: If a
# user was added twice the usermap would contain 2 entries! We now
# first select the existing entry, remove it from the usermap and add
# a new one with the new ntid. If something goes wrong the new entry
# will as before simply be added to the file (for manual fixing later).
set usr = `eval cat $user_map | awk -F= '{if(match($1, USR" *") != 0) print 
$2}' USR=$unix`

if ($unix != $ntid) then
echo "Adding: {$unix = $usr $ntid} to $user_map"
cat $user_map | sed /"$unix.*"/d > $user_map.new
if (-e $user_map.new) then
cp $user_map.new $user_map
endif
rm $user_map.new
echo "$unix = $usr $ntid" >> $user_map
endif
set new = ($new $unix)
end

#
# Enter password for new users
#
foreach one ($new)
echo $line
echo "ENTER password for $one"

# Fix Phil Knirsch 8/6/2000: Use the -a option to create the user
# entry in case it didn't exist before. This way we get rid of the
# file format dependent awk replacement in the previous version.
smbpasswd -a $one
end

On Fri, 2 Nov 2001 14:03:37 +1100 
"Ben Donohue" <[EMAIL PROTECTED]> wrote:

> hi slugs,
> how do i turn on swat on a mandrake 8.1 setup?
> the docs on swat talk about a line in /etc/inetd.conf but mandrake does
> not have a inetd.conf. do i create a inetd.conf or add the line to the
> end of xinetd.conf.
> what's the difference between these two anyway?
> thanks
> ben
> 
> 
> 
> 
> 
> -- 
> SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
> More Info: http://lists.slug.org.au/listinfo/slug

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



  1   2   >