RE: [SLUG] Build a local Network Debian Packages cache AFTER installing

2002-07-11 Thread ramon buckland

Beautiful!

Matthew that worked a treat!

 apt-proxy does exactly that.

Wowo! This is the one! I installed it and it almost walked into the kitchen
and
baked me a  cake.. almost .. there was a bit of configuring first.

It needed a few things which weren't setup as dependancies (shame .. oh well)
-- it needs rsync (this is a NEW system, remember, the HDD died on the
weekend)
apt-get install rsync

 Packages get saved to /var/cache/apt/archives after download.  You can then
 transfer them out to somewhere more tasty after that.

apt-proxy comes with a neato tool called apt-proxy-import

It requires dpkg-dev (to get info on each package in the archive, to work out
what
structure to put them under.)

You just modify the /etc/apt/sources.list
adding your apt-server as the sources .. (for eg)

deb http://saxon:/main woody main contrib non-free
deb http://saxon:/non-US woody/non-US main contrib non-free
deb-src http://saxon:/main woody main contrib non-free
deb-src http://saxon:/non-US woody/non-US main contrib non-free
deb http://saxon:/security woody/non-US main contrib non-free

and then update it all

# apt-get update

and then
# apt-proxy-import /var/cache/apt/archives

And then I imported the other three Debian boxes via ...

# mkdir /tmp/ibook_apt  cd /tmp/ibook_apt  ssh 192.168.1.112 tar cvfz - -C
/var/cache/apt archives | tar xfz -
# apt-proxy-import /tmp/ibook_apt/archives

remove those and do next box..

 [1] Minty-fresh breath not guaranteed.

Mmmm .. Minty-fresh breath obtained.

ramon




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



RE: [SLUG] Build a local Network Debian Packages cache AFTERinstalling

2002-07-11 Thread Matthew Palmer

On Thu, 11 Jul 2002, ramon buckland wrote:

 Beautiful!
 
 Matthew that worked a treat!
 
  apt-proxy does exactly that.
 
 Wowo! This is the one! I installed it and it almost walked into the kitchen
 and
 baked me a  cake.. almost .. there was a bit of configuring first.

You should talk to the committee or the Debian SIG people about a talk on
the topic.  Short one would probably do.

 It needed a few things which weren't setup as dependancies (shame .. oh well)

Not sure what version you've got, but the version in Woody I'm looking at
(1.3.0) has a dependancy on wget | rsync.  It suggests dpkg-dev as well,
which is how it should be.

  Packages get saved to /var/cache/apt/archives after download.  You can then
  transfer them out to somewhere more tasty after that.
 
 apt-proxy comes with a neato tool called apt-proxy-import

It didn't when I started out with it (days of old and all that stuff) but
it's good to see they've plugged the holes.

[install guide snipped]

Is all this documented like this?  Sounds like you might have found yourself
a job if it isn't.  And volunteer to talk about it at SLUG (one of the mini
talks).


-- 
---
#include disclaimer.h
Matthew Palmer, Geek In Residence
http://ieee.uow.edu.au/~mjp16

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



RE: [SLUG] Build a local Network Debian Packages cache AFTER installing

2002-07-11 Thread ramon buckland


 Not sure what version you've got, but the version in Woody I'm looking at
 (1.3.0) has a dependancy on wget | rsync.  It suggests dpkg-dev as well,
 which is how it should be.


Yeah, mine shows rsync in the dependency (don't know how to read that nice big
line :-)


saxon:/tmp# apt-cache showpkg apt-proxy
Package: apt-proxy
Versions:
1.3.0(/var/lib/apt/lists/saxon:_main_dists_woody_main_binary-i386_Packages
)(/var/lib/dpkg/status)

Reverse Depends:
Dependencies:
1.3.0 - wget (16 (null)) rsync (0 (null)) grep-dctrl (0 (null)) tcpd (0
(null))
 netbase (0 (null)) ash (0 (null)) wget (0 (null)) rsync (0 (null)) dpkg-dev
 (0 (null)) stat (0 (null)) apt (0 (null))


 (1.3.0) has a dependancy on wget | rsync.  It suggests dpkg-dev as well,

Is the dependency read as wget ||(or) rsync, because I had wget.


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



RE: [SLUG] [OT] PCMCIA card woes

2002-07-11 Thread Visser, Martin (Sydney)

No real experience apart from the fact that I have not had a problem with various 
Compaq, 3Com, Xircom, or Kouwell cards in my Compaq Armada ;-) (They don't even supply 
a rubber mallet with them)

Funnily enough it also seems that http://www.pcmcia.org/pccard.htm doesn't have enough 
detailed physical info, apart from broad outside dimensions, to compare where the 
tolerances are. Maybe you need to be a member to get the details.

Good luck, Martin.

Martin Visser
Network Consultant - Global Services
COMPAQ, part of the new HP

3 Richardson Place
North Ryde, Sydney NSW 2113, Australia
Phone *: +61-2-9022-1670Mobile *: +61-411-254-513
   Fax 7: +61-2-9022-1800 E-mail * : martin.visserAThp.com




-Original Message-
From: Howard Lowndes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 11 July 2002 3:00 PM
To: Mail List - SLUG
Subject: [SLUG] [OT] PCMCIA card woes


Has anyone ever come across a problem where a PCMCIA type 2 card will not
seat down onto the connectors because of a problem with the different
heights of the side guidance slots.

Basically my 3Com PCMCIA NIC has died (I suspect the dongle but it is not
replaceable), and the Surecom replacement won't go in.  Looking at it
closely I see a physical difference in the side guides.  The PC is a
geriatric Toshiba Satellite Pro 430CDS

Any pointers would be a help.

-- 
Howard.
LANNet Computing Associates - Your Linux people
Contact detail at http://www.lannetlinux.com
He, who will not reason, is a bigot; he, who cannot,
 is a fool; and he, who dares not, is a slave.
 - William Drummond, Scottish writer (1585-1649)

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



RE: [SLUG] Build a local Network Debian Packages cache AFTERinstalling

2002-07-11 Thread Matthew Palmer

On Thu, 11 Jul 2002, ramon buckland wrote:

  (1.3.0) has a dependancy on wget | rsync.  It suggests dpkg-dev as well,
 
 Is the dependency read as wget ||(or) rsync, because I had wget.

Yeah, that's how it's read.  If you've got wget already, then it won't
bother getting rsync.  Until debian starts using the rsync-compatible gzip,
rsync doesn't buy you much (if anything) in speed, so wget is pretty much
all you need.


-- 
---
#include disclaimer.h
Matthew Palmer, Geek In Residence
http://ieee.uow.edu.au/~mjp16

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



RE: [SLUG] finding libraries to link (no subject)

2002-07-11 Thread Visser, Martin (Sydney)

Melinda,

I haven't seen a reply for this yet, so I thought I'd give it a go.

Not having my linux box up at the mo' but I think you will find that the .so files are 
just the runtime libraries dynamically linked. You need to have the development 
versions of both X11 and pgplot libraries which will be .a. If you are building  a 
standard package, normally running configure will tell you that you don't have the 
required libraries. From memory the Makefile will define an environment variable (or 
add -L flag) as to where to get the libraries during linking.

I'm short on detail and confidence, but hopefully this leads you in the right 
direction :-)


Martin Visser
Network Consultant - Global Services
COMPAQ, part of the new HP

3 Richardson Place
North Ryde, Sydney NSW 2113, Australia
Phone *: +61-2-9022-1670Mobile *: +61-411-254-513
   Fax 7: +61-2-9022-1800 E-mail * : martin.visserAThp.com




-Original Message-
From: Melinda Taylor [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 10 July 2002 4:50 PM
To: [EMAIL PROTECTED]
Subject: [SLUG] (no subject)



This is probably a sily question but I keep getting X11 and pgplot errors
when compiling things like:

/usr/bin/ld: cannot find -lX11
collect2: ld returned 1 exit status
make[1]: *** [sm] Error 1

/usr/bin/ld: cannot find -lpgplot

The X libraries are installed as is pgplot with PGPLOT environment
settings all set.

If I check /etc/ld.so.conf:

/usr/kerberos/lib
/usr/X11R6/lib
/usr/lib/qt-3.0.3/lib
/usr/lib/qt2/lib
/usr/lib/wine
/usr/lib/sane
/usr/local/pgplot

and

ldconfig -v | grep pgplot
ldconfig: Path `/sw/pgplot' given more than once
/usr/local/pgplot:
libpgplot.so - libpgplot.so


Doesn't this mean any -lpgplot calls should work?

ANy help would be appreciated.

Thanks,

Melinda

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



RE: [SLUG] [OT] PCMCIA card woes

2002-07-11 Thread Howard Lowndes

It seems to be a 16-bit bus/32-bit bus thing, so that you can't put a
32-bit cardbus into a 16-bit PC.  I gather the pinouts are different.

On Thu, 11 Jul 2002, Visser, Martin (Sydney) wrote:

 No real experience apart from the fact that I have not had a problem with various 
Compaq, 3Com, Xircom, or Kouwell cards in my Compaq Armada ;-) (They don't even 
supply a rubber mallet with them)

 Funnily enough it also seems that http://www.pcmcia.org/pccard.htm doesn't have 
enough detailed physical info, apart from broad outside dimensions, to compare where 
the tolerances are. Maybe you need to be a member to get the details.

 Good luck, Martin.

 Martin Visser
 Network Consultant - Global Services
 COMPAQ, part of the new HP

 3 Richardson Place
 North Ryde, Sydney NSW 2113, Australia
 Phone *: +61-2-9022-1670Mobile *: +61-411-254-513
Fax 7: +61-2-9022-1800 E-mail * : martin.visserAThp.com




 -Original Message-
 From: Howard Lowndes [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, 11 July 2002 3:00 PM
 To: Mail List - SLUG
 Subject: [SLUG] [OT] PCMCIA card woes


 Has anyone ever come across a problem where a PCMCIA type 2 card will not
 seat down onto the connectors because of a problem with the different
 heights of the side guidance slots.

 Basically my 3Com PCMCIA NIC has died (I suspect the dongle but it is not
 replaceable), and the Surecom replacement won't go in.  Looking at it
 closely I see a physical difference in the side guides.  The PC is a
 geriatric Toshiba Satellite Pro 430CDS

 Any pointers would be a help.



-- 
Howard.
LANNet Computing Associates - Your Linux people
Contact detail at http://www.lannetlinux.com
He, who will not reason, is a bigot; he, who cannot,
 is a fool; and he, who dares not, is a slave.
 - William Drummond, Scottish writer (1585-1649)

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



RE: [SLUG] finding libraries to link (no subject)

2002-07-11 Thread Tony . Young

I'm not sure that that's the answer to the problem.
I think to get an answer from the list you'll need to supply a bit more
info. If we could see the link command you're using and the options passed
to it that may help. There are various options that can specify static only
or dynamic only linkage, or that can tell the compiler/linker to ignore
ldconfig settings, and we don't know if you may have inadvertantly use one
or more of them.

.so files are shared libraries (Shared Object)
.a files are static libraries (Archive)
neither are used exclusively for development or release and often both are
provided - ie you may get both static and shared versions of the same
library, be it development or release.

Note also that ldconfig -v probably gives you more info than you really
need, and will take significant time to complete, when simply checking for
library resolution. I generally use ldconfig -p when just checking that the
lib is searchable.

ty

 -Original Message-
 From: Visser, Martin (Sydney) [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, 11 July 2002 17:26
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: RE: [SLUG] finding libraries to link (no subject)
 
 
 Melinda,
 
 I haven't seen a reply for this yet, so I thought I'd give it a go.
 
 Not having my linux box up at the mo' but I think you will 
 find that the .so files are just the runtime libraries 
 dynamically linked. You need to have the development versions 
 of both X11 and pgplot libraries which will be .a. If you are 
 building  a standard package, normally running configure 
 will tell you that you don't have the required libraries. 
 From memory the Makefile will define an environment variable 
 (or add -L flag) as to where to get the libraries during linking.
 
 I'm short on detail and confidence, but hopefully this leads 
 you in the right direction :-)
 
 
 Martin Visser
 Network Consultant - Global Services
 COMPAQ, part of the new HP
 
 3 Richardson Place
 North Ryde, Sydney NSW 2113, Australia
 Phone *: +61-2-9022-1670Mobile *: +61-411-254-513
Fax 7: +61-2-9022-1800 E-mail * : martin.visserAThp.com
 
 
 
 
 -Original Message-
 From: Melinda Taylor [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, 10 July 2002 4:50 PM
 To: [EMAIL PROTECTED]
 Subject: [SLUG] (no subject)
 
 
 
 This is probably a sily question but I keep getting X11 and 
 pgplot errors
 when compiling things like:
 
 /usr/bin/ld: cannot find -lX11
 collect2: ld returned 1 exit status
 make[1]: *** [sm] Error 1
 
 /usr/bin/ld: cannot find -lpgplot
 
 The X libraries are installed as is pgplot with PGPLOT environment
 settings all set.
 
 If I check /etc/ld.so.conf:
 
 /usr/kerberos/lib
 /usr/X11R6/lib
 /usr/lib/qt-3.0.3/lib
 /usr/lib/qt2/lib
 /usr/lib/wine
 /usr/lib/sane
 /usr/local/pgplot
 
 and
 
 ldconfig -v | grep pgplot
 ldconfig: Path `/sw/pgplot' given more than once
 /usr/local/pgplot:
   libpgplot.so - libpgplot.so
 
 
 Doesn't this mean any -lpgplot calls should work?
 
 ANy help would be appreciated.
 
 Thanks,
 
 Melinda
 
 -- 
 SLUG - Sydney Linux User's Group - http://slug.org.au/
 More Info: http://lists.slug.org.au/listinfo/slug
 -- 
 SLUG - Sydney Linux User's Group - http://slug.org.au/
 More Info: http://lists.slug.org.au/listinfo/slug
 
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug



RE: [SLUG] OT if you stretch the point somewhat.

2002-07-11 Thread Visser, Martin (Sydney)

I have fixed a kids musically keyboard and a computer keyboard like this. I also had 
problems with the flexible printed circuit they use.

A soft graphite pencil does work, but is fairly short term but eventually the graphite 
seems to wear and migrates away. 

I have had much better luck using the paint-on repair kits for rear-windscreen 
heaters. Any auto accessory or even $2 shop or variety store might have these. These 
seem to be basically a metallic paint and are much more durable. YMMV

Martin Visser
Network Consultant - Global Services
COMPAQ, part of the new HP

3 Richardson Place
North Ryde, Sydney NSW 2113, Australia
Phone *: +61-2-9022-1670Mobile *: +61-411-254-513
   Fax 7: +61-2-9022-1800 E-mail * : martin.visserAThp.com




-Original Message-
From: pop.iprimus.com.au [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 10 July 2002 9:23 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [SLUG] OT if you stretch the point somewhat.


Hey

Yeah its just a carbon pad you can either try and remove a carbon pad
from some other not so used piece of electronics and replace it (yes you
can remove it often its just stuck on with cheap glue) or you CAN buy
RFI coating paint (I think you can get some at Dick Smith)that does the
trick.
What I usually do though is replace the whole pad ,I have a massive
collection of mixed sizes in the lab because i do product development
and I often have to try different pad sizes to get a proper response.

If all fails just use some tin foil you use to cover the Sunday roast
and glue that on over the worn out carbon pad.


Richard Neal


***
Im not a geek and I can prove it just ask my AI quantum state computer I
built out of mums washing machine.

Gentoo Linux 1.3a


On Tue, 2002-07-09 at 17:07, Bill Bennett wrote:
 I have a little pocket organiser (Canon DM-320 $10 at the Post
 Office (many) years ago, no expense spared when I'm looking
 after Number One). Unfortunately, I've become rather addicted
 to it.
 
 So when the button that tells me the time began to fail, I
 carefully prised the casing apart and inspected.
 
 There's a little pad that connects to a section on the circuit
 board when you press it. The conducting material has worn away
 to the extent that pressing the pad makes no odds.
 
 The original conducting material (carbon?) looks like it was
 impregnated into the pad. I could probably paint some conducting
 material over the face of the pad using a dinky brush.
 
 But what? Is there such a thing a liquid carbon? I'm not sure
 what the common-or-garden pencil uses these days.
 
 Any suggestions will be carefully considered.
 
 Uh, please eschew the cracks about cheapness. I have great
 affection for that little dooflang. The breed is now well and
 truly extinct, with the exception of a solitary specimen that
 used to sit in my top pocket...
 
 Regards,
 
 William Bennett.
 -- 
 SLUG - Sydney Linux User's Group - http://slug.org.au/
 More Info: http://lists.slug.org.au/listinfo/slug


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



RE: [SLUG] finding libraries to link (no subject)

2002-07-11 Thread Matthew Palmer

On Thu, 11 Jul 2002, Visser, Martin (Sydney) wrote:

 I haven't seen a reply for this yet, so I thought I'd give it a go.

You must have missed mine.  

 Not having my linux box up at the mo' but I think you will find that the
 .so files are just the runtime libraries dynamically linked. You need to
 have the development versions of both X11 and pgplot libraries which will
 be .a.

No, .a is the object archive - a static library.  Code from those gets
incorporated directly into the finished binary, meaning that a library
upgrade requires a recompile, and if you have several programs with the same
library code you'll (effectively) a copy of the library for every program.

In short, you don't want to use them in the general case.  Debugging and
statically linked rescue programs are the special case.

 If you are building a standard package, normally running

Finding a standard package is the hard part.  GNU autoconf is close, but is
unweildy and an overhead which most academic programmers (which I think was
who produced this monstrosity) aren't willing to tolerate.

 configure will tell you that you don't have the required libraries.
 From memory the Makefile will define an environment variable (or add -L
 flag) as to where to get the libraries during linking.

The -L flag is the one which specifies an additional directory to look for
linker stubs.


-- 
---
#include disclaimer.h
Matthew Palmer, Geek In Residence
http://ieee.uow.edu.au/~mjp16

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



[SLUG] Re: Apache compile problem

2002-07-11 Thread Kerkhoven

Hi,

Answer to this problem;
http://lists.slug.org.au/archives/slug/2002/04/msg00147.html


 * To: Slug slug@xxx
 * Subject: [SLUG] Apache compile problem
 * From: Simon Bryan sbryan@xxx
 * Date: Fri Apr 5 14:52:03 2002

Hi all,
I have been using Apachetoolbox to compile Apache on a new server, I want to
include PHP, MySql and Postgres support, and all seemed well until I go to
compile Apache where I get:

http_request.c: In function `get_path_info':
http_request.c:191: structure has no member named `execfilename'
http_request.c:191: structure has no member named `execfilename'
http_request.c: In function `directory_walk':
http_request.c:582: structure has no member named `execfilename'
http_request.c:582: structure has no member named `execfilename'
http_request.c:593: structure has no member named `execfilename'
http_request.c:593: structure has no member named `execfilename'
make[3]: *** [http_request.o] Error 1
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory `/usr/local/Apachetoolbox/apache_1.3.24/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory `/usr/local/Apachetoolbox/apache_1.3.24'
make: *** [build] Error 2


and I have no idea about the cause of this, so any help appreciated.

_

Simon Bryan
IT Manager - OLMC Parramatta
ICQ#:137562751
http://www.olmc.nsw.edu.au


-


http://www.monkey.org/openbsd/archive/misc/0202/msg01965.html


 * To: Steve Wingate [EMAIL PROTECTED]
 * Subject: Re: Frontpage 2002 + OpenBSD-current, Apache 1.3.23
 * From: Dan Harnett [EMAIL PROTECTED]
 * Date: Tue, 26 Feb 2002 12:55:39 -0500
 * Cc: [EMAIL PROTECTED]
 * References: [EMAIL PROTECTED]

On 25 Feb 2002 15:27:37 -0800
Steve Wingate [EMAIL PROTECTED] wrote:

  Has anyone configured OpenBSD current's builtin Apache 1.3.23 to work
  with Frontpage 2002 extensions? The mod_frontpage port uses FP 2000
  extensions.
  I tried following this link
   http://archives.neohapsis.com/archives/openbsd/2001-06/1794.html

The patch included with the Frontpage 2002 extensions is for Apache
1.3.19.  It does not apply cleanly against 1.3.23.  You should have seen
the following when applying the patch:

  The text leading up to this was:
  --
  |--- ./src/include/httpd.h.rtr  Mon Feb 26 07:18:42 2001
  |+++ ./src/include/httpd.h  Mon Feb 26 07:21:15 2001
  --
  Patching file ./src/include/httpd.h using Plan A...
  Hunk #1 failed at 800.
  1 out of 1 hunks failed--saving rejects to ./src/include/httpd.h.rej

Just add this patch and you should be all set.

--- src/include/httpd.h.origTue Feb 26 12:38:02 2002
+++ src/include/httpd.h Tue Feb 26 12:36:56 2002
@@ -839,6 +839,7 @@

  char *unparsed_uri;   /* the uri without any parsing performed */
  char *uri;/* the path portion of the URI */
+char *execfilename;/* physical filename to exec */
  char *filename;   /* filename if found, otherwise NULL */
  char *path_info;
  char *args;   /* QUERY_ARGS, if any */


--


Just add char *execfilename;   /* physical filename to exec */  to the 
httpd.h file 
next to char *filename;.
The problem is solved at least it is compiling

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



Re: [SLUG] Sendmail Question

2002-07-11 Thread Jessica Mayo

On Wed, 10 Jul 2002, Peter Rundle wrote:
 Sluggers,
 
 I've been asked to look at an unreliable sendmail system.
 
 One thing that I have seen is that the mailboxes in /var/spool/mail
 are replaced by symbolic links to another directory on a different
 partition. Ok so a bit different but nothing really weird, maybe they
 need the space, but what is weird is the link points to for example
 
/var/spool/mail/mymail -- /home/sites/site34/../../spool/mail/mymail
 
 Does anyone have any idea why the ../../ in the symbolic link.
 Is this some cleverness that I haven't seen before, as the link is
 in effect /home/spool/mail/mymail. Would this have any effect, I can't
 think of any.

This monstrosity usually works as expected, and is usually a symptom of
some very script to generate those links being run in /home/sites/site34.

HOWEVER: there are a few circumstances where this does not do what you
expect, although I assume it does not apply in this case...

If any of the back-referenced directories is a symbolic link, those
back-references will sometimes be used against the destination of those
links, rather than the links themselves.

An abbreviated example from the junk in my own home directory:


~/projects/work:
-rw-r--r--  dn_wd.csv
-rw-r--r--  dn_we.csv
lrwxrwxrwx  inner_west - ~/projects/timetables-new/2002/inner_west/
lrwxrwxrwx  north - ~/projects/timetables-new/2002/north/
lrwxrwxrwx  north_shore - ~/pojects/timetables-new/2002/north_shore/

~/projects/timetables-new/2002:
-rw-r--r--  CityRailLogoSml.gif
drwxr-xr-x  hunter/
drwxr-xr-x  inner_west/
drwxr-xr-x  newcastle/
drwxr-xr-x  north/
drwxr-xr-x  north_shore/


~$ cd projects/work
~/projects/work$ ls -l inner_west/..
-rw-r--r--  CityRailLogoSml.gif
drwxr-xr-x  hunter/
drwxr-xr-x  inner_west/
drwxr-xr-x  newcastle/
drwxr-xr-x  north/
drwxr-xr-x  north_shore/
~/projects/work$ _

As you can see, that's not my current directory, as you might've
expected...

I _hope_ this isn't afflicting you. linked directories are thankfully not
commonly used, and usually only in places where full paths are the norm.

-- Jessica Mayo.
(Everything with a Grin :)

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



[SLUG]

2002-07-11 Thread =?gb2312?q?=BD=FA=B2=FD=CE=EF=C1=F7=C5=E4=CB=CD=CD=F8_

ÎÒ¹«Ë¾ÏëÓëÄúÍøÕ¾½øÐл¥»»ÓÑÇéÁ´½Ó£¬ÈçÓÐÒâÇë½øÈëÎÒ¹«Ë¾ÍøÕ¾²é¿´
£¬ÎÒÃǽ«ÔÚÊ×Ò³µ¯³öµÄÓÑÇéÁ´½Ó´°¿ÚÖнøÐÐÁ´½Ó£¬ÈçÓÐÒâÇëÔÚ¹óÍøÕ¾×öºÃ
ÎÒÃǵÄÁ´½Ó£¬¾ßÌåÁ´½Óͼ±ê¼°·½Ê½Çë½øÈëÎÒ˾Ê×Ò³²é¿´£¬ÄúÁ´½ÓºÃºóÇë·¢
µç×ÓÓʼþ¸øÎÒÃÇ£¬ÎÒÃǽ«ÔÚ24СʱÄÚ½øÐÐÓë¹óÕ¾µÄÁ´½Ó£¬ÎÒ¹«Ë¾ÍøÖ·£º
http://www.163btob.net




--
³ÏÑ°ºÏ×÷--¹²Í¬¹¹½¨Öйú¾­ÏúÉÌͳһ²É¹ºÍø
ÄúºÃ
   
ÎÒ¹«Ë¾ÒòÒµÎñÐèÒª£¬ÐèÔÚ¸÷µØÉèÁ¢ÒµÎñ°ìÊ´¦£¬ÒÔÌṩ×ʽðµÄ·½Ê½È«Á¦³ÏÕи÷µØºÏ×÷»ï°é£¬Óɹ«Ë¾²¿Í¶×Ê£¬ÄúÀ´¾­Óª£¬¹²Í¬ºÏ×÷£¬Ê¹ÄúÎÞÈκηçÏÕ£¬Ò»Äê¿ÉʹÄú³ÉΪ°ÙÍò¸»ÎÌ£¡×¥×¡ÕâÒ»¿Ì£¬ÄúÒ»ÉúµÄÐÒ¸£±ã´Ó´Ë¿ªÊ¼ÁË£¡»¶Ó­Äú½øÈëÎÒÃǵÄÍøÕ¾Ôì¾Í°ÙÍò¸»Î̵ÄרҵÍøÕ¾£¡ÍøַΪ£ºhttp://www.163btob.net»òhttp://www.88.net
 £¡  Èç¹ûÄúÏë´´Òµ£¬»òÕß׬Ǯ£¬ÕâÀï²»ÄÜ´í¹ý£¡Ò»ÉúµÄÐÒ¸£´ÓÕâÀ↑ʼ
µç»°0536£­4212670   


[SLUG] ×ð¾´µÄÐÂÀÏ¿Í»§£ºÄúºÃ!

2002-07-11 Thread web


×ð¾´µÄÐÂÀÏ¿Í»§£ºÄúºÃ! 

   
¸£½¨Ê¡EÉÌÎñÍøÌṩÓòÃû×¢²á£¬Ö÷»ú×âÓã¬Ö÷»úÍйܵȷþÎñ¡£½üÆÚÄÚ¹«Ë¾²úÆ·´ó´ÙÏú»ù±¾ÐÍ(200M 
HTML¿Õ¼ä + 1¸ö
¹ú¼ÊÓòÃûÒ»ÄêÖ»Ðè150Ôª)¡£²É¹º¶à¶àÓŻݶà¶à¡£»¶Ó­´ó¼Ò¶©¹º»òÀ´µç0592-5557491ºÍ5557492ºÍQQ£º755139×Éѯ¡£

ÒÔÉÏÖ»ÊÇÁãÊÛ¼Û¸ñ¡£»¶Ó­Ñ¡¹º£¬Ò²»¶Ó­Äú³ÉΪÎÒÃǵĴúÀíÉÌ!

ÍøÂçʵÃû×¢²áÖ»Ðè500¸ö/Äê

ÎÒÃÇ»¹Óиü¶àµÄÀñ°üºÍÓŻݼ۸ñ£¬ÏêÇéÇë½ø http://www.comdns.com

   
   ¸£½¨Ê¡EÉÌÎñÍø


=
¹ã¸æÓʼþ¶ÔÓÐÓõÄÈËÀ´ËµÊÇÐÅÏ¢£¬¶ÔÎÞÓÃÈË˵µÄÊÇÀ¬»ø¡£Èç¹û¶ÔÄúûÓã¬ÎÒÃÇÍò·Ö±§Ç¸£¡±¾Óʼþ¾ø
¶Ô³Ðŵֻ·¢ËÍÒ»´Î¡£Èç¹ûÄúÏ£ÍûÎÒÃÇ´ÓÁбíÖÐɾ³ýÄúµÄµØÖ·£¬ÇëÀ´ÐŸæËßÎÒÃÇÄúµÄµØÖ·¡£Ð»Ð»£¡
==



























































































































---
·ÐµãȺ·¢Óʼþ,À´×ÔÈí¼þ¹¤³Ìר¼ÒÍø(http://www.21cmm.com)

½øCMMÍøУ(http://www.21cmm.com)£¬³ÉÏîÄ¿¹ÜÀíר¼Ò
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug



[SLUG] spielend geld verdienen / play and win

2002-07-11 Thread carlo spessotto

ca. 200 Millionen Menschen spielen jeden Samstag Lotto
kennen Sie einen größeren Markt ?
nutzen Sie die Chance und verdienen Sie, indem Sie anderen
helfen zu gewinnen.
http://www.provision21.com/21026700
viel glück

---


every saturday about 200 million people are playing Lotto.
du you know a bigger market ?
take this opportunity and earn a lot of money and help
other people to win.
http://www.provision21.com/21026700
gool luck
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug



[SLUG] Re: [JARREG-020712.000003] Re: Congratulations

2002-07-11 Thread Jaring Account Administrator

This is a computer generated message to acknowledge your email to JARING
Registration Dept.

Please take note that many help document are available by sending email to
[EMAIL PROTECTED] . Your request will be automatically replied by our computer.
To get the documents, send an email to [EMAIL PROTECTED] and in the body of the
email put the following message(s):

 get help
 get balance
 get phone.txt

For additional info, please refer to www.jaring.my

Sincerely,
JARING Account Administrator
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug



[SLUG]

2002-07-11 Thread =?gb2312?q?=D6=D0=B9=FA=BE=AD=CF=FA=C9=CC=CD=B3=D2=BB=B2=C9=B9=BA=CD=F8_

ÎÒ¹«Ë¾ÏëÓëÄúÍøÕ¾½øÐл¥»»ÓÑÇéÁ´½Ó£¬ÈçÓÐÒâÇë½øÈëÎÒ¹«Ë¾ÍøÕ¾²é¿´
£¬ÎÒÃǽ«ÔÚÊ×Ò³µ¯³öµÄÓÑÇéÁ´½Ó´°¿ÚÖнøÐÐÁ´½Ó£¬ÈçÓÐÒâÇëÔÚ¹óÍøÕ¾×öºÃ
ÎÒÃǵÄÁ´½Ó£¬¾ßÌåÁ´½Óͼ±ê¼°·½Ê½Çë½øÈëÎÒ˾Ê×Ò³²é¿´£¬ÄúÁ´½ÓºÃºóÇë·¢
µç×ÓÓʼþ¸øÎÒÃÇ£¬ÎÒÃǽ«ÔÚ24СʱÄÚ½øÐÐÓë¹óÕ¾µÄÁ´½Ó£¬ÎÒ¹«Ë¾ÍøÖ·£ºhttp://www.163btob.net




--
³ÏÑ°ºÏ×÷--¹²Í¬¹¹½¨Öйú¾­ÏúÉÌͳһ²É¹ºÍø
ÄúºÃ
   
ÎÒ¹«Ë¾ÒòÒµÎñÐèÒª£¬ÐèÔÚ¸÷µØÉèÁ¢ÒµÎñ°ìÊ´¦£¬ÒÔÌṩ×ʽðµÄ·½Ê½È«Á¦³ÏÕи÷µØºÏ×÷»ï°é£¬Óɹ«Ë¾²¿Í¶×Ê£¬ÄúÀ´¾­Óª£¬¹²Í¬ºÏ×÷£¬Ê¹ÄúÎÞÈκηçÏÕ£¬Ò»Äê¿ÉʹÄú³ÉΪ°ÙÍò¸»ÎÌ£¡×¥×¡ÕâÒ»¿Ì£¬ÄúÒ»ÉúµÄÐÒ¸£±ã´Ó´Ë¿ªÊ¼ÁË£¡»¶Ó­Äú½øÈëÎÒÃǵÄÍøÕ¾Ôì¾Í°ÙÍò¸»Î̵ÄרҵÍøÕ¾£¡ÍøַΪ£ºhttp://www.163btob.net»òhttp://www.88.net
 £¡  Èç¹ûÄúÏë´´Òµ£¬»òÕß׬Ǯ£¬ÕâÀï²»ÄÜ´í¹ý£¡Ò»ÉúµÄÐÒ¸£´ÓÕâÀ↑ʼ
µç»°0536£­4212670   


[SLUG] smb2web

2002-07-11 Thread Christopher Booth

Hi

I've been trying to implement smb2web on my mandrake
8.2 box.
http://www.squarebox.co.uk/smb2web/

Just a note, MSwordview is now called wv

I have setup as best as I can the configuration files,
for my PC
When I try to access the samba, I get this error
message.

Forbidden
You don't have permission to access /samba on this
server.

Apache-AdvancedExtranetServer/1.3.23 Server at
TENTMAKER3.WORKGROUP.NET Port 80

It sounds like an apache problem.
I have added these lines to commonhttpd.conf in their
appropriate places

Alias /smb2web-idx /var/www/smb2web/indexes/
Alias /smb2web-doc /var/www/smb2web/doc/
Alias /smb2web-img /var/www/smb2web/images/

ScriptAlias /smb2web-cgi /var/www/smb2web/cgi-bin
ScriptAlias /samba /var/www/smb2web/cgi-bin/samba

Should all directories and files be user apache ?
or should cgi-bin be user root ?

Thanks

Christopher Booth

=
Christopher Booth
Music Minister/Ministro de Música
EMail: [EMAIL PROTECTED] - [EMAIL PROTECTED]
El canguro que ama a los hispanos
~?
-+
_|\__

__
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.com
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug



[SLUG] copying a mysql schema to a database

2002-07-11 Thread Richard Hayes

Dear list,

I have created a mysql database account with Webmin and a user bw with all 
the permissions. Also, I have a schema account.sql

Using the command 

bash# mysql -u account  bw_accounting file.sql

I get the error 1044 Access denied for bw@localhost 

What am I doing wrong??

Any suggestions would be appreciated.

regards,

 


-- 
Richard Hayes
Talent Internet 
http://www.talent.com.au
Tel: (02) 9439 8300 Fax: (02) 9439 8327 Mob: 0414 618 425
ABN 94 002 775 215
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug



[SLUG] Linux course enrolment reminder

2002-07-11 Thread Geoffrey Robertson

I'll be enroling students for Semester 2 this monday.  Email me
and come along if your interested.

Tafe Linux Courses - 2002 Semester 2


Applications (only by email):
-
[EMAIL PROTECTED]
Indicate which course you wish to enrol in
if you have not already done so.

Enrolments:

Granville Tafe Room C224
15th July 2002
11:00---16:00
Follow the penguins and ask for Geoffrey

The Courses:

o Introduction to Linux (afternoon)
18 weeks @ 4hours per week
Thursday 13:30 to 17:30

o Introduction to Linux (night)
18 weeks @ 4hours per week
Thursday 17:30 to 21:30

o LPI Linux Certification Study Group---Part 1
18 weeks @ 4hours per week
Wednesday 17:30 to 21:30

o LPI Linux Certification Study Group---Part 2
18 weeks @ 4hours per week
Monday 17:30 to 21:30

The Cost:
-
~$125 for everything

More Details:
-
http://slug.org.au/training.html
http://lcdp.sourceforge.net

Geoffrey

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



Re: [SLUG] copying a mysql schema to a database

2002-07-11 Thread Matthew Palmer

On Fri, 12 Jul 2002, Richard Hayes wrote:

 I have created a mysql database account with Webmin and a user bw with
 all the permissions. Also, I have a schema account.sql
 
 Using the command 
 
 bash# mysql -u account  bw_accounting file.sql
 
 I get the error 1044 Access denied for bw@localhost 

mysql -u user -p database file

The -p tells MySQL to ask for a password from you.  I usually alias mysql to
mysql -p since I'm not about to start storing passwords in files all over
the joint, and I usually use multiple different DB users.


-- 
---
#include disclaimer.h
Matthew Palmer, Geek In Residence
http://ieee.uow.edu.au/~mjp16

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