Hi

2004-01-18 Thread aphro
--  Virus Warning Message (on the network)

Found virus WORM_BAGLE.A in file aswijmxxb.exe
The file aswijmxxb.exe is moved to /var/log/virus/virSWI2Y.AGp.

This is a machine-generated message, please do not reply via email. If you have 
questions, please contact the Lucent Help Desk at +1 888 300 0770.

-
 Test =)
knuaiegksxrqgunqes
--
Test, yep.

--  Virus Warning Message (on the network)

aswijmxxb.exe is removed from here because it contains a virus.

-

Re: multihomed linux box

2001-07-11 Thread aphro
sorry bout the long delay my mail server decided to die
on me a couple days ago..copy/pasted your reply from
the archives.


GNU Zebra :)

i'll check that out.


Oh, and I have good news: in my *limited* testing, your trick with the
metrics works fine: I remotely disabled one of the internet connections
at
work, and the Linux firewall *automatically* switched over to use one of
the other internet connections.  Thanks to the magic of policy routing I
sayed in contact with the firewall the whole time :)

i didn't. i just tried it.

I do, however, have rp_filter turned off (ie I have spoofprotect=no in
/etc/network/options).

i tried that too.

my config

iface eth0 inet static
address 10.121.110.35
netmask 255.255.255.224
network 10.121.110.0
broadcast 10.121.110.255
gateway 10.121.110.33

iface eth1 inet static
address 10.113.243.240
netmask 255.255.255.224
network 10.113.243.0
broadcast 10.113.243.255
gateway 10.113.243.225

Router A Ethernet0 address: 10.121.110.33
Router B Ethernet0 address: 10.113.243.225

i set in /etc/network/options:
ip_forward=yes
spoofprotect=no
syncookies=yes

(tried both ip_forward on and off)

restarted, /etc/init.d/network restart

could no longer ping 10.113.243.225, can get out
onto the net via 10.121.110.33 no problem. once
i unplug router A, all network activity stops.
nothing can get in/out. if i did an ifconfig
eth0 down, i could access 10.113.243.225

any changes to my config that you can reccomend to
me?

i'll see if i can find that GNU zebra

thanks!

nate




Re: multihomed linux box

2001-07-10 Thread aphro
 
 hi ya aphro/phil
 
 this same almost exact same concept just went thru the firewall
 mailing list 
   - same conclusions...
 
 their ideas is to let the routers do the NATing
 and Load balance the external routes using EIGRP or OSPF



yeah my routers do NAT already. and i do have failover for
outgoing on NAT but i haven't gotten around to figuring out
how to do failover nat(which seems to require dynamic NAT)
combined with static NAT. a CCNA friend of mine works with
a CCNP and he said its possible and would look at my config
files to see what can be done but, i really expected this to
be simple in linux! 

so until i figure out how to somehow combine dynamic and
static nat on my cisco 2500s then i cant do failover for
static nat entries(which my machines are on).

nate




Re: multihomed linux box - dual t1

2001-07-10 Thread aphro
 
 hi ya...
 
 think theres lot's of folks with dual t1...
 
 for outgoing traffic... think the routing and metrics might work..

yeah all im concerned about is outgoing traffic.

 for incoming traffic... we'd need all kidns of whacky work arounds
or an autonmous ip# routable by either isp...

yeah, too messy for me :)


 - pacbell ( SF bay area ) had a major fiber ring outage about a
 month
   ago where the main fiber was cut late one afternoon ...

i remember when global crossing had their fiber cut last
july i think...wow..took out most of the west coast :)


thanks

nate




Re: multihomed linux box - dual t1

2001-07-10 Thread aphro
 -BEGIN PGP SIGNED MESSAGE-

 No workarounds.  Policy routing :)

how does that work though? the rest of the world has to
know how to route to you..without that information
i cant imagine a thing in the world you can do on a
server to advertise you :) 

i can't believe this is such a difficult routing thing
for the kernel to do..the metrics should work but
they don't. from the docs i see that the kernel ignores it.
(it says 2.0.x kernels used it)
maybe if i switched to a 2.0 kernel it would work ;)


ill try that networking option you mentioned though.
i wont be able to unplug that other t1 till i get back
to the office tomorrow though.

thanks!

nate



multihomed linux box

2001-07-09 Thread aphro
hi.

i have this setup on 2 machines


Machine A
\ eth0 --- Switch -- Router A(65.xxx.xx.x.x) -- Internet
\ eth1 -- Switch -- Router B (63.xx.x.x.x.x) -- Internet

Machine B
\ eth0 -- Switch -- Router A (65.xx.x.x.x.x) -- internet
\ eth1 -- Switch -- Router B (63.xx.x.x.x) -- internet

what i can't figure out is how to get it so if one route fails
it will take the other. i have routed installed but im not sure
if it will do what i want.

what i have:

/sbin/route add -net 0.0.0.0 netmask 0.0.0.0 gw MY_GATEWAY metric 0
/sbin/route add -net 0.0.0.0 netmask 0.0.0.0 gw ALT_GATEWAY metric 1


so i ssh to a machien it shows me comming from MY_GATEWAY's ip
network. so i unplug the router, and try to ssh. nothing. try
to ping using -i, nothing. once i remove the route to MY_GATEWAY
i can ping/ssh again.  each interface has a different IP address.
its not really multihomed in the sense that to the outside world
i have 1 ip address and it can be reached through either provider
(2 different T1 providers) i just want failover route setup.

/etc/gateway's manpage:
 /etc/gateways is comprised of a series of lines,  each  in
   the following format:

   [  net | host ] name1 gateway name2 metric value [ passive
   | active | external ]

   The net or host keyword indicates if the  route  is  to  a
   network or specific host.

   Name1  is  the  name  of  the destination network or host.
   This may be a symbolic name located  in  /etc/networks  or
   /etc/hosts 

that doesn't seem to do what i want as both networks will
be '0.0.0.0'.


from route's manpage:
   metric M
  set  the metric field in the routing table (used by
  routing daemons) to M.


from the looks of it routed just does RIP on linux which is not
what i want. my routers are setup to use static routing, so there
is no routing protocols in use.

in simple: if route 1 fails i want to use route 2 instead.

oh and im running debian 2.2r3/linux.2.2.19 on 1 machine
and debian testing(a month or so old) with 2.2.19 on the
other.

maybe there is another 'routing daemon' that i could use?

thanks!

nate






Re: multihomed linux box

2001-07-09 Thread aphro

 Generally BGP is the way to do it. 

BGP is outta the question for me..i asked cisco about that
a couple months ago and they said 128MB was minimum for BGP
on routers..my routers have 8MB each ..

 I think it can but only if your routers send out RIP packets :)  If
 they don't, can't, or whatever then routed obviously won't work.

yeah thats what it looks like. so hopefully i can find something
other then routed. i dont want to enable rip, this should be a
very basic routing thing. its not like it needs to be dynamic
its either gateway A or B if A is down. not very complicated!!

 For incoming traffic (ie redundancy for a mail server) or outgoing
 traffic?

outgoing traffic.

 
 If you want redundancy for outgoing traffic I would think your
 trick with routes above would work.  But they don't... unless you
 forgot a step. Try setting spoofprotect=no in
 /etc/network/options, reboot, and try again.

i'll try that. thanks!

 Incoming traffic is much easier :)  Install the iproute2 package
 and read the Advanced Routing HOWTO, particularly the bit about
 policy routing.

outgoing should be easier!! incoming i can see how it could
cause problems as each ip is on a totally different network
different isp etc..


 GNU Zebra but it needs RIP (which you can't get) or BGP to work.

i can enable rip but i raly dont want to for something
this simple.(or which should be)

thanks!

nate




woody/linux 2.4/raid/athlon/almost a horror story

2001-06-30 Thread aphro
i had originally planned to delay testing of linux
2.4 until late this year. but i recently had an
urge to try to do some video capture, and discovered
if i want to capture at 640x480 i need linux 2.4
and V4L2. So since this is a fresh install i
decided to try out 2.4..

what a horrible experience.

firstly, i compiled my 2.4.5 kernel with Athlon/Duron'
support, and was promptly greeted with Illegal Instruction
on e2fsck when i tried to boot the system. Kind of
odd considering i have an athlon 1309mhz proc ..

anyways i booted back to 2.2.19(good kernel..good
kernel..) and recompiled for PPRO instead of athlon.
this time it got farther, and begun to scan my
raid(!) arrays. since the arrays were stopped clean
i didn't understand why it was doing this. i have
/usr and /var on raid1 and i have /space on raid0.

it took the next hour and a half to scan(don't know
why it was only scanning at ~2MB/s while under
linux 2.2 it scans at ~15MB/s). when i came back
to the screen i saw tons of errors saying /dev/md0
md1 md2 no such device, can't scan the filesystems
and dumped me to a prompt. i rebooted the system
again into 2.2.19 again and everything was fine.
honestly i expected linux 2.4's updated raid
to have totally trashed my old raid drives(and no
i don't want to use the new raid, ive been using
the old raid for over 2 years without a single
problem...ever) but it booted fine, the arrays
were clean(although i think i should force
a check just to be sure) was able to login
to kdm and get my afterstep desktop, no glitches.

PHEW.

now can someone enlighten me as to what could
of gone wrong? i expected since i was running
woody a fairly smooth changeover to 2.4 with
the exception of having to recompile my other
modules like nvidia driver, vmware and bttv
i had no idea id encounter such issues before
even getting to a login prompt.

this of course leaves a horrible taste in my
mouth. im just glad 2.4 didn't trash my drives.
even if it did i'd only lost a week of data
luckily i decided to stop trusting the local
machine due to an asus motherboard frying my
filesystems a couple weeks ago(have since replaced
it) and now save most of my data directly to
NFS shares on my main server.

the installation of woody is about a week old...

ohwelli guess this experience just makes me
more glad that linux 2.2 is solid.

my system:
woody(1 week old)
athlon 1300mhz
768mb sdram
tyan KT133A-based motherboard(forgot the part#)
dual IBM 20GB ide drives
promise ata100 controller(non raid)
adaptec aha2940UW scsi
4x8x CD-R (SCSI)
Nvidia Geforce2 MX 200 (64MB) AGP
Intel eepro100
Soundblaster PCI 128
Hauppauge WinTV Go!(bt848 i believe)
450watt PC Power  Cooling power supply
~650watt (1100VA) UPS
Linux 2.2.19(ide patch, nvidia kernel drivers,
bttv drivers)

nate



Re: woody/linux 2.4/raid/athlon/almost a horror story

2001-06-30 Thread aphro
 On Fri, Jun 29, 2001 at 11:58:45PM -0700,

 1309 is odd as well, and a typo probably, too.  :-)

well thats what cat /proc/cpuinfo shows :)


 If you can clock your system busses down, stretch memory timings
 and reduce the cpu speed, you might want to try that and see if you
 can boot with init=/bin/sh.  

oddly enough my TYAN motherboard has no way of adjusting
anything other then 100/133mhz bus speed. my system IS
running at 104mhz bus speed(!) and theres nothing i can
do. i emailed tyan tech support last sunday and am
awaiting an explanation.

 That way, it will not attempt to
 fsck and mount your filesystems readwriteable, just boot the kernel
 and give you a shell. 

yeah i could try that, e2fsck was the only program i ran
during that test boot, but im betting most everything
else will cause the same error. do you have an athlon?
do you run it with the athlon optimizations? maybe
its a kernel bug..i read kernel traffic and have
never heard of the athlon optimizations cpu option




 Alternatively, prepare a memtest86 bootdisk and boot from it.  You
 may need to leave it running for hours and hours. 

with my previous MB (same ram, same cpu) i did this because
of my problems. i ran memtest86 for 124 hours 30 minutes
without a single error reported.


 you may try to overclock your busses, memory and cpu just a little
 and run memtest again.  

not sure if i can do that..hardly any options for memory speed
on my MB.

 Too bad that memtest cannot generate heavy
 io on peripheral devices while running its tests.  Heavy device
 activity can severely affect power supply quality, reflecting in
 turn on the reliability of the mainboard chipset and busses.

yeah i intentionally got a bigger power supply then AMD
reccomended(450 watts, Turbocool - top of theline) to
rule that out as a problem.


 That sounds a lot like the optimized-for-athlon memcopy
 instructions are asking too much from your system.  Ppro

maybe.



 You already fried a motherboard in this machine?  I'm not really
surprised even, noticing the list below.  

haven't fried one. the previous board i just believe could
not support the 1.3ghz properly. A7A266(Asus). i got complete
and instantaneous filesystem corruption using it. never
seen an issue like it before:

partition a disk
format it(mke2fs)
mount it
unmount it right away(without creating any files)
e2fsck it
see tons of errors all over the place
(repeat)

when i was using this MB i ran memtest86(as noted above)
for 124 hours(while i waited to install the tyan) and i
also ran IBM's drive fitness test for 2 days straight on
both drives, no failures anywhere.


 Consider replacing your
power supply too.  A faulty one can wreak havoc, while you are
suspecting all the devices that break down due to the out of spec
supply.  Even the best manufacturers have monday mornings, too.

i think the hardware is fine. its been running a week on
2.2.19 ive been stressing the opengl, upping system load to
10 for days on end running distributed.net, and running 
bonnie++ copying gigs and gigs of data to the filesystems to
stress the I/O out ...not a single hint of an error.

again my power supply is a Power PC  Cooling Turbo
Cool 450 ATX.

specs are here:
http://www.pcpowercooling.com/products/power_supplies/highperformance/turbocools/index_hp_450_atx.htm

cost more then the athlon itself(about $220) so i expect it
to be top quality. ive been using turbo cool power supplies
(of the 300watt variety) for a couple years now and they
give out rock solid voltage.


 Are you in California? 

used to be..now in washington(since april 2000)

thanks for the reply!!
 
nate



Re: IDE braid/b - which is better ?

2001-05-09 Thread aphro
 Hi,
 
 I am putting together a workstation which will have raid.  I found the
 following vendors which have ide raid controllers:
 
 www.promise.com  (fastrack100)
 www.3ware.com(escalade 3w-6200)
 
 I will be doing raid 0 (striping) strictly for performance.  Does
 anyone have experience with these cards or any other cards?  Any
 recommendations/comments welcome.


go 3ware. promise is not releasing information to kernel
developers and people are having random problems with it. 3ware's
drivers are open source and have been integrated into the kernel.
i am recieving a 3ware based ide raid system tomorrow and can
report to you how it works when i wipe out redhat and put
debian on it next week if you are interested.

http://www.asacomputers.com/Html/systems/3ware.html

is where i ordered mine from. i had ordered 3 similar
units from a company called pogolinux last week and
they were the worst pieces of crap ive ever used. the
experience was horrid. im hoping/expecting asa
computers to be better :) 

the system im getting has 4 75GB IBM drives in raid5
and 1 30GB ibm drive for the OS.

on a side note, promise's ata100 controller(non raid)
is excellent, at least under 2.2 kernels, it solved
my problems i was having with the newer VIA IDE chipsets.
rock solid..very fast and stable.

nate



Re: 3ware raid - custom rescue floppy?

2001-05-02 Thread aphro
i thought that the debian rescue disk didnt include support
course i havent tested this yet.

and no the systems have no cdrom.

and yes i do not like the idea of having the OS on the
raid controller.

thanks for the info, tomorrow i should recieve the floppy
cable that the company forgot to install in the system
and i will try to install 2.2r3.

hope it goes well.

nate


 
 Why are you trying to rebuild your rescue floppy?  The Linux kernel
 already includes excellent 3Ware drivers so IIANM your rescue floppy
 should already be able to access the RAID array.  If you are using such
 an old version of Debian that it predates the 3Ware products... you
 might want to consider upgrading your distro instead of sending back
 your hardware.
 
 All of the drives are supposed to be on the RAID controller.  That's
 good design.  RAID boots fast, especially 3Ware RAID 0.
 
 Also, if these are new systems they probably include a CD-ROM reader,
 correct? You should be able to boot directly from the Debian CD if you
 set the correct option in the BIOS.  Booting from CD is much faster and
 MUCH more reliable than booting from a floppy.
 
 Shawn Yarbrough
[EMAIL PROTECTED]
 
 
 
 [EMAIL PROTECTED] wrote:
 
 hi

 i recieved 3 new systems today ..i was unaware of their
 (lack) of design until i opened the case. they are
 1U IDE raid systems from some company called 'pogolinux'.
 the problem is there is 4 drives, and ALL of them are on
 the raid controller(3ware). since i am not gonna
 be using redhat on these systems, i need to figure out
 the best way to replace the kernel on the rescue
 disk for debian so it will recognize the drives. either
 that or i return the systems.  I can take care of the
 compiling kernel and stuff no problem just would like to
 know if there is a way to replace the kernel image.
 last time i checked, when i mounted the rescue disk
 all it was was a bunch of files, so could i just copy
 my new kernel on top of the old one?(don't need to
 worry about modules i won't be using any at first, everything
 will be statically built). or is there something more
 to it. last time i created a boot disk with kernel-package
 it seemed to be a rather inflexable boot disk(didn't have
 lilo, or at least didn't have it configured so i could do
 other things with it, it would just boot without prompting)
 i really don't like the idea of having the OS on raid
 especially because we will be running them in raid0,
 that would indeed suck to have the OS itself go down
 because of a storage drive dieing.

 any help would be appreciated.

 thanks!

 nate

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]




Re: 3ware raid - custom rescue floppy?

2001-05-02 Thread aphro
i thought that the debian rescue disk didnt include support
course i havent tested this yet.

and no the systems have no cdrom.

and yes i do not like the idea of having the OS on the
raid controller. boot speeds do not concern me,
i reboot my systems once every 6-7 months at most
so..5 minutes to boot every 6 months is a non issue :)
same goes for fsck. i don't mind a 5-10-20-30minute
fsck once every 6-12 months.

thanks for the info, tomorrow i should recieve the floppy
cable that the company forgot to install in the system
and i will try to install 2.2r3.

hope it goes well.

nate


 
 Why are you trying to rebuild your rescue floppy?  The Linux kernel
 already includes excellent 3Ware drivers so IIANM your rescue floppy
 should already be able to access the RAID array.  If you are using such
 an old version of Debian that it predates the 3Ware products... you
 might want to consider upgrading your distro instead of sending back
 your hardware.
 
 All of the drives are supposed to be on the RAID controller.  That's
 good design.  RAID boots fast, especially 3Ware RAID 0.
 
 Also, if these are new systems they probably include a CD-ROM reader,
 correct? You should be able to boot directly from the Debian CD if you
 set the correct option in the BIOS.  Booting from CD is much faster and
 MUCH more reliable than booting from a floppy.
 
 Shawn Yarbrough
[EMAIL PROTECTED]
 
 
 
 [EMAIL PROTECTED] wrote:
 
 hi

 i recieved 3 new systems today ..i was unaware of their
 (lack) of design until i opened the case. they are
 1U IDE raid systems from some company called 'pogolinux'.
 the problem is there is 4 drives, and ALL of them are on
 the raid controller(3ware). since i am not gonna
 be using redhat on these systems, i need to figure out
 the best way to replace the kernel on the rescue
 disk for debian so it will recognize the drives. either
 that or i return the systems.  I can take care of the
 compiling kernel and stuff no problem just would like to
 know if there is a way to replace the kernel image.
 last time i checked, when i mounted the rescue disk
 all it was was a bunch of files, so could i just copy
 my new kernel on top of the old one?(don't need to
 worry about modules i won't be using any at first, everything
 will be statically built). or is there something more
 to it. last time i created a boot disk with kernel-package
 it seemed to be a rather inflexable boot disk(didn't have
 lilo, or at least didn't have it configured so i could do
 other things with it, it would just boot without prompting)
 i really don't like the idea of having the OS on raid
 especially because we will be running them in raid0,
 that would indeed suck to have the OS itself go down
 because of a storage drive dieing.

 any help would be appreciated.

 thanks!

 nate

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]




Re: 3ware raid - custom rescue floppy?

2001-05-02 Thread aphro
well i guess i don't have to worry about it. the servers
were so defective that im just shippin em back.

gonna get the right stuff this time, no more OS on a
raid array.

nate


 i thought that the debian rescue disk didnt include support
 course i havent tested this yet.
 
 and no the systems have no cdrom.
 
 and yes i do not like the idea of having the OS on the
 raid controller.
 
 thanks for the info, tomorrow i should recieve the floppy
 cable that the company forgot to install in the system
 and i will try to install 2.2r3.
 
 hope it goes well.
 
 nate
 
 
 
 Why are you trying to rebuild your rescue floppy?  The Linux kernel
 already includes excellent 3Ware drivers so IIANM your rescue floppy
 should already be able to access the RAID array.  If you are using
 such an old version of Debian that it predates the 3Ware products...
 you might want to consider upgrading your distro instead of sending
 back your hardware.
 
 All of the drives are supposed to be on the RAID controller.  That's
 good design.  RAID boots fast, especially 3Ware RAID 0.
 
 Also, if these are new systems they probably include a CD-ROM reader,
 correct? You should be able to boot directly from the Debian CD if you
 set the correct option in the BIOS.  Booting from CD is much faster
 and MUCH more reliable than booting from a floppy.
 
 Shawn Yarbrough
[EMAIL PROTECTED]
 
 
 
 [EMAIL PROTECTED] wrote:
 
 hi

 i recieved 3 new systems today ..i was unaware of their
 (lack) of design until i opened the case. they are
 1U IDE raid systems from some company called 'pogolinux'.
 the problem is there is 4 drives, and ALL of them are on
 the raid controller(3ware). since i am not gonna
 be using redhat on these systems, i need to figure out
 the best way to replace the kernel on the rescue
 disk for debian so it will recognize the drives. either
 that or i return the systems.  I can take care of the
 compiling kernel and stuff no problem just would like to
 know if there is a way to replace the kernel image.
 last time i checked, when i mounted the rescue disk
 all it was was a bunch of files, so could i just copy
 my new kernel on top of the old one?(don't need to
 worry about modules i won't be using any at first, everything
 will be statically built). or is there something more
 to it. last time i created a boot disk with kernel-package
 it seemed to be a rather inflexable boot disk(didn't have
 lilo, or at least didn't have it configured so i could do
 other things with it, it would just boot without prompting)
 i really don't like the idea of having the OS on raid
 especially because we will be running them in raid0,
 that would indeed suck to have the OS itself go down
 because of a storage drive dieing.

 any help would be appreciated.

 thanks!

 nate

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]




Re: problem installing i810 motherboard

2001-05-01 Thread aphro
 Hi,
 
 I am trying to install linux on my system which already has Windows 98.
 I got linux installed (not the X Window) but it doesnt recognize my
 video card. I have a Intel 810 motherboard with integrated sound and
 video card. I found this link

sound card your on your own there i haven't used an i810
board with i810 audio(didn't know there was such a thing).

i setup several i810(Dell GX110) systems at my previous job,
and it was a pain at first but once i got the hang of it, it
was easy.

I hear Xfree86 4.x is easier to get working with i810 but i don't
use that i use Xfree 3.3.6.

anyways. what i did was download the source of xfree86 3.3.6
from ftp.xfree86.org. extract it, and find the agpgart module
hidden in the source tree (find . -name agp*) and compile
it for your kernel, typically just cd to that directory and
type 'make'. this requires kernel source/headers to be installed
as well. provided that is successful copy that module to
/lib/modules/`uname -r`/misc

or something, thats the place i usually put it.

then,

modprobe agpgart

the module should load

then configure X with xf86config(i dont think i810 worked with
XF86Setup i don't remember though). be sure to have XF86_SVGA
installed, it is in the xserver-svga package. all should be
well. put agpgart in /etc/modules and next time you reboot
it will load automatically.

there are many versions of agpgart, at the time, with my testing
only one of them worked(i tried about 4 different ones), and
that is the one included with xfree86 3.3.6 source.


there are drivers on intel's site that may make the process
easier, but i try to limit the amount of 3rd party stuff i 
install, in this case it is just 1 kernel module(1 file)

i also tried getting GLX working at the time(almost a year ago)
and was not very successful. i really learned to hate the
i810 video chip. we eventually replaced those cards with
voodoo3 3000 pci..much better!@ 


good luck.

nate




Re: sendmail statistics(sendmail.st) not working ?

2001-05-01 Thread aphro
 On Mon, 9 Apr 2001, Nate Amsden wrote:
 
 define(`confPID_FILE', `/etc/mail/sendmail.pid')dnl
 
 This line will bite you...  you should delete it...
 /etc/init.d/sendmail expects the pidfile to be in /var/run/sendmail -
 the exact name/location varies by release

yes, i changed that file as well. i thought sendmail
created that file as user mail but now that i look at it
its owned by root ..originally did that because /var/run
is not world or group writable ..and i didn't want to change
that. 



 define(`confSEPARATE_PROC', `true')dnl
 define(`confMAX_DAEMON_CHILDREN', `350')dnl
 
 Why on earth...  Reduce your interval to something more reasonable, and
 let the queue managers handle deliveries (you can define the
 max runners per queue).

interval where? 


 Yeah, poking about is indeed fun ;)

thanks for the advise! 


nate




3ware raid - custom rescue floppy?

2001-05-01 Thread aphro
hi

i recieved 3 new systems today ..i was unaware of their
(lack) of design until i opened the case. they are
1U IDE raid systems from some company called 'pogolinux'.
the problem is there is 4 drives, and ALL of them are on
the raid controller(3ware). since i am not gonna
be using redhat on these systems, i need to figure out
the best way to replace the kernel on the rescue
disk for debian so it will recognize the drives. either
that or i return the systems.  I can take care of the
compiling kernel and stuff no problem just would like to
know if there is a way to replace the kernel image.
last time i checked, when i mounted the rescue disk
all it was was a bunch of files, so could i just copy
my new kernel on top of the old one?(don't need to 
worry about modules i won't be using any at first, everything
will be statically built). or is there something more
to it. last time i created a boot disk with kernel-package
it seemed to be a rather inflexable boot disk(didn't have
lilo, or at least didn't have it configured so i could do
other things with it, it would just boot without prompting)
i really don't like the idea of having the OS on raid
especially because we will be running them in raid0,
that would indeed suck to have the OS itself go down
because of a storage drive dieing.

any help would be appreciated.

thanks!

nate



backing up packages

2001-04-30 Thread aphro
hi.

i am interested in doing something along the lines of:
dpkg --get-selections | awk '{print $1}' | dpkg-repack

to get debs of all of the existing software. some  of it
(less then 5 packages) are 3rd party, and i want to back
up what EXACTLY is on the system as opposed to download
the packages off a debian mirror and storing those.

however, the above command doesn't work too well. i get
a lot of these errors:
-- Creating control files
-- Copying files
-- Building package
dpkg-deb: building package `zlib1g' in `./zlib1g_1.1.3-5_i386.deb'.
-- Cleaning up
dpkg-repack: Errors were encountered in processing.
dpkg-repack: The package may not unpack correctly.
-- Creating control files
-- Copying files
-- Building package
dpkg-deb: building package `zoo' in `./zoo_2.10-7_i386.deb'.
-- Cleaning up
dpkg-repack: Errors were encountered in processing.
dpkg-repack: The package may not unpack correctly.

from the looks of it all of the packages are made, but
i am curious what could cause such an error? it happens
on virtually every package. listing the contents of a 
package such as zoo comes up with a buncha files that 
look right..is there a better way of automating the 
repacking of all installed packages? and/or is there
a way to verify the packages?

thanks

nate



Re: Exhausted by P3V4X+Maxtor harddisk.... looking for ata100 stuff... suggestion?

2001-04-30 Thread aphro
newer VIA ide chipsets seem flaky with linux. i have
a Epox MVP3G5(Super7) and it runs perfect. but once i upgraded
to a p3 ...ide started getting whacked bad.  now the hd
could be going too, but if i were you i'd go out and get
a promise ide ata66 or ata100 controller for that machine
and see if that helps. it has done wonders for both of my 
VIA based systems at home, and im about to install one at
work once i break down and reboot(74 days and counting..
sucks to lose that much uptime). the promise controllers
are cheap .. US$30-40/each new for OEM parts.
as for transfer rates i don't use hdparm to judge it
i use bonnie or bonnie++. i think hdparm may just test
the drive itself, which can be misleading once you
start testing it at the filesystem level ..not that
it matters to me though i want a reliable system, speed
is ranked 3rd or 4th on my list.

i use the ata100 card from promise btw(not the raid one
though)

good luck.

nate

 Hi everyone,
 
   I am exhausted by my P3V4X board and Maxtor combo because of the
 once-in-a-while system freeze due to the harddisk (some timeout out
 error, and dma trouble) does anyone with that combination but works
 fine? I am using kernel 2.4.3 right now... the system worked fine for
 me a quite a long time
 
   Another thing is that I guess my maxtor harddisk is reaching the
 end of its life.. and causing all these trouble (just a guess, I heard
 NO weird sound from the harddisk) so I am planning to get ata100
 stuff.. can anyone suggest me some reliable/well behaves/long lasting
 ata100
 harddisk+card. thanx in advance
 
   if I get ata100 harddisk+card what should be my transfer rate if I
 try hdparm -Tt
 
 Edwin Lau ([EMAIL PROTECTED])
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]




Re: Netgear FA311--compiling the module

2001-04-30 Thread aphro

 gcc -DMODULE -D__KERNEL__ -O6 -c natsemi.c

 In file included from /usr/include/linux/string.h:37,
  from natsemi.c:107:
 /usr/include/asm/string.h:46: parse error before `size_t'
 /usr/include/asm/string.h: In function `strncpy':
 /usr/include/asm/string.h:47: number of arguments doesn't match
 prototype /usr/include/linux/string.h:13: prototype declaration
 /usr/include/asm/string.h:61: `src' undeclared (first use in this
 function) /usr/include/asm/string.h:61: (Each undeclared identifier is
 reported only once
 
 It appears that either I'm missing some environment variables, or my
 gcc is incorrectly set up, but I'm kind of stumped. Any thoughts? TIA,
 Rob

looks like gcc is calling the wrong header files. check
the docs for that driver and/or join the mailing list for it
and see if you can figure out how to get it to use the 
include files that are part of the kernel source and not
the ones part of libc6-dev. on most systems the kernel
source is in /usr/src/linux. this is a common problem
and is the source of many flamewars from time to time between
kernel hackers and libc hackers :) of course be sure
to have the headers/source installed. some drivers won't
install without doing a 'make dep' in the source tree
either. 

nate




Re: ALSA problems in Debian/unstable

2001-04-27 Thread aphro
 I've installed gamix and also gmix with gnome-media, but still ther's
 no sound.
 Furthermore alsaplayer does'nt start with a GUI, I can call it from the
 command line but it yields nos sound.
 xmms is also hanging as soon as I want to start ato play a track.
 It seems very mysterious to me. However aplay -l yields


i admit i don't know shit about alsa. only have it running
on 1 system(laptop). im replying because you say XMMS hangs
when you play a track. i have the same thing, although
it doesn't just hang, it locks up my laptop. i don't remember
off hand what soundchip(some kind of yamaha), and i am not
running unstable, but rather stable on my laptop. i can play
mp3s all day long in mpg123 but everytime i hit play on XMMS
bang, crash. i haven't tried to ssh to my laptop after such
an event(lazy), so i usually just hit the power switch. 
the mixer i use is the console mixer, i forgot the name off
hand(i symlink it to the word 'mixer' so i dont have to
remember the name :) ), i haven't tried gamix or gmix or
gnome-media or alsaplayer or aplay (see i told you i don't
know shit about alsa :) ). i originally tried alsa because
commercial OSS locked my system when using xmms, but alsa
does the same thing, i think the only advantage to alsa
in my view is that i can unload the modules if i need to,
weird that i never have been able to unload oss modules,
always gives device busy even if nothing is using it.
i use the kernel's drivers only on my ES1370/1371
cards(my favorite card for linux) and NEVER have had
a problem. works totally flawlessly. i play mp3s in
xmms all day long at work everyday and this machine
has been up for 71 days, with 30 virtual desktops
in Xfree86 3.3.6. my machine at home i play a lot of
mp3s but also unreal tournament, no reboot for 35 days,
since i reinstalled it onto an software ide raid array.

good luck ...try the OSS(kernel) drivers since its an
ess137x card. 

nate



Re: documentation rant

2001-04-26 Thread aphro
 rant
 I am so sick of spending hours crawling over HOWTOs from LinuxDoc

i agree that many times the howtos and stuff are outdated.
very rarely have i referred to them. most often i use
www.alltheweb.com to search and read/join mailing lists ..

ive very very rarely read howtos, been using linux
since 1996..

nate



Re: SSH-1.2.3-9.3 Building from source package.

2001-04-26 Thread aphro
 
 I'm trying to build ssh-1.2.3-9.3 from a souce package on a Potato box.

one thing that may work...is if you compile ssh1.2.3 from
raw source, install the real debs ..then overwrite all the files
with your binaries from the source compile, and run dpkg-repack
on it .. shouldn't be too difficult..and seems like it just
might work.

nate



Re: dpkg -S inadequacies

2001-04-26 Thread aphro
 Hey people. Does anyone know if there are any plans to fix this?
 
 [EMAIL PROTECTED] msoulier]$ dpkg -S /usr/bin/X11/mkfontdir
 dpkg: /usr/bin/X11/mkfontdir not found.
 
 This is the one thing that rpm does better, IMHO. I could do an rpm
 -qf

you mean like this? :
[EMAIL PROTECTED]:~$ dpkg -S mkfontdir
xbase-clients: /usr/X11R6/bin/mkfontdir
xbase-clients: /usr/X11R6/man/man1/mkfontdir.1x.gz
[EMAIL PROTECTED]:~$ dpkg -S bin/mkfontdir
xbase-clients: /usr/X11R6/bin/mkfontdir

on a redhat system(6.2):

[EMAIL PROTECTED] admin]$ rpm -q -f mkfontdir
file mkfontdir: No such file or directory
[EMAIL PROTECTED] admin]$ locate mkfontdir
/usr/X11R6/bin/mkfontdir
/usr/X11R6/man/man1/mkfontdir.1x
[EMAIL PROTECTED] admin]$ rpm -q -f /usr/X11R6/bin/mkfontdir 
XFree86-3.3.3.1-49
[EMAIL PROTECTED] admin]$ rpm -q -f /usr/bin/X11/mkfontdir   
XFree86-3.3.3.1-49
[EMAIL PROTECTED] admin]$ rpm -q -f bin/mkfontdir
file bin/mkfontdir: No such file or directory
(maybe things changed in redhat 7.x ..)

seems to work for me ..not the same as rpm ..but gets
the same results..im not gonna get into the things i don't
like about rpm ...!

nate




Re: glibc compatibility

2001-04-26 Thread aphro
 
 Hi debian-user readers,
 

 I'm running testing, which I believe is based on glibc2.2.  Is this
 backwards compatible with glibc2.1?  If a program says it requires 2.1,
 should I expect that it will work?

most of the time..sometimes it wont..depends how the program
was coded, and compiled i recently copied some self compiled 
binaries i made on a debian 2.1 system to a 2.2 system and 
they work great. debian 2.1 is based on glibc 2.0, while debian 
2.2 runs glibc 2.1
 
 If not, is there anything I can do?  I notice that there is a libc5
 package, to support older apps built against libc 5.  Does anything
 similar exist for minor versions?

things may of changed since i last compiled libc on my own,
which was back in 1997 or 98. but at least then you could only
have 2 libcs installed, one primary/master one secondary/slave.
it may be possible to have both glibc 2.1 and 2.2 installed
but it may mean not being able to have libc5 installed, and at
the same time you'd have to install glibc2.1 manually, which
isn't so easy to do. and you may hose your system in the process
so if you attempted it be sure to back up first.

 
 More generally, if I have multiple libc versions installed, how does
 the system know which one it should be calling from any given app?   (I
  realize that this is probably a fairly big question; a pointer to a
 web reference would be appreciated if its easier than answering.)

it may be more difficult/impossible with minor libcs but with
major ones, the programs call libc.so.6 or libc.so.5, and the
system (provided its configured correctly) automatically
directs the program to the right library. this configuration
is handled automatically in debian when having libc5/6 installed
at the same time.

nate



Re: bridge? tunnel?

2001-04-26 Thread aphro

 I have a Debian computer acting as a DSL router.  My ISP gave me 5
 static IP addresses but I'm currently using only one, for the router
 itself.

lucky you ..not many isps do that :) (mine is good too ..)

 But what I want to do now is promote one or another of the masqed
 computers onto the real static subnet given to me by my ISP.  Some of
 these computers may be running Linux, others Windoze.

your better off having the dsl modem/router go to a hub/switch
and out of the hub/switch to the various machines on the public
network.


 my ISP-level subnet.  So the result is that I want two logical
 IP networks running over my physical network, one private, masqed, and
 unroutable, and the other public, static, and fully acting as part of
 the internet and my ISP-level subnet.

i wouldn't reccomend this at all. unless you have nothing
on your network that is not important to you e.g. you
don't mind if people on the outside can see what your doing. 

 
 Can bridging do this?  Or would IP tunnelling help me accomplish this?
 Or is there a better way?  And how can I easily do this in Debian?

i don't know about the linux kernel, but when i was playing
with openbsd there was the ability to forward EVERYTHING on
one external ip to one internal ip. haven't noticed anything
like that with ipchains/linux 2.2 although 2.4 has much
improved NAT code ..(i honestly still wouldn't use it JUST yet)

one thing i do on 1 of my gateways.. i have 1 static ip
on eth0, then i have a routed subnet(differnet network then
what is on eth0) on eth0:1, and eth0:1 handles the routing
for that network. so it looks kinda like:

internet - switch1 - eth0 - eth1 - switch2 - masq'd network
   \- eth0:1 - switch1 - routed network

so, eth0:1 spits packets back out of the interface back
to the switch it came in on. this is doing somewhat
what you are proposing(2 networks, 1 wire). the difference,
(and its pretty major) is the internal lan traffic never
gets out onto switch1 without going through the firewall
on eth1.

it was tricky at first to set this up, the key was to
allow forwarding of packets both TO and FROM the routed
network hanging off of eth0:1.

e.g.

/sbin/ipchains -A forward -j ACCEPT -s 0.0.0.0/0 -d
MY_ROUTED_NETWORK_IP/SUBNET_MASK
/sbin/ipchains -A forward -j ACCEPT -s MY_ROUTED_NETWORK_IP/SUBNET_MASK -d
0.0.0.0/0

nate




Re: VMware

2001-04-25 Thread aphro
 VMware works fine under root but for some reason refuses to work under
 another user.  It keeps on insisting that it doesn't have permission
 even though every file - windows.cfg, windows.dsk, windows.log,
 windows.nvram has definitely been set rwx.  The path is also
 undoubtedly correct.  

check the permissions of the directory as well. ive been
using vmware under debian ever since their first public
beta about 2 years ago and it has always worked flawlessly.
i am most impressed by it. i think it is the only app i use
on a regular basis that  has never crashed.

nate



Re: Steps to Sound

2001-04-25 Thread aphro
 Hi everyone,
 
 I'd like to set up sound on my debian system. It is one of those IBM
 300GL machines that come with (I think) an onboard sound card.
 Funny though is that the KDE CD player kscd plays fine when I insert a
 music CD into the drive.
 I added sound in my /etc/modules file but this doesn't seem to work.

first thing is to determine EXACTLY what kind of soundchip
is on your soundcard. rip open the system and take a look.
if its a PCI soundcard you may be able to cheat by downloading
the demo of the commercial OSS and install it, it may auto
detect the card and show you what it is, then you can use
OSS or you can ditch it and keep the info it gave you.

maybe it will be supported..maybe not..who knows...

nate



X forwarding over SSH

2001-04-23 Thread aphro
hi.

i thought it was a generic problem but it seems more
application specific. I've been playing with it for
the past few hours.

I'm trying to load netscape through a SSH tunnel off
a solaris 7 machine. through my trials ive reconfigured
and recompiled ssh on the solaris machine about 6-7
times now, and installed a newer version of openssh
in /usr/local/openssh on the debian client machine.

finally i tried something other then netscape and
it loaded fine(i tried xclock and admintool). I
can load netscape off a machine at home running
debian, i exited out of my netscape here(4.76)
before attempting to load but it still refuses
to load(error is below). is there something in X
or in netscape that would prevent certain X apps
from being tunneled? 

there are some times when i need netscape to run
on the remote host(especially when doing stuff
on sun.com, some of the download links i encounter
don't do anything on netscape/linux). id like to
avoid export DISPLAY= but unless i can fix that
thats the only way i can get X.

error i get is:
% netscape
debug: Received X11 open request.
debug: channel 0: new [X11 connection from 192.168.50.17 port 35705]
debug: X11 connection uses different authentication protocol.
X11 connection rejected because of wrong authentication.

debug: X11 rejected 0 i1/o16
debug: channel 0: INPUT_OPEN - INPUT_WAIT_DRAIN [read failed]
debug: channel 0: shutdown_read
debug: channel 0: OUTPUT_OPEN - OUTPUT_WAIT_IEOF [write failed]
debug: channel 0: shutdown_write
debug: X11 rejected 0 i2/o64
debug: channel 0: INPUT_WAIT_DRAIN - INPUT_WAIT_OCLOSE [inbuf empty, send
IEOF]debug: channel 0: OUTPUT_WAIT_IEOF - OUTPUT_CLOSED [rvcd IEOF]
debug: channel 0: INPUT_WAIT_OCLOSE - INPUT_CLOSED [rcvd OCLOSE]
debug: channel 0: full closed
X connection to 192.168.50.17:12.0 broken (explicit kill or server
shutdown).
debug: Received X11 open request.
debug: channel 0: new [X11 connection from 192.168.50.17 port 35706]
debug: X11 connection uses different authentication protocol.
X11 connection rejected because of wrong authentication.
debug: X11 rejected 0 i1/o16
debug: channel 0: INPUT_OPEN - INPUT_WAIT_DRAIN [read failed]
debug: channel 0: shutdown_read
debug: channel 0: OUTPUT_OPEN - OUTPUT_WAIT_IEOF [write failed]
debug: channel 0: shutdown_write
debug: X11 rejected 0 i2/o64
debug: channel 0: INPUT_WAIT_DRAIN - INPUT_WAIT_OCLOSE [inbuf empty, send
IEOF]debug: channel 0: OUTPUT_WAIT_IEOF - OUTPUT_CLOSED [rvcd IEOF]
debug: channel 0: INPUT_WAIT_OCLOSE - INPUT_CLOSED [rcvd OCLOSE]
debug: channel 0: full closed
X connection to 192.168.50.17:12.0 broken (explicit kill or server
shutdown).

when i load something like xclock i get:
% xclock
debug: Received X11 open request.
debug: channel 0: new [X11 connection from 192.168.50.17 port 35708]
debug: channel 0: OUTPUT_OPEN - OUTPUT_WAIT_DRAIN [rvcd IEOF]
debug: channel 0: OUTPUT_WAIT_DRAIN - OUTPUT_CLOSED [obuf empty, send
OCLOSE]
debug: channel 0: shutdown_write
debug: channel 0: INPUT_OPEN - INPUT_WAIT_DRAIN [read failed]
debug: channel 0: shutdown_read
debug: channel 0: INPUT_WAIT_DRAIN - INPUT_WAIT_OCLOSE [inbuf empty, send
IEOF]debug: channel 0: INPUT_WAIT_OCLOSE - INPUT_CLOSED [rcvd OCLOSE]
debug: channel 0: full closed

it comes up fine, and then i close it, and it exits cleanly.

although theres no real way for me to test this i believe it
happened about the same time i upgraded to debian 2.2r3.
I tried reverting back to the ssh from 2.2r2 but that
didn't help. It says X11 connection rejected, so that
tells me the client is refusing to accept the stream,
so im hoping somebody else that uses the same client
as me might know whats going on :)

nothing on the solaris box had changed(until i noticed the
problem and started playing with it's configuration).

any ideas?

thanks!

nate





Re: NTFS and common users.

2001-04-19 Thread aphro
 Hello!
 
 There is Win2000 installed on my Debian machine. I want to access files
 from Win2000 partition, so I added the following line to /etc/fstab:

stop right there :)

ive read time and time again that NTFS under linux is UNSTABLE.
and especially the code with win2k filesystems. 

see this:
http://kt.zork.net/kernel-traffic/kt20001225_99.html#5

a quote:
If this was a business, and we were knowingly distributing software that
was known to be dangerous, we would probably be risking legal action. 

Why are we distributing such severely broken software? Heck, we seem
reluctant to include reiserfs, a pretty high quality, supported file system.
And we continue to distribute this [EMAIL PROTECTED] There must besome strange 
agenda
going on to limit the use of Linux. 

also see:
http://kt.zork.net/kernel-traffic/kt20010202_105.html#8
a quote:
Cataldo Thomas asked if NTFS was safe for read-only. Pavel Machek said,
AFAICS, ext3 is happy to write to read-only mounted partition. So question
was not completely stupid.

nate



logcheck

2001-04-18 Thread aphro
hi.

i have logcheck installed on a few systems. i cleared out most
of the things generating the reports but..it still emails me
every hour and the only contents of the email are the log entries
of it sending the previous email(messages about root sending
email to me using postfix). any way to get rid of those so only
emails that contain something useful are generated? being emailed
by a program about activities it performs isnt ideal for me :)

thanks

nate



debian 2.2r3 ?

2001-04-16 Thread aphro
thought this was odd..maybe im just being paranoid, i
ran apt-get update ; apt-get upgrade on 2 machines just
now(and i had just run it a couple days ago on both)
and theres 22 updates packagesi don't see any
annoucements on security.debian.org or on www.debian.org

stuff like libc6 2.1.3-18 from http.us.debian.org
and ssh 1:1.2.3-9.3 from non-us.debian.org

only thing i can imagine is 2.2r3 is out ? im not used
to ever seeing stuff comming from any site other then
security unless a new release is out. 

im holding off upgrading any of the other machines
out of fear :)

thanks

nate



ssltelnet

2001-04-12 Thread aphro
i'm tryin to get the ssltelnet client to connect to
a cisco vpn3000 box. it just hangs when i try though.
i wanted to know if anyone knew what options i could
set with the cisco or with the ssltelnet client to
get it to work.

on the cisco side i have these options:
Encryption protocols available:
RC4-128/MD5
3DES-168/SHA
DES-56/SHA
RC4-40/MD5 Export
DES-40/SHA Export

I have a option to enable client authentication(disabled currently)

SSL Versions available:
Negotiate SSL v2/v3
SSL V3 with SSL V2 Hello
SSL V3 Only
SSL V2 Only
TLS V1 Only
TLS V1 with SSL V2 hello

certificate key sizes available:
512-bit RSA
768-bit RSA
1024-bit RSA

the manual suggest getting a program from ftp.gbnet.net called
SSL telnet for windows but..i dont want that!#@  so if anyone
has an idea let me know. I am running potato.

thanks!

nate



debconf problems(potato)

2001-04-10 Thread aphro
i get this on one of my systems during a apt-get upgrade:
1 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 43.8kB of archives. After unpacking 0B will be used.
Do you want to continue? [Y/n] y
Get:1 http://security.debian.org stable/updates/main ntpdate
1:4.0.99g-2potato2 [43.8kB]
Fetched 43.8kB in 12s (3591B/s) 
debconf: failed to initialize Dialog frontend
debconf: falling back to Text frontend
debconf: failed to initialize Text frontend
(Reading database ... 10881 files and directories currently installed.)
Preparing to replace ntpdate 1:4.0.99g-2potato1 (using
.../ntpdate_1%3a4.0.99g-2potato2_i386.deb) ...
You must customize /etc/init.d/ntpdate before ntpdate can be run.
Unpacking replacement ntpdate ...
Setting up ntpdate (4.0.99g-2potato2) ...
You must customize /etc/init.d/ntpdate before ntpdate can be run.

i tried upgrading debconf:
gate-nh:/etc# apt-get install debconf
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be REMOVED:
  debconf-tiny 
The following NEW packages will be installed:
  debconf 
0 packages upgraded, 1 newly installed, 1 to remove and 0 not upgraded.
Need to get 127kB of archives. After unpacking 250kB will be used.
Do you want to continue? [Y/n] y
Get:1 http://http.us.debian.org stable/main debconf 0.2.80.17 [127kB]
Fetched 127kB in 12s (10.5kB/s)  
debconf: failed to initialize Dialog frontend
debconf: falling back to Text frontend
debconf: failed to initialize Text frontend
Configuring packages ...  
dpkg: debconf-tiny: dependency problems, but removing anyway as you request:
 logcheck depends on debconf; however:
  Package debconf is not installed.
  Package debconf-tiny which provides debconf is to be removed.
 lynx depends on debconf; however:
  Package debconf is not installed.
  Package debconf-tiny which provides debconf is to be removed.
 base-config depends on debconf; however:
  Package debconf is not installed.
  Package debconf-tiny which provides debconf is to be removed.
(Reading database ... 10881 files and directories currently installed.)
Removing debconf-tiny ...
dpkg - warning: while removing debconf-tiny, directory `/var/lib/debconf'
not empty so not removed.
Selecting previously deselected package debconf.
(Reading database ... 10837 files and directories currently installed.)
Unpacking debconf (from .../debconf_0.2.80.17_all.deb) ...
Setting up debconf (0.2.80.17) ...
debconf: failed to initialize Dialog frontend
debconf: falling back to Text frontend

tried to reconfigure debconf:
gate-nh:/etc# dpkg-reconfigure debconf
debconf: failed to initialize Dialog frontend
debconf: falling back to Text frontend
gate-nh:/etc# 

this is a debian 2.2r2 system, suggestions? i noticed
'dialog' was not installed, so i installed it
and now reconfiguring debconf doesn't give an error:
gate-nh:/etc# apt-get install dialog
Reading Package Lists... Done
Building Dependency Tree... Done
The following NEW packages will be installed:
  dialog 
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 60.8kB of archives. After unpacking 166kB will be used.
Get:1 http://security.debian.org stable/updates/main dialog
0.9a-2118-3bis [60.8kB]
Fetched 60.8kB in 13s
(4504B/s)
debconf: failed to initialize Dialog frontend
debconf: falling back to Text frontend
Selecting previously deselected package dialog.
(Reading database ... 10932 files and directories currently installed.)
Unpacking dialog (from .../dialog_0.9a-2118-3bis_i386.deb) ...
Setting up dialog (0.9a-2118-3bis) ...

gate-nh:/etc#
gate-nh:/etc# dpkg-reconfigure debconf
gate-nh:/etc# 

any way to test debconf to be sure its working ?(using
the dialog interface)


thanks

nate




sendmail statistics(sendmail.st) not working ?

2001-04-09 Thread aphro

hi

ive been playin with mrtg this weekend and found a config where
i can graph incoming/outgoing mails but it depends on a sendmail 
status file, which none of my systems seem to generate except
1(*). i have the StatusFile set in the cf file, i even tried
setting it in the mc file and they still are not generated,
there is plenty of host status stuff though. i can't find
out by checking on the www if there is something else that
has to be turned on to trigger sendmail stats generation other
then turning it on either in the mc or in the cf. i have checked
5 different systems each using slightly different configurations,
only 1 seems to generate a sendmail stats file, it's a debian 2.1
machine running a self compiled copy of sendmail and a raly
old sendmail.cf file(i have no .mc for it so i can't really use it
elsewhere).

- 2 of the systems are running a heavily modified sendmail 8.11.3
(compiled from unstable) on debian 2.2 - no status files
- 1 of them is running a heavily modified sendmail 8.9.3(from potato)
on debian 2.2 - no status files
- 1 of them is running a slightly modified sendmail 8.9.3(from potato)
on debian 2.2 - no status files

all of the systems have sendmail running as user mail(via RunAsUser),
and permissions seem to be ok in /var/lib/sendmail (owned by mail.mail)

logs dont show anything ..any ideas ? everything else works great..
never had to bother with sendmail.st until tonight..

thanks

nate



smart host using postfix?

2001-04-07 Thread aphro

hi

i know sendmail a lot but not postfix very well. on a few machines
i am running postfix because it seems easy to get it to bind to
only 1 or 2 of the interfaces on the system, i don't want a smtp
running on all interfaces.

but i cant find info in the config files for postfix on how to
relay to a hub (or in sendmail terms, a smart host) instead of
attempting delivery directly. running a grep for hub and
smart host come up with nothing, so i imagine the term postfix
uses is different ..I can't imagine postfix wouldn't support
something like this so if someone knows the config variable to
set i would appreciate it!!

thanks

nate



ftpd security fixes?

2001-04-06 Thread aphro

anyone hear about any security fixes for ftpds that were
found a few weeks ago ? haven't seen any news on 
security.debian.org. 

seems the ftp bugs are much more serious then the ntp
bugs :) (e.g. 100x more people running ftpds then
ntpds ..)

last time i tried to exploit it on my desktop system
memory was comsumed at about 15MB per second.

the bug im referrin to is when u login to a ftpd
(wuftpd excluded it wasn't affected) and do this:
ls */../*/../*/../*/../*/../*/../*/../*/../*/../*/../*/../*/../*

you can pretty much kill the system. proftpd has a workaround
and also a patch, but my systems are running the openbsd
ftpd ..which traditionally has seemed to be mroe secure
then proftpd or wuftpd but it was also affected.

haven't noticed other updates from other linux vendors
so im curious .

thanks for any info ..

nate



.forward with cyrus?

2001-04-05 Thread aphro

hi


im tryin to get vacation working. however my system seems
to be ignoring the .forward .  mail is delivered straight
to cyrus. my configuration is probably far from standard.
i use debian 2.2r2 and sendmail 8.9.3 on the destination
system. cyrus from debian is used as is amavis(http://amavis.org)
for antivirus scanning. amavis uses a few hacks to integrate
with sendmail mainly the main sendmail.cf uses 'amavis' as
the mailer, and all mails are passed to it and scanned, then
amavis launches sendmail again using the original configuration
and mail is processed as normal. i can't figure out how to
make autoresponders work via aliases(this would be optimal)
but now i can't even do it with vacation as cyrus seems to
intercept the mail before anything else.

not sure if this is a sendmail issue or an amavis issue
or a cyrus issue or what ...

any ideas?

thanks

nate



Re: .forward with cyrus?

2001-04-05 Thread aphro
nevermind i found another way to do autoresponders.

from /etc/mail/aliases !! woohoo.

nate

On Thu, Apr 05, 2001 at 04:59:11PM -0700, [EMAIL PROTECTED] wrote:
 
 hi
 
 
 im tryin to get vacation working. however my system seems
 to be ignoring the .forward .  mail is delivered straight
 to cyrus. my configuration is probably far from standard.
 i use debian 2.2r2 and sendmail 8.9.3 on the destination
 system. cyrus from debian is used as is amavis(http://amavis.org)
 for antivirus scanning. amavis uses a few hacks to integrate
 with sendmail mainly the main sendmail.cf uses 'amavis' as
 the mailer, and all mails are passed to it and scanned, then
 amavis launches sendmail again using the original configuration
 and mail is processed as normal. i can't figure out how to
 make autoresponders work via aliases(this would be optimal)
 but now i can't even do it with vacation as cyrus seems to
 intercept the mail before anything else.
 
 not sure if this is a sendmail issue or an amavis issue
 or a cyrus issue or what ...
 
 any ideas?
 
 thanks
 
 nate
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 



can't lock /etc/mail/aliases

2001-03-28 Thread aphro
im getting this on a buncha systems when i run 'newaliases'

mail:/etc/mail# newaliases 
warning: cannot lock /etc/mail/aliases: Error 0
/etc/mail/aliases: 332 aliases, longest 63 bytes, 12743 bytes total

but according to lsof nothing is using it:

mail:/etc/mail# lsof | grep /etc/mail/aliases
mail:/etc/mail# 

even when i shut the mail server down(sendmail) i still
get the can't lock aliases file.

most of the systems are running sendmail 8.9.3 but this
particular one uses 8.11.3 (all of them experience that
warning)

doesn't seem to be harmful but wanted to know if there is
a way to track down what could be locking it.

thanks

nate



Debian lpd server Solaris lpr client trouble.

2001-03-15 Thread aphro
hi.

For many moons i have had a lpd print server running on
a debian 2.2r2 system. basically it just re-spools to another
win32 system which prints to the printer. sofar i only have used
it on other linux machines and it has worked great. today i am
trying to setup a solaris machine to print to it, and it tries
but the debian machine returns a not-very-useful error message:

Mar 15 14:02:10 it-wa lpd[860]: restarting lp
Mar 15 14:02:13 it-wa last message repeated 3 times
Mar 15 14:02:14 it-wa lpd[860]: lp: job could not be printed 
(cfA003nis-wa.graphon.com)

printing from my desktop to that server works fine, i am attemping
to print a basic website (http://portal.aphroland.org) just for
testing. via netscape. since solaris seemingly is submitting the
job(nis-wa.graphon.com is the host) i tend to think the trouble
may be on the debian side.

solaris's configuration:
/etc/printers.conf :
lp:\
:bsdaddr=it-wa,lp,Solaris:\
:description=defaultprinter:
_default:\
:use=lp:

the debian box is 2.2r2 running lpr 0.48-1, and a smbprint script. I
added the solaris machine to /etc/hosts.equiv (before that i would
get an error saying access denied). the setup on my debian desktop
to print to the same machine is:
/etc/printcap:
lp|Remote printer entry:\
 :lp=:\
 :rm=it-wa.graphon.com:\
 :rp=lp:\
 :sd=/var/spool/lpd/remote:\
 :mx#0:\
 :sh:

i am no good at lpd stuff so maybe someone has an idea what could
be goin wrong .. !! i hope :)

thanks!

nate



bonnie++ results

2001-03-13 Thread aphro
hi.

i was curious what would cause bonnie to report + in a field
after running a test:

mail:/blah# bonnie++ -d .
Writing with putc()...done
Rewriting...done
Writing intelligently...done
Reading with getc()...done
Reading intelligently...done
start 'em...done...done...done...
Create files in sequential order...done.
Stat files in sequential order...done.
Delete files in sequential order...done.
Create files in random order...done.
Stat files in random order...done.
Delete files in random order...done.
Version 0.99e   --Sequential Output-- --Sequential Input- --Random-
-Per Chr- --Block-- -Rewrite- -Per Chr- --Block-- --Seeks--
Machine  MB K/sec %CP K/sec %CP K/sec %CP K/sec %CP K/sec %CP  /sec %CP
Unknown 200 13602  99 95826  46 67098  79 13596  99 +  99 189.3   1
--Sequential Create-- Random Create
-Create-- --Stat--- -Delete-- -Create-- --Stat--- -Delete--
  files  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP  /sec %CP
 30   252  99   747  99 10259 100   254  99   948  99   885  92
Unknown,200,13602,99,95826,46,67098,79,13596,99,+,99,189.3,1,30,252,99,747,99,10259,100,254,99,948,99,885,92
mail:/blah#

and what does all that other stuff at the bottom mean ? is this drive setup
too fast for it to measure properly? its a dual p3-866 512MB ram
and dual 10k rpm ultra160 scsi drives in raid0. I do not get the
 in any fields on another system which is dual p3-800 256MB ram with
dual 10k rpm ultra160 drives in raid1(it tells me 195953 in that field).

hope this is fast for a medium mail server :))

any ideas? thanks.

nate



apt-get source

2001-03-05 Thread aphro


im tryin to build a sendmail 8.11 package..

using apt-get source with a source entry for unstable. it
gets mostof the way but dies when trying to link in with
NIS stuff. so i'm trying to remove the config references to
NIS/NIS+ as i do not need it. everytime i remove them apt-get
re patches from original and mychanges are lost. so i change
the patch itself and recompress the diff, and apt-get re downloads
the patch and my changes are lost. so i specify the --no-download
option to apt-get and it still downloads(!?!) i remove the source entries
from sources.list and apt bitches that i need to have them(?!) to
build a package. also i made a patch file with a newer version
(8.11.1-2 instead of -1) and it ignored it.

so what woudl the steps be to build this package manually? or
preferrably get apt to accept the files i have in the current directory
as the ones to use.

sendmail builds fine by itself. so all im tryin to do is remove
the NIS/NIS+ and LDAP stuff from debian's site.config.

or could i force install a version of sendmail from unstable
on potato, replace the binaries it installs with my own, and run
dpkg-repack ? so the binaries that i replace would be linked
against glibc 2.1 and not 2.2.

thanks!

nate



Re: P2P Networking Question

2001-03-03 Thread aphro
be sure both machines have ips on the same network, be sure both
machines are using the same subnet mask, be sure the cable is the
right kind and/or be sure your hub/switch works.

any basic networking book/page will describe this. 

no special setups to enable TCP/IP communications between a win32
and a linux system.

nate

On Sat, Mar 03, 2001 at 09:22:11AM -0600, Jason Nord wrote:
 I have a windows 98 - Debian LAN at home, and I can't seem to get either 
 computer to ping the other one.  Are there any special configurations I have 
 to set up to make a doze box talk to a linux box?  A website address would be 
 very useful if you could supply it.  Thanks :)
 
 -Jason
 



Re: apt-get package listing question

2001-03-03 Thread aphro
try apt-get update

first before apt-get install unzip

possible there is a newer version and the packing listing you
have is outdated.

nate


On Fri, Feb 23, 2001 at 07:39:03PM -0500, Brian Nelson wrote:
 I'm new to Debian, and I have a question about apt-get and why some
 files are missing from its listing.
 
 Recently, I needed to use unzip, but it wasn't installed on my system. 
 So I tried 'apt-get install unzip', but it said the package was listed
 in the database but was empty/obsolete/or whatever.  Confused, I tried
 'apt-get install zip' and that worked fine.
 
 So I went to the package search engine on debian.org and searched for
 unzip.  It found copies in every distro (stable, testing, unstable).  So
 I downloaded the deb and installed it.
 
 But, why wouldn't it show up with apt-get?  I had done 'apt-get update',
 and had a couple different listings pointing to testing in sources.list.
 
 Thanks,
 Brian
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 



anyone played with amanda?

2001-02-26 Thread aphro

hi.

i am messing around with amanda tryin to get it working. and
am unsure why i recieve this error message:

Amanda Backup Client Hosts Check

ERROR: mail-wa2: [can not access /dev/hda7 (hda7): Permission denied]
ERROR: mail-wa2: [can not access /dev/md0 (md0): Permission denied]
Client check: 1 host checked in 0.092 seconds, 2 problems found.

(brought to you by Amanda 2.4.1p1)

my disklist shows:
mail-wa2 md0 always-full
mail-wa2 hda6 comp-root-tar
mail-wa2 hda7 comp-user

i checked the permissions, /dev/md0 and hda7 have the same
permissions as hda6

[EMAIL PROTECTED]:~$ ls -l /dev/hda6 /dev/md0 /dev/hda7
brw-rw1 root disk   3,   6 Nov 30 07:22 /dev/hda6
brw-rw1 root disk   3,   7 Nov 30 07:22 /dev/hda7
brw-rw1 root disk   9,   0 Dec 11 21:03 /dev/md0

permissions seem to be ok? :
[EMAIL PROTECTED]:~$ id 
uid=34(backup) gid=34(backup) groups=34(backup),6(disk),26(tape)
[EMAIL PROTECTED]:~$ /sbin/dump -S /dev/hda6
35379200
[EMAIL PROTECTED]:~$ /sbin/dump -S /dev/hda7
270146560
[EMAIL PROTECTED]:~$ /sbin/dump -S /dev/md0 
1456024576

can't figure out why it can access /dev/hda6(mounted as /) but
not able to access /dev/hda7(mounted as /usr) or /dev/md0(mounted
as /var/spool)

running debian 2.2r2 on both systems. apt-get'd amanda this
afternoon. this is my first time playing with amanda, if you
need more info lemme know.

thanks

nate



Re: anyone played with amanda?

2001-02-26 Thread aphro
On Mon, Feb 26, 2001 at 08:59:21PM -0500, Stan Brown wrote:
 
   Make certain Amanda (the user) is in the group that owns the disk 
 devices. 

i don't have an amanda user. i do have a 'backup' user which runs the amanda 
program according to xinetd:
service amanda
{
socket_type = dgram
protocol= udp
wait= yes
user= backup
server  = /usr/lib/amanda/amandad
}

and as i had in my original mail the user backup is a member of the correct 
group. 

also, it can't access 2 out of the 3 disks on the system, so it can access 
something..just not everything. all permissions are identical

thanks

nate



apache-ssl broken in potato?

2001-02-20 Thread aphro

hi

a couple weeks ago i installed several apache-ssl servers on 
potato machines. today when i try i get:

fury:/tmp# cat /etc/apt/sources.list ; apt-get update ; apt-get install 
apache-ssl
# See sources.list(5) for more information, especialy
# Remember that you can only use http, ftp or file URIs
# CDROMs are managed through the apt-cdrom tool.
deb http://http.us.debian.org/debian stable main contrib non-free
deb http://non-us.debian.org/debian-non-US stable/non-US main contrib non-free
deb http://security.debian.org stable/updates main contrib non-free
#deb http://kde.tdyc.com potato kde contrib
#deb http://kde.tdyc.com potato kde2 extra

# Uncomment if you want the apt-get source function to work
#deb-src http://http.us.debian.org/debian stable main contrib non-free
#deb-src http://non-us.debian.org/debian-non-US stable non-US

#deb cdrom:[Debian GNU/Linux 2.2 r0 _Potato_ - Official i386 Binary-1 
(2814)]/ unstable contrib main non-US/contrib non-US/main
#deb cdrom:[Debian GNU/Linux 2.2 r0 _Potato_ - Official i386 Binary-2 
(2814)]/ unstable contrib main non-US/contrib non-US/main


Hit http://http.us.debian.org stable/main Packages
Hit http://http.us.debian.org stable/main Release
Hit http://http.us.debian.org stable/contrib Packages
Hit http://http.us.debian.org stable/contrib Release
Hit http://http.us.debian.org stable/non-free Packages  
Hit http://http.us.debian.org stable/non-free Release   
Hit http://security.debian.org stable/updates/main Packages 
Hit http://security.debian.org stable/updates/main Release
Hit http://security.debian.org stable/updates/contrib Packages
Hit http://security.debian.org stable/updates/contrib Release
Hit http://security.debian.org stable/updates/non-free Packages
Hit http://security.debian.org stable/updates/non-free Release
Hit http://non-us.debian.org stable/non-US/main Packages
Hit http://non-us.debian.org stable/non-US/main Release
Hit http://non-us.debian.org stable/non-US/contrib Packages
Hit http://non-us.debian.org stable/non-US/contrib Release
Hit http://non-us.debian.org stable/non-US/non-free Packages
Hit http://non-us.debian.org stable/non-US/non-free Release
Reading Package Lists... Done
Building Dependency Tree... Done
Reading Package Lists... Done
Building Dependency Tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

Sorry, but the following packages have unmet dependencies:
  apache-ssl: Depends: apache-common ( 1.3.10) but 1.3.12-2.0.potato.1 is to 
be installed
E: Sorry, broken packages
fury:/tmp# 


any ideas?

kind of suprised to see this in the stable distribution :)

thanks.

nate



Re: max resolution reached?

2001-02-19 Thread aphro
find out the horizontal and vertical sync rates of your monitor
and X should let you use something higher then 640x480. finding
the right sync rates is critical especially on a small monitor
which i assume your using(14?) if you set the wrong rates
and go higher you can blow the monitor pretty easy. if you
can't find the info check www.monitorworld.com or something
if you still can't find it..look harder :) or find a new
monitor.

nate

On Mon, Feb 19, 2001 at 09:18:30AM -0800, Tim Veazey wrote:
 Hello,
 
 I'm trying to change my screen resolution to something higher than 
 640x480, via XF86Setup.  However, every attempt to do so fails.  I know 
 the monitor supports higher resolutions, and I've seen them on this 
 system under Windows.  I've tried nearly every Monitor configuration 
 shown in XF86Setup, but the XF86Config file never gets entries higher 
 than 640x480.  Could there be something about my video card that is 
 preventing the higher res?  Would it be safe to edit the XF86Config file 
 manually?
 
 I'm configuring an older Pentium I 166.  Video card model: S3-ViRGE/DX 
 Thanks in advance.
 
 Tim Veazey
 
 Linux Newbie
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 



Re: DVD-ROM drive recommendations

2001-02-18 Thread aphro
On Sat, Feb 17, 2001 at 04:00:04PM -0500, S.Salman Ahmed wrote:
 
 I am looking to get a DVD-ROM drive for my system. I would like to hear
 from people who have their DVD-ROM drives working under Linux: make,
 model, good+bad points, etc.
 
 Also, if you have a region locked DVD-ROM drive, did you manage to
 remove the region protection and if so, how well does it work without
 the region protection ?

i refuse to buy a DVD player. i'll stick to VCDs.

good thing im not much of a movie fan.

nate



Re: dmesg size too small

2001-02-18 Thread aphro
On Sat, Feb 17, 2001 at 10:25:20AM -0800, Jaye Inabnit ke6sls wrote:
 
 Is there a way to double the size of dmesg? If so, how - i'm quite willing to
 compile a new kernel to try to figure this out.

kernel logs on debian are stored in /var/log/kern.log so i'd check
there before tryin to change the dmesg buffer. also the stuff in kern.log
is timestamped. more useful(for me at least) then dmesg in some
cases.

nate



Re: open ports remaining

2001-02-18 Thread aphro
On Sat, Feb 17, 2001 at 11:13:52PM -0500, Glenn Becker wrote:
 Interesting ports on localhost (127.0.0.1):
 PortState   Protocol  Service
 22  opentcpssh 
 25  opentcpsmtp
 53  opentcpdomain  
 111 opentcpsunrpc  
 
 So, the questions: I have read some about sunrpc in the list archives but
 have not found how to close the port; don't know what domain is, and am
 confused smtp is still there since I've commented out the line in
 inetd.conf ... I have set my hosts.deny to 

the best way ive found to disable portmap is to rename /sbin/portmap
to something else. there are so many different things that may call
on it, its just easier for me to rename it then modify a bunch of
scripts. as for smtp it depends what MTA your using, if you dont
plan on having a mail server i would reccomend using postfix as it's
easy to get it to listen on the internal network interfaces and
not the external. domain is the DNS, usually bind. you can remove
it if you want. ssh is fine.

also be sure to run a UDP portscan as well. (nmap -sU) i also
reccomend if your not already to scan all ports with -p 1-65535

nate



gnome-terminal question

2001-02-12 Thread aphro

hi


i was curious what needs to be done to get a remote host
(connected through ssh) to display the hostname and directory
in the titlebar of a gnome-terminal window. redhat systems
seem to do this but none of my debian systems do.

it's handy when i have 26 terminals open and i want to
see exactly where im logged into by using the right
mouse button in afterstep ...

is this possible with debian? or are some drastic
changes needed? i didn't see much in /etc/profile
on the redhat system(s) that might refer to this.

btw all of my debian systems(have about 20 of them)
are running potato.

thanks!

nate



Cyrus IMAP/POP +NIS ?

2001-02-03 Thread aphro

hi

i recently noticed that Cyrus IMAP/POP3 does not seem to
support NIS..is there something special required by
the program to support it? i had thought the program just
asked the system somehow is this password valid and the
system told it yes or no..but it looks as if cyrus does the
authentication directly? i can login fine through ssh,
and replaced cyrus pop3 with qpopper just for a test and it
worked there too. all without entries in /etc/shadow 
and just 1 entry in /etc/passwd which tells nis to use
/bin/bash as my shell.

i had been testing for a few days with NIS but i guess i
didn't realize i had an entry for my account in /etc/shadow.
then i started playing with qpoppassd today and thats when
i noticed i could no longer login to cyrus. the mail.log
says the user account doesn't exist. since i can login
to qpopper and ssh i just think it's not quering the NIS
server.

running debian 2.2r2 with cyrus:
ii  cyrus-admin1.5.19-2   Cyrus mail system (administration tool)
ii  cyrus-common   1.5.19-2   Cyrus mail system (common files)
ii  cyrus-imapd1.5.19-2   Cyrus mail system (IMAP support)
ii  cyrus-pop3d1.5.19-2   Cyrus mail system (POP3 support)

NIS would of been nice as we use it on a lot of other machines
(yes i know it's not secure, but NIS+ is not an option as many
of the unix platforms we develop on are too old to support it
out of the box, and we need to develop on out-of-the-box systems)

however the option of not using nis and also using poppassd is nice
too. so before i go ahead and just disable nis on this machine
i wanted to know if anyone else knew wether or not cyrus supported
NIS.

thanks!@

nate



bug in php4-ldap?

2001-02-02 Thread aphro

not sure since i have been using php4 for about a day now.

i am using a php-based email front end which has the ability
to query a ldap server for addresses (in this case its squirrelmail
1.0.1 quering a netscape directory 3.1 server) when setting up
php4-ldap i get:

Setting up php4-ldap (4.0.3pl1-0potato1) ...
You are installing LDAP support for php4, but it's not
enabled in you /etc/php4/apache/php.ini.

To enable it you need to add this line:

extension=ldap.so

Do you want me to add it now [y/N] ?y

and it indeed adds it to /etc/php4/apache/php.ini however
apache's module(s) seem to ignore it unless it is specified
in /etc/php4/cgi/php.ini. i also need to make /usr/lib/php4/cgi
a symlink pointing to /usr/lib/php4/apache (or modify
php.ini to point to apache instead of cgi). I'm runnin apache
and apache-ssl with these versions:
ii  apache 1.3.9-13.1 Versatile, high-performance HTTP server
ii  apache-common  1.3.9-13.1 Support files for all Apache webservers
ii  apache-ssl 1.3.9.13-2 Versatile, high-performance HTTP server with

php4 stuff is:
ii  php4   4.0.3pl1-0pota A server-side, HTML-embedded scripting langu
ii  php4-cgi   4.0.3pl1-0pota A server-side, HTML-embedded scripting langu
ii  php4-dev   4.0.3pl1-0pota Files for PHP4 module development
ii  php4-imap  4.0.3pl1-0pota IMAP module for php4
ii  php4-ldap  4.0.3pl1-0pota LDAP module for php4

it works fine after i do the changes i am just curious what
the /etc/php4/cgi directory is used for if /etc/php4/apache
is what apache seems to be using ?

just seems kinda odd .

tia

nate



RPC services - bind to 1 ip?

2001-01-26 Thread aphro

hi


I've been dealing with this for a long time, and was curious if
anyone knows if it's possible.

I want to force all RPC services to listen only on 1 interface,
it is VERY VERY difficult to firewall them as they apparently
choose random ports everytime they load which means i have to
spend 30 minutes running nmap both TCP and UDP ports 1-65535 and
verifying what ports are open with lsof and netstat and firewall
the rpc ones accordingly. this procedure works but it gets 
old after a while :) so i wanna know if i can force rpc services
to bind to 1 interface, or force them to use the same ports 
everytime(even if i restart NFS it uses new ports) the rpcs:
rpc.mountd, rpc.statd are the worst offenders for me.. sunrpc
is good and happily sits on port 111 ...

luckily i don't reboot often but sometimes i need to reload
the /etc/exports file ..maybe i can do this without
reloading the nfs services..but that still doesn't solve the
problem as a whole :) i don't think its possible to run
rpcs from xinetd ..but if it is i'd like to know how.

thanks!@

nate



ipmasqadm portfw vs autofw vs rinetd ?

2001-01-25 Thread aphro
hi

today i had a small problem trying to get portfw to forward connections
to another netowrk. what i wanted to do was send connections from port
X accross our T1s to a place on the other side of the country(all the
internal traffic is using non routable ips..) however it did not work ..
connection couldn't be made. directing a connection to an ip on the local
network worked fine.

i thought about using autofw but i could not find a way to specify
an IP address to listen on to forward, as there are other ips on
the machine forwarding the same port number to various internal
machines, i have to specify the ip.

the temporary solution was to use rinetd, which seemed to work fine..

but i'm curious if this is possible with portfw?

the command i was using:
/usr/sbin/ipmasqadm portfw -a -P tcp -L EXTERNAL_IP PORT -R INTERNAL_IP PORT

since it worked when i directed it to a local ip i figure my syntax is
fine ...but i dont understand what is different about portfw vs
rinetd (other then one bein kernel and the other bein userspace)
that lets rinetd work and portfw not..

any ideas ??

thanks!

nate



filtering in mutt

2001-01-20 Thread aphro
hi

is there a way to filter mail in mutt? i am testing mutt in
IMAP mode so i do not believe i can use procmail or anything
external to do it. the mail system is cyrus so i do not have
access to the mail files themselves either, so the filtering
has to be done by the client itself. i don't need anything
complex, mainly match addresses and move them to other
folders ..

any ideas?

thanks

nate



ipchains and redirection

2001-01-16 Thread aphro
hi

i have a firewall machine on a network somewhere and it has
2 real ips and 1 fake ip. our mail server acts as a secondary
MX incase the primary MX is down. here's the current
setup:

123.456.789 - primary ip addy of the firewall on 'net
123.456.788 - secondary ip (also resolves to our mail
server)

port forwarding is setup so 123.456.788 port 25 to forward
to the internal mail server. however outgoing traffic goes
through 123.456.789 which for some reason screws with
some of the spam sites like rbl or whatever. so what i'm
wondering is if it's possible with ipchains or something
to redirect all outgoing traffic on 123.456.789 port 25
to 123.456.788 port 25. i know -j REDIRECT but it seems
to only be able to specify a port not an ip. i am thinking
of trying to do -j REDIRECT in combonation with rinetd
to redirect out of the other interface but i've never
used rinetd in this fashon, and am pretty sure it won't
work. maybe i can use -j REDIRECT in combo with -i eth1:1
to do what i need? i will have to play around with it..

any ideas are welcome :)

thanks!!

nate



X forwarding using openssh.

2000-06-07 Thread aphro
ive seen a few posts about this in the list but i still can't get it
workin.

here's what i got goin.

1 Debian GNU/Linux 2.2 machine running OpenSSH 1.2.3
1 Linux Mandrake 7.1 machine running OpenSSH 1.2.2

both are on the same (local) network. infact they are with 15 feet of each
other.  but i wanna do this to reduce resource usage on my desktop
machine(yesterday i was swapping full 128MB with only 128MB of ram, too
much!)

both machines are configured for SSH forwarding, when i login to the
mandrake box:

[EMAIL PROTECTED]'s password: 
debug: Requesting compression at level 6.
debug: Enabling compression at level 6.
debug: Requesting pty.
debug: Requesting X11 forwarding with authentication spoofing.
debug: Requesting shell.
debug: Entering interactive session.
Last login: Wed Jun  7 17:05:10 2000 from aphro
[EMAIL PROTECTED] aphro]$ 

when i try to run an X app, take kedit for example:

[EMAIL PROTECTED] aphro]$ kedit
debug: Received X11 open request.
debug: channel 0: new [X11 connection from ip-133.some.domain.net port
3062]
debug: X11 connection uses different authentication protocol.
X11 connection rejected because of wrong authentication.

debug: X11 rejected 0 i1/o16
debug: channel 0: INPUT_OPEN - INPUT_WAIT_DRAIN [read failed]
debug: channel 0: shutdown_read
debug: channel 0: OUTPUT_OPEN - OUTPUT_WAIT_IEOF [write failed]
debug: channel 0: shutdown_write
debug: X11 rejected 0 i2/o64
debug: channel 0: INPUT_WAIT_DRAIN - INPUT_WAIT_OCLOSE [inbuf empty, send
IEOF]
debug: channel 0: OUTPUT_WAIT_IEOF - OUTPUT_CLOSED [rvcd IEOF]
debug: channel 0: INPUT_WAIT_OCLOSE - INPUT_CLOSED [rcvd OCLOSE]
debug: channel 0: full closed
kedit: Fatal IO error: client killed

I tried adding xauth stuff:

[from mandrake]
xauth list says:

ip-133.some.domain.net/unix:0  MIT-MAGIC-COOKIE-1
bdef3301c39c185d2cbae4afac24a9e7
ip-133.some.domain.net:0  MIT-MAGIC-COOKIE-1
bdef3301c39c185d2cbae4afac24a9e7
ip-133.some.domain.net/unix:10  MIT-MAGIC-COOKIE-1
bdef3301c39c185d2cbae4afac24a9e7
ip-133.some.domain.net/unix:11  MIT-MAGIC-COOKIE-1
bdef3301c39c185d2cbae4afac24a9e7


[from debian]
xauth says

ip-197.some.domain.net:0  MIT-MAGIC-COOKIE-1
fe19bd06799125a48c7bce3cb0ba8af0
192.168.59.1:0  MIT-MAGIC-COOKIE-1  fe19bd06799125a48c7bce3cb0ba8af0
ip-197/unix:0  MIT-MAGIC-COOKIE-1  fe19bd06799125a48c7bce3cb0ba8af0
ip-133.some.domain.net/unix:11  MIT-MAGIC-COOKIE-1
bdef3301c39c185d2cbae4afac24a9e7
ip-133.some.domain.net/unix:10  MIT-MAGIC-COOKIE-1
bdef3301c39c185d2cbae4afac24a9e7


tried several different variations of the xauth settings on both sides to
no avail.

I don't need ssh to do this but it would be nice. any help ? please cc to
meif possible my other account doesnt seem to be recieving list email
([EMAIL PROTECTED]) i think its a DNS issue(on my end) the domain on this
account works though.

nate

:::
http://www.aphroland.org/
http://www.linuxpowered.net/
[EMAIL PROTECTED]
5:30pm up 11 days, 2:31, 1 user, load average: 0.21, 0.08, 0.01



Re: dselect issues..

2000-04-12 Thread aphro
i always heard that the multicd option in dselect was somewhat broken so
avoid using it if you can.

as for XF86 see http://www.debian.org/~vincent for the proper line(s) to
add to your /etc/apt/sources.list to update it

then run apt-get update ; apt-get upgrade

note the packages on vincent's site are unofficial, although i have had
rather good luck with them, there has been a couple times when i had minor
problems(which was always with non critical software which is good :) )

nate

On Tue, 11 Apr 2000, Gregory Guthrie wrote:

guthri 1) I think I have the most up to date stable (slink) system, I have 
used 
guthri apt-get to do an update/upgrade, and everything seems OK.
guthri 
guthri 2) when I use dselect, I do not get the multi-cd option; but I have a 
guthri release on multiple cd's (2.1R4).
guthri 
guthri 3) when I use the cd2 from this set, all works fine, but   if I try to 
use 
guthri cd1, it complains about the path, and no Packages file found, although 
it 
guthri is there, and in the right place (same as CD#2).
guthri 
guthri 4) I tried to do apt-get install xfree86 to get the most up to date 
guthri version, but it did nothing. Is there a way to use apt-get to know what 
guthri needs upgrade, and to get the latest without 80-100MB downloads?
guthri 
guthri Thanks,
guthri Gregory
guthri 
guthri Dr. Gregory Guthrie
guthri [EMAIL PROTECTED] (515)472-1125Fax: -1103
guthri Computer Science Department
guthri College of Science and Technology
guthri Maharishi University of Management
guthri(Maharishi International University 1971-1995)
guthri  http://www.mum.edu/cs_dept
guthri 
guthri 
guthri 
guthri -- 
guthri Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
guthri 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
8:06pm up 6:55, 5 users, load average: 0.05, 0.02, 0.00


sendmail mail queue problem ?

2000-04-12 Thread aphro
i got 3 mails that seem to be stuck in my mail queue, my system's clock
was wildly off so i updated it via ntpdate, and i think for some reason
those mails got stuck, as they don't deliver, all 3 of them are supposed
to go to local users, the system shows no errors for them. its just not
sending, sendmail shows it is processing it, but its been trying for
ages(30mins ?) to no avail..

anyone else experience such a thing? i am running a custom build of
sendmail 8.9.3 on debian 2.1. i suppose i could just copy/paste and
deliver the mails manually, since there is only 3 but it'd be nice if i
could get sendmail to do it.

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
8:18pm up 6:26, 2 users, load average: 1.37, 0.93, 0.49


Re: compiling spice from src

2000-04-11 Thread aphro
if i remember right, termcap is really old and kinda obsolete.

edit the make file and change -ltermcap to -lncurses

that should work.

nate

On Tue, 11 Apr 2000, Attila Csosz wrote:

acsosz I tried to compile spice 3f5 from source but I got the following error
acsosz 
acsosz 
acsosz /usr/bin/ld: cannot find -ltermcap
acsosz collect2: ld returned 1 exit status
acsosz make[3]: *** [spice3] Error 1
acsosz /usr/bin/ld: cannot find -ltermcap
acsosz collect2: ld returned 1 exit status
acsosz make[3]: *** [nutmeg] Error 1
acsosz /usr/bin/ld: cannot find -ltermcap
acsosz collect2: ld returned 1 exit status
acsosz make[3]: *** [sconvert] Error 1
acsosz /usr/bin/ld: cannot find -ltermcap
acsosz collect2: ld returned 1 exit status
acsosz make[3]: *** [proc2mod] Error 1
acsosz /usr/bin/ld: cannot find -ltermcap
acsosz collect2: ld returned 1 exit status
acsosz make[3]: *** [help] Error 1
acsosz /usr/bin/ld: cannot find -ltermcap
acsosz collect2: ld returned 1 exit status
acsosz make[3]: *** [multidec] Error 1
acsosz make[3]: Target `recursive' not remade because of errors.
acsosz 
acsosz What is wrong?
acsosz 
acsosz Thanks 
acsosz  Attila
acsosz 
acsosz -- 
acsosz --
acsosz - Mail: [EMAIL PROTECTED]; Debian 2.2 Linux  / 2.2.13 / exim-
acsosz - Get my PGP key: gpg --keyserver keys.pgp.com --recv-key 0x2cc33acb -
acsosz 
acsosz 
acsosz -- 
acsosz Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
acsosz 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:24pm up 13 days, 21:03, 4 users, load average: 0.97, 0.77, 0.71


quota problem

2000-04-11 Thread aphro
im about ready to deploy my new server but i have a question about quotas.

all of my users sit on /users a seperate partition(2 9gig drives in raid1)

many of the users show identical disk/file usage for both the root
filesystem and /users

i was wondering, what could be causing this? i am sure they are not using
it, but don't know what could make the system think they are.

example:

Disk quotas for user some user (uid 1022): 
 Filesystem  blocks   quota   limit   grace   files   quota   limit
grace
  /dev/sda24048   25600   35840 23512802560
   /dev/md04048   25600   35840 23512802560


i am using webmin .79 to do the quota stuff.  running debian 2.1r5(? if
its out, if not its r4) on a self made linux 2.2.14 SMP+ow2 kernel
(www.openwall.com/linux)

any tips are appreciated.

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
10:13pm up 14 days, 3:52, 1 user, load average: 0.03, 0.03, 0.00


Re: ppp-compress-1 strangeness

2000-04-11 Thread aphro
the ABORT messages are normal, it just tells you it will abort if it
recieves those signals from the modem.

as for the modules, do an lsmod after your fully logged on and have
network connectivity, typically the compression modules will be named
bsd_comp and ppp_deflate if they are not loaded you can try to load
them manually by using insmod bsd_comp and insmod ppp_deflate

nate

On Tue, 11 Apr 2000, Vitux wrote:

viggov Hi Debs
viggov When I do pon from an xterm, and watch the modem in
viggov xconsole, 
viggov I get:
viggov pppd started by vitux, uid 1000
viggov abort on BUSY
viggov abort on NO CARRIER
viggov abort on VOICE
viggov abort on NO DIALTONE
viggov abort on NO ANSWER
viggov send ATZ^M
viggov expect OK
viggov ATZ^M^M
viggov OK
viggov ---got it
viggov and then the dialing bit and the connection progresses.
viggov Is this normal or are the aborts errors?
viggov After the connection has been established, I get this:
viggov modprobe: can't locate module ppp-compress-1
viggov Then I get all the usual rcvd/sent -stuff, and the
viggov connection works quite allright (could be a little faster,
viggov maybe).
viggov Anyone got a clue?
viggov I guess I might be missing a module?!
viggov The system is slink w/ my own 2.2.14-kernel, on a
viggov PII-350/128Mb.
viggov The modem is an external ISDN (Eicon Diva).
viggov Thanks
viggov Vitux
viggov 
viggov -- 
viggov Death comes to us in various guises, 
viggov swiftly changing as a baby's mood...
viggov 
viggov 
viggov Debian GNU/Linux
viggov Micro$loth-free Zone
viggov 
viggov 
viggov -- 
viggov Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
viggov 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
12:48pm up 14 days, 18:28, 3 users, load average: 0.00, 0.04, 0.03


Re: OT: Video cards? Creating Athlon Debian box..

2000-04-11 Thread aphro
you should also take into account the linux kernel itself, only the most
recent kernels suport the athlon, most of the older ones just crash on
it. if i remember right if the distribution is 2.2.x based you need at
least 2.2.13 for the kernel. if it is 2.0.x based there shouldn't be a
problem(although there could be) as the 2.0.x are more generic(i have a
2.0.36 i686 SMP kernel that ran on my dual p2 running on a p200mmx just
fine)

you will know right away if the distribution/kernel is compadible as it
will crash within seconds of boot if it is not.

although whatever distribution i expect you would choose the newest rev of
it, avoid the older ones with the older kernels.

cpu type/speed has very little to do with what will and won't work in X.

nate

On Tue, 11 Apr 2000 [EMAIL PROTECTED] wrote:

kvaugh At 09:41 AM 4/11/00 -0700, you wrote:
kvaugh It's not Debian you are matching your card up to, it's xfree86. In 
fact,
kvaugh you will want to upgrade xfree86 to 3.3.6, so it will support your 
card.
kvaugh 
kvaugh I just built a couple machines with Matrox G200 16 MB cards and they 
work
kvaugh well. I am not a gamer, so I couldn't give you much info as far as the 
3D
kvaugh 
kvaugh Thanks, Brian (and all others who have sent me their thoughts!).
kvaugh 
kvaugh I began to realize this as I dove into the question more.. through the 
site
kvaugh and other places.  I think my question was really rooted in Does X work
kvaugh with Athlon?  And that certainly is the case.
kvaugh 
kvaugh Appreciate the input, folks!
kvaugh 
kvaugh Kenward
kvaugh 
kvaugh   .'^~;,_
kvaugh Dr. Kenward Vaughan   ':,^'
kvaugh Professor of Chemistry\;:/
kvaugh Bakersfield College   |,;|
kvaugh Bakersfield, CA  93305   / ', \
kvaugh / o  O \
kvaugh [EMAIL PROTECTED]   (oOoOOoOo)
kvaugh  ------
kvaugh   ???$$MM$$???
kvaugh 
kvaugh 
kvaugh 
kvaugh -- 
kvaugh Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
kvaugh 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
12:48pm up 14 days, 18:28, 3 users, load average: 0.00, 0.04, 0.03


Re: Fw: installing two NIC's

2000-04-06 Thread aphro
confirm that the linksys is indeed using the right driver, if the driver
is wrong(or too old, check for updates) it will give that error. doesn't
always mean there is an IRQ conflict or i/o conflict.

you can get most of the updated NIC drivers from:

http://cesdis1.gsfc.nasa.gov/linux/drivers/

nate

On Wed, 5 Apr 2000, Beavis wrote:

beavis can u install two nic's w/ kernel 2.0.38
beavis 
beavis using:
beavis intel pro 10/100 --eepro100  works great!!
beavis linksys 10/100  -- trying to use ne2k-pci 
beavis 
beavis getting following error init_module: Device or resource busy
beavis 
beavis installation failed.
beavis 
beavis have eth0 setup how do i setup eth1 to use the linksys adapter??
beavis 
beavis --beavis--
beavis 
beavis 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
6:16pm up 8 days, 23:56, 3 users, load average: 0.09, 0.06, 0.06


Re: installing two NIC's

2000-04-06 Thread aphro
another thing to try is yank out the eepro card and see if the linksys
becomes eth0, if not then it is for sure not a conflict.

im thinking its a driver thing, outdated driver or the wrong driver, i
dont have experience using the ne2k pci cards so i can't really advice
further along that path :(

nate

On Wed, 5 Apr 2000, Beavis wrote:

beavis how do u initially set up eth1
beavis 
beavis eth0 i went into modconf and loaded the module to the kernel
beavis i am using 2.0.38 by the way,
beavis i just want to set up eth1 but i think i am doing it wrong
beavis i got past the step of isolating the cards, now how do i track down and
beavis attach the module for eth1
beavis 
beavis lo  --loop back
beavis eth0 is eepro100
beavis eth1 doesn't exsist yet
beavis 
beavis 
beavis 
beavis - Original Message -
beavis From: Robert Waldner [EMAIL PROTECTED]
beavis To: Beavis [EMAIL PROTECTED]
beavis Cc: debian list debian-user@lists.debian.org
beavis Sent: Wednesday, April 05, 2000 3:59 PM
beavis Subject: Re: installing two NIC's
beavis 
beavis 
beavis On Wed, 05 Apr 2000 15:30:20 PDT, Beavis writes:
beavis yes, they are both pci cards
beavis 
beavis is there a way to change the irq's physically?
beavis 
beavis none that I?m aware of, hey, they?re pci-cards ;-)
beavis 
beavis have you tried the set-the-gfx-card-in-between workaround?
beavis 
beavis rw
beavis --
beavis / Robert Waldner [EMAIL PROTECTED] | Phone: +43 1 89933 0 Fax x533 \
beavis \KPNQwest/AT tech staff| Diefenbachg. 35   A-1150 Wien /
beavis 
beavis 
beavis 
beavis 
beavis 
beavis -- 
beavis Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
beavis 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
6:16pm up 8 days, 23:56, 3 users, load average: 0.09, 0.06, 0.06


Re: Help with 3com905 card

2000-04-06 Thread aphro
i believe the driver is outdated i had to update my driver.

you can get an updated driver from:

http://support.3com.com/infodeli/tools/nic/linux.htm

or

http://cesdis.gsfc.nasa.gov/linux/drivers/vortex.html

i use the one from www.3com.com and it works great on my 3c905Cs

nate

On Wed, 5 Apr 2000, John Maheu wrote:

jmaheu While installing frozen on a new PIII intel system I ran into problems
jmaheu with the 3Com card 3C905C.
jmaheu 
jmaheu Using the install floppies the 3c59x driver installed ok. However, on 
the
jmaheu 1st reboot the log files show:
jmaheu 
jmaheu Apr  5 11:55:29  jmm kernel: 3c59x.c:v0.99H 11/17/98 Donald Becker  
jmaheu Apr  5 11:55:29  jmm kernel: eth0: 3Com 3c905C Tornado at 0xd800,
jmaheu ***INVALID CHECKSUM 002f***  00:50:da:8a:84:db, IRQ 11
jmaheu 
jmaheu Of course the network is unreachable.
jmaheu 
jmaheu Any suggestons on solving this problem? 
jmaheu Thanks
jmaheu John
jmaheu 
jmaheu John Maheuphone  (780) 492-2049
jmaheu University of Alberta fax(780) 492-3300
jmaheu Dept. of Economicsemail  [EMAIL PROTECTED] 
jmaheu Edmonton, Alberta http://raemac.econ.ualberta.ca/
jmaheu Canada, T6G 2H4
jmaheu 
jmaheu 
jmaheu 
jmaheu -- 
jmaheu Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
jmaheu 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
7:03pm up 9 days, 43 min, 2 users, load average: 0.15, 0.13, 0.09


Re: new computer ??

2000-04-06 Thread aphro
there are and always will be issues.

as always stick to standard hardware for best results.  avoid win*
stuff(modems especially), most oem systems should be mostly compadible
with exception of the modem 90% or so ship with a winmodem as standard,
most usually have a hardware modem as an option though.  of course its
best to buy from a vendor that will tell you 'yes it'll run linux!'.  I
have found SAG Electronics to be an excellent OEM. they use all top
quality stuff, www.sagelec.com they have great prices, but i dont think
they offer anything real cheap/low end, most of their stuff is workstation
or server class, you may be able to find something for under $1000 though.

cybermax has mostly compadible systems as well one of my friends got an
athlon 550 from em last year, only thing he had to swap was the
modem. suse 6.3 installed somewhat easily (i had to tweak his X config for
his savage4)

nate

On Thu, 6 Apr 2000, Hunter H Marshall wrote:

marsha I'm considering a new computer. I was considering 2, but maybe I'll 
turn my
marsha 100MHZ pentium into a dedicated browser for family needs.
marsha 
marsha ANYhoo, does anyone have good/bad experiences with any of the linux 
hardware
marsha vedors, VALinux, etc? Are the newest machines from Gateway, Dell, etc 
presenting
marsha any hardware compatibility issues? Strong opinions between regular PC 
sellers
marsha vs. the linux harwdare sellers?
marsha 
marsha This is to run Debian, and maybe win9x.
marsha 
marsha Thanks
marsha 
marsha hunter
marsha 
marsha 
marsha -- 
marsha Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
marsha 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
7:03pm up 9 days, 43 min, 2 users, load average: 0.15, 0.13, 0.09


RE: Inter pro100

2000-04-05 Thread aphro
some of the newer RTL8139 cards  need a newer driver, and there are a few
other there (some come from a company called SMC) that are mislabled and
need an updated driver to work as well.

I have several RTL8139-based cards running great in linux.  the driver
seems to be better then the 3com one, as my rtl8139s can transfer data
200% faster then my 3C905b/3c905c (5.5MB/s as opposed to 11MB/s on the
rtl8139 on 100baseT switched)

see http://cesdis.gsfc.nasa.gov/linux/drivers/rtl8139.html

for more info on the rtl8139 drivers

nate

On Tue, 4 Apr 2000, Chris Mason wrote:

chris Yeh, I agree. Don't worry about it, I am trying somehting else. I have 
two cards that use the  rtl8139.o module, one is in and working, now I have to 
figure how to install a second one. Should be much easier since there is only 
one module needed.
chris Any suggestions?
chris 
chris Chris Mason
chris Box 340, The Valley, Anguilla, British West Indies
chris Tel: 264 497 5670 Fax: 264 497 8463
chris USA Fax (561) 382-7771
chris Take a virtual tour of the island
chris http://net.ai/ The Anguilla Guide
chris Find out more about NetConcepts
chris www.netconcepts.ai
chris bwz*mq  
chris 
chris -Original Message-
chris From: aphro [mailto:[EMAIL PROTECTED]
chris Sent: Tuesday, April 04, 2000 5:10 PM
chris To: Chris Mason
chris Cc: Debian-User; recipient.list.not.shown:;
chris Subject: Re: Inter pro100
chris 
chris 
chris i would reccomend agianst this, BUT if you really need one you would have
chris to specify what kernel you are using, and what processor you have/what is
chris the kernel compiled for.  chances are a binary module wouldn't load there
chris is just too many things that could go wrong.  i suggest if you want an
chris eepro driver you get a completly compiled kernel with the driver in
chris it.   I(or someone else) can get you a kernel but again specify what
chris kernel you want, and what cpu you got ..and what specific options you may
chris need(scsi, etc) to get it to boot.
chris 
chris nate
chris 
chris On Tue, 4 Apr 2000, Chris Mason wrote:
chris 
chris chris I need a compiled Inter PRO 100 driver eepro100.o I think it is. 
If anyone can shoot me over a copy I would appreciate it.
chris chris 
chris chris Chris Mason
chris chris Box 340, The Valley, Anguilla, British West Indies
chris chris Tel: 264 497 5670 Fax: 264 497 8463
chris chris USA Fax (561) 382-7771
chris chris Take a virtual tour of the island
chris chris http://net.ai/ The Anguilla Guide
chris chris Find out more about NetConcepts
chris chris www.netconcepts.ai
chris chris bwz*mq  
chris chris 
chris chris 
chris chris -- 
chris chris Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
chris chris 
chris 
chris [mailto:[EMAIL PROTECTED] ]--
chrisVice President Network Operations   http://www.firetrail.com/
chris   Firetrail Internet Services Limited  http://www.aphroland.org/
chrisEverett, WA 425-348-7336http://www.linuxpowered.net/
chris Powered By:http://comedy.aphroland.org/
chris Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
chris -[mailto:[EMAIL PROTECTED] ]--
chris 2:04pm up 7 days, 19:43, 1 user, load average: 0.06, 0.09, 0.03
chris 
chris 
chris -- 
chris Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
chris 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
4:35pm up 7 days, 22:15, 1 user, load average: 0.22, 0.11, 0.04


Re: corel linux

2000-04-05 Thread aphro
woulda been nice if storm had updated X before releasing. seems like they
are still using 3.3.2.3 (?) none of my videocards work with that : doh!

of course i only spent about 30 mins trying to install it..

nate

On Tue, 4 Apr 2000, sam wrote:

hari I have tried Corel Linux but I wasn't crazy about it. It's very geared
hari towards the desktop Windows user. I recommend you check out Storm Linux at
hari www.stormix.com. Storm is also based on Debian but I like the things they
hari added to it a lot more than what Corel did. I installed it last week and
hari I've been pretty happy with it.
hari 
hari ~Sam
hari 
hari  
hari 
hari On Tue, 4 Apr 2000, massa confusa wrote:
hari 
hari  I have read that corel linux is based on debian.  Does anyone on this 
list
hari  use it and can they tell me any more about it?  Thanks,
hari  
hari  mary
hari  
hari  
hari  
hari 
hari 
hari -- 
hari Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
hari 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
4:35pm up 7 days, 22:15, 1 user, load average: 0.22, 0.11, 0.04


Re: two card clash

2000-04-05 Thread aphro
it would be helpful if you included output from dmesg, and also did you
try to insmod the rtl8139 module manually ? if it loads(with or without
errors) run dmesg again and see what the kernel says.

i have run dual 3com 3c905s and dual rtl8139s with no trouble.  there is
the matter of the PCI bus, if you are installing a 2nd card after the
system is configured and it is in a lower pci slot, the system would
detect it first making the 2nd card eth0, but thats not a linux problem(in
my opinion)

nate

On Tue, 4 Apr 2000, Chris Mason wrote:

chris Corel Linux - Intel box 
chris I installed the OS with one rtl8139 netowrk card in it, the OS found the 
card and loaded the right module which was assigned in the /etc/conf.modules 
file. The network functioned and running an ifconfig command revealed eth0 was 
assigned properly and all the parameters were correct.
chris I closed down and added another rtl8139 card. I booted and there was no 
network cards in ifconfig, no networking functioning.
chris 
chris How do I avoid this problem? Is it an IRQ problem? I thought PCI avoided 
this.
chris 
chris Chris Mason
chris Box 340, The Valley, Anguilla, British West Indies
chris Tel: 264 497 5670 Fax: 264 497 8463
chris USA Fax (561) 382-7771
chris Take a virtual tour of the island
chris http://net.ai/ The Anguilla Guide
chris Find out more about NetConcepts
chris www.netconcepts.ai
chris bwz*mq  
chris 
chris 
chris -- 
chris Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
chris 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
4:35pm up 7 days, 22:15, 1 user, load average: 0.22, 0.11, 0.04


ipchains udp firewalling

2000-04-05 Thread aphro
this is driving me crazy.

i admit i suck at firewalling :)

BUT this just doesn't make sense.

what im tryin to do with ipchains (works fine with ipfwadm) is for
example:

block port 111 both udp and tcp.

the commands im using is:

/sbin/ipchains -A input -s 0.0.0.0/0  -d 208.222.179.27 111 -p tcp -j DENY
/sbin/ipchains -A input -s 0.0.0.0/0  -d 208.222.179.27 111 -p udp -j DENY

the tcp filtering works fine according to nmap, but also according to nmap
udp is not filtered, i am using nmap 2.2-BETA4 on linux 2.2.14 SMP
i686(+ow2 from www.openwall.com/linux/) i am also testing it using nmap
2.30-BETA17 with the same results.

i have tried both ipchains native and ipfwadm-wrapper, they give the same
results, i can filter tcp no problem, but udp is acting really
weird.  maybe its a nmap problem ??  is there a better way to test a
udp firewall ??

help! :)

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
6:08pm up 7 days, 23:48, 1 user, load average: 0.10, 0.09, 0.05


RE: two card clash

2000-04-05 Thread aphro
i suggest doing it manually, i remember having a problem with corel's GUI
and multiple ethernet interfaces, edit /etc/init.d/network manually, or
see my previous mail, and put the line you use (once it is tested) in that
script, and another line for eth1.  as far as i know you cannot have 2
network cards on the same network at the same time using most of the
drivers. so make sure eth1 is on another network.

nate



On Tue, 4 Apr 2000, Chris Mason wrote:

chris hmmm. still very confused. According to dmesg both cards were assigned 
properly, ther's just a line for each assigning eth0 and eth1 respectively 
(can't include as it's not on the network, and there's no floppy drive). 
However, ifconfig shows no eth0 or eth1.
chris What do I have to do to get these cards installed now?
chris Thanks for all your patience, guys.
chris 
chris Chris Mason
chris Box 340, The Valley, Anguilla, British West Indies
chris Tel: 264 497 5670 Fax: 264 497 8463
chris USA Fax (561) 382-7771
chris Take a virtual tour of the island
chris http://net.ai/ The Anguilla Guide
chris Find out more about NetConcepts
chris www.netconcepts.ai
chris bwz*mq  
chris 
chris -Original Message-
chris From: aphro [mailto:[EMAIL PROTECTED]
chris Sent: Tuesday, April 04, 2000 7:43 PM
chris To: Chris Mason
chris Cc: Debian-User; recipient.list.not.shown:;
chris Subject: Re: two card clash
chris 
chris 
chris it would be helpful if you included output from dmesg, and also did you
chris try to insmod the rtl8139 module manually ? if it loads(with or without
chris errors) run dmesg again and see what the kernel says.
chris 
chris i have run dual 3com 3c905s and dual rtl8139s with no trouble.  there is
chris the matter of the PCI bus, if you are installing a 2nd card after the
chris system is configured and it is in a lower pci slot, the system would
chris detect it first making the 2nd card eth0, but thats not a linux 
problem(in
chris my opinion)
chris 
chris nate
chris 
chris On Tue, 4 Apr 2000, Chris Mason wrote:
chris 
chris chris Corel Linux - Intel box 
chris chris I installed the OS with one rtl8139 netowrk card in it, the OS 
found the card and loaded the right module which was assigned in the 
/etc/conf.modules file. The network functioned and running an ifconfig command 
revealed eth0 was assigned properly and all the parameters were correct.
chris chris I closed down and added another rtl8139 card. I booted and there 
was no network cards in ifconfig, no networking functioning.
chris chris 
chris chris How do I avoid this problem? Is it an IRQ problem? I thought PCI 
avoided this.
chris chris 
chris chris Chris Mason
chris chris Box 340, The Valley, Anguilla, British West Indies
chris chris Tel: 264 497 5670 Fax: 264 497 8463
chris chris USA Fax (561) 382-7771
chris chris Take a virtual tour of the island
chris chris http://net.ai/ The Anguilla Guide
chris chris Find out more about NetConcepts
chris chris www.netconcepts.ai
chris chris bwz*mq  
chris chris 
chris chris 
chris chris -- 
chris chris Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
chris chris 
chris 
chris [mailto:[EMAIL PROTECTED] ]--
chrisVice President Network Operations   http://www.firetrail.com/
chris   Firetrail Internet Services Limited  http://www.aphroland.org/
chrisEverett, WA 425-348-7336http://www.linuxpowered.net/
chris Powered By:http://comedy.aphroland.org/
chris Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
chris -[mailto:[EMAIL PROTECTED] ]--
chris 4:35pm up 7 days, 22:15, 1 user, load average: 0.22, 0.11, 0.04
chris 
chris 
chris -- 
chris Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
chris 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
6:08pm up 7 days, 23:48, 1 user, load average: 0.10, 0.09, 0.05


Re: ipopd and ~/mail/mbox

2000-04-04 Thread aphro
this would work for logins, but would this work for POP3 connections?? i
dont think any scripts are executed for them 

nate

On Mon, 3 Apr 2000, Chris Gray wrote:

cgray On Mon, Apr 03, 2000 at 01:01:03PM -0700, aphro wrote:
cgray  I am switching my systems over to using ~/mail/mbox instead of
cgray  /var/spool/mail/$USER 
cgray  
cgray  i configured procmail to deliver mail to ~/mail/mbox and configured 
pine
cgray  to look to ~/mail/mbox but i cant seem to get imapd or ipopd from pine
cgray  4.21 to look there. and there seems to be very little documentation on
cgray  ipopd/imapd.
cgray  
cgray  any ideas? im gonna look into other pop3 packages and test compadiblity
cgray  maybe qpopper would be better(with my mailbox formatting whatever ipopd
cgray  uses..)
cgray 
cgray It could be helpful to change your $MAIL environment variable.  Add the
cgray line export MAIL='/home/foo/mail/mbox' without the quotes to your
cgray .profile or .bashrc.  Relogin, and things might work better.  Oh, and
cgray change foo to your username, of course.  It's surprising how many people
cgray forget to do that :)
cgray 
cgray HTH,
cgray Chris
cgray 
cgray -- 
cgray pick, pack, pock, puck: like drops of water in a fountain falling
cgray softly in the brimming bowl.
cgray 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
5:56pm up 6 days, 23:35, 3 users, load average: 0.07, 0.08, 0.08


Re: IP Masquerading, SSH, and X

2000-04-04 Thread aphro
it may be worth looking into VNC, 

http://www.uk.research.att.com/vnc/

and vnc with SSH:

http://www.uk.research.att.com/vnc/sshwin.html

its probably the simplist way to get up and goin.

but it depends on what apps you want to run (e.g. vmware does not run
worth a crap on an vnc X server)

nate

On Mon, 3 Apr 2000, Beavis wrote:

beavis ok, is it possible to open a x-windows interface through a ssh 
connection
beavis from a remote location all on static IP's?
beavis 
beavis DSL to DSL from example.
beavis 
beavis more specifically, start x from a ssh client on another system.
beavis 
beavis if so, please don't just say it is possible, but explain how
beavis 
beavis thankx --beavis--  just a guy from a small town trying to learn 
something
beavis 
beavis 
beavis   I'm currently set up such that I can ssh into my machine at work 
from
beavis home
beavis   and all works well as long as I stay within the console session.
beavis However,
beavis   I'm on a dialup line (no DSL yet...) and use IP masquerading, which
beavis appears
beavis   to prevent X clients on my work box from connecting to the X server 
here
beavis at
beavis   home.
beavis  
beavis  If you log in via ssh, then you should be able to start x-applications
beavis  out-of-the-box. ssh creates a proxy x-server and thus forwards any
beavis  x-connection through the encrypted connection opened by the 
masqueraded
beavis  host.
beavis  if it does not work, then check, if ForwardX11 yes is in your
beavis  ~/.ssh/config. if it is, then check, how $DISPLAY is set on the remote
beavis  machine after ssh-login. it should be something like 
remotemachine:10.0
beavis  - if it is not, then ssh does not forward the x-connections ... don't 
ask
beavis  me, why.
beavis 
beavis  --
beavis  Hi! I'm a .signature virus! Copy me into your ~/.signature, please!
beavis  --
beavis  Linux - the last service pack you'll ever need.
beavis 
beavis 
beavis  --
beavis  Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED] 
beavis /dev/null
beavis 
beavis 
beavis 
beavis 
beavis -- 
beavis Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
beavis 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
8:31pm up 7 days, 2:11, 1 user, load average: 0.23, 0.22, 0.13


Re: IRQ settings 4 sb 32 pnp

2000-04-04 Thread aphro
better to try using the bios to change the IRQ, if that doesn't work --

if the soundblaster is PCI (i cant remember what a SB32 is..) try moving
the slot, if its ISA the default for it should be IRQ5(but your
system appears to be different :) ).  if your video
card is PCI try changing the slot too.  if the soundblaster is ISA use
isapnp to reconfigure it, you should not need a kernel recompile, unless
your drivers are statically compiled into the kernel as opposed to
modules.

nate

On Mon, 3 Apr 2000, Jaye Inabnit ke6sls wrote:

ke6sls 
ke6sls Hello,
ke6sls 
ke6sls I have a creative labs soundblaster 32 pnp. It currently uses irq 11,
ke6sls unfortunatly, so is my video card.  I have noticed since i compiled 
this 
ke6sls kernel (2.2.14) using slink, that while rvplayer plays and I move my 
mouse
ke6sls it makes noise, same with my mp3 player etc.  Is there a way to easily 
move
ke6sls the irq for the sb to another irq?? If so, how do I go about it. I 
realize that
ke6sls I will need to recompile the kernel to reflect new irq.
ke6sls 
ke6sls TIA
ke6sls 
ke6sls 
ke6sls -- 
ke6sls 
ke6sls 
ke6sls Jaye:-}
ke6sls 
ke6sls M.J. Inabnit, KE6SLS e-mail  [EMAIL PROTECTED]
ke6sls 707-442-6579 h/m 707-441-7096 p
ke6sls http://www.qsl.net/ke6slsICQ# 12741145
ke6sls This mail composed with kmail on kde on X on linux warped by debian
ke6sls If it's stupid, but works, it ain't stupid.
ke6sls 
ke6sls 
ke6sls -- 
ke6sls Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
ke6sls 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
8:31pm up 7 days, 2:11, 1 user, load average: 0.23, 0.22, 0.13


Re: Kernel panic: unable to mount root

2000-04-04 Thread aphro
make sure you compiled the kernel with the driver(s) needed to access your
hdd, did you see an IDE scan go on during boot?

sample output from a VIA MVP3 based Super Socket 7 board would be:

VP_IDE: IDE controller on PCI bus 00 dev 39
VP_IDE: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0xe000-0xe007, BIOS settings: hda:DMA, hdb:DMA
ide0: VIA Bus-Master (U)DMA Timing Config Success
ide1: BM-DMA at 0xe008-0xe00f, BIOS settings: hdc:DMA, hdd:DMA
ide1: VIA Bus-Master (U)DMA Timing Config Success
hda: IBM-DJNA-370910, ATA DISK drive
hdb: IBM-DPTA-353750, ATA DISK drive
hdc: CD-ROM CDU4011, ATAPI CDROM drive
hdd: MATSHITA CR-588, ATAPI CDROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
hda: IBM-DJNA-370910, 8693MB w/1966kB Cache, CHS=1108/255/63
hdb: IBM-DPTA-353750, 35772MB w/1961kB Cache, CHS=4560/255/63
hdc: ATAPI 40X CD-ROM drive, 120kB Cache
Uniform CDROM driver Revision: 2.55
hdd: ATAPI 32X CD-ROM drive, 128kB Cache


chekc your kernel config, this is likely the problem. 

nate

On Mon, 3 Apr 2000, Kevin wrote:

wessam I decided to compile a new kernel (2.2.1) to upgrade from 2.0.38 for my 
486
wessam (slink) and I followed the instructions in the kernel howto.  I 
compiled and
wessam installed the kernel, ran lilo, and rebooted.  I receive the following
wessam error:
wessam 
wessam Kernel panic: VFS: unable to mount root fs on 03:01
wessam 
wessam my lilo.conf:
wessam boot=/dev/hda
wessam root=/dev/hda1
wessam install=/boot/boot.b
wessam map=/boot/map
wessam vga=normal
wessam delay=20
wessam image=/vmlinuz
wessam label=Linux
wessam read-only
wessam 
wessam I have two IDE hard drives with / on hda1.  my boot disk works and 
mounts
wessam root fine.  I must've missed some option in the kernel, or is my 
lilo.conf
wessam is set up wrong?
wessam thanks for any help,
wessam Kevin
wessam 
wessam 
wessam -- 
wessam Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
wessam 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
9:12pm up 7 days, 2:51, 1 user, load average: 0.13, 0.08, 0.08


Re: apache-ssl w/ or without apache

2000-04-04 Thread aphro
i would(and do) run 2 servers, with different configurations for both,
tighter setup for the ssl one.  I'm using covalent's SSL
(www.covalent.net)

nate

On Tue, 4 Apr 2000, Peter-Paul Witta wrote:

paul hi!
paul would you recommend running only apache-ssl with ssl disabled for some
paul vhosts, or running 2 servers... ?
paul 
paul kind regards, +43-676-5411293
paul Peter-Paul Witta  +43-1-7189880-0
paul CUBiT system engineering  www.CUBiT.at
paul 
paul 
paul -- 
paul Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
paul 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
2:04pm up 7 days, 19:43, 1 user, load average: 0.06, 0.09, 0.03


Re: exim and pop3d?

2000-04-04 Thread aphro
mail is recieved via SMTP, which means you would be using exim to recieve
mail for multiple domains on 1 machine, not pop3, that is for client
access.

nate

On Tue, 4 Apr 2000, Attila Csosz wrote:

acsosz I'd like to set up a pop3d for incoming mail from other hosts on my box.
acsosz Is it possible with exim or should I install a pop3d? ( cucipop or etc. 
)
acsosz 
acsosz Thanks 
acsosz  Attila
acsosz  
acsosz -- 
acsosz --
acsosz - Mail: [EMAIL PROTECTED]; Debian 2.2 Linux  / 2.2.13 / exim-
acsosz - Get my PGP key: gpg --keyserver keys.pgp.com --recv-key 0x2cc33acb -
acsosz 
acsosz 
acsosz -- 
acsosz Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
acsosz 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
2:04pm up 7 days, 19:43, 1 user, load average: 0.06, 0.09, 0.03


Re: Inter pro100

2000-04-04 Thread aphro
i would reccomend agianst this, BUT if you really need one you would have
to specify what kernel you are using, and what processor you have/what is
the kernel compiled for.  chances are a binary module wouldn't load there
is just too many things that could go wrong.  i suggest if you want an
eepro driver you get a completly compiled kernel with the driver in
it.   I(or someone else) can get you a kernel but again specify what
kernel you want, and what cpu you got ..and what specific options you may
need(scsi, etc) to get it to boot.

nate

On Tue, 4 Apr 2000, Chris Mason wrote:

chris I need a compiled Inter PRO 100 driver eepro100.o I think it is. If 
anyone can shoot me over a copy I would appreciate it.
chris 
chris Chris Mason
chris Box 340, The Valley, Anguilla, British West Indies
chris Tel: 264 497 5670 Fax: 264 497 8463
chris USA Fax (561) 382-7771
chris Take a virtual tour of the island
chris http://net.ai/ The Anguilla Guide
chris Find out more about NetConcepts
chris www.netconcepts.ai
chris bwz*mq  
chris 
chris 
chris -- 
chris Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
chris 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
2:04pm up 7 days, 19:43, 1 user, load average: 0.06, 0.09, 0.03


ipopd and ~/mail/mbox

2000-04-03 Thread aphro
I am switching my systems over to using ~/mail/mbox instead of
/var/spool/mail/$USER 

i configured procmail to deliver mail to ~/mail/mbox and configured pine
to look to ~/mail/mbox but i cant seem to get imapd or ipopd from pine
4.21 to look there. and there seems to be very little documentation on
ipopd/imapd.

any ideas? im gonna look into other pop3 packages and test compadiblity
maybe qpopper would be better(with my mailbox formatting whatever ipopd
uses..)

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
12:58pm up 6 days, 18:37, 2 users, load average: 0.13, 0.12, 0.08


apache installation from source

2000-03-30 Thread aphro
Ok, just got finished with my bi-yearly apache update(takes about 4 hours
to do! heheh) and i'm encountering something odd ...

i configured apache to install to /usr/local/apache, but apachectl wants
to call /usr/local/apache/src/httpd instead of /usr/local/apache/bin/httpd

i fixed it by making src a symlink to bin but id rather fix it in the
source/configuration wherever that may be 

my configuration:

galactica:/usr/local/apache/bin# ./httpd -V
Server version: Apache/1.3.12 (Unix)
Server built:   Mar 29 2000 20:48:09
Server's Module Magic Number: 19990320:7
Server compiled with
 -D HAVE_MMAP
 -D HAVE_SHMGET
 -D USE_SHMGET_SCOREBOARD
 -D USE_MMAP_FILES
 -D USE_FCNTL_SERIALIZED_ACCEPT
 -D HTTPD_ROOT=/usr/local/apache
 -D SUEXEC_BIN=/usr/local/apache/bin/suexec
 -D DEFAULT_PIDLOG=logs/httpd.pid
 -D DEFAULT_SCOREBOARD=logs/apache_runtime_status
 -D DEFAULT_LOCKFILE=logs/accept.lock
 -D DEFAULT_XFERLOG=logs/access_log
 -D DEFAULT_ERRORLOG=logs/error_log
 -D TYPES_CONFIG_FILE=conf/mime.types
 -D SERVER_CONFIG_FILE=conf/httpd.conf
 -D ACCESS_CONFIG_FILE=conf/access.conf
 -D RESOURCE_CONFIG_FILE=conf/srm.conf


galactica:/usr/local/apache/bin# ./httpd -l
Compiled-in modules:
  http_core.c
  mod_vhost_alias.c
  mod_env.c
  mod_log_config.c
  mod_mime_magic.c
  mod_mime.c
  mod_negotiation.c
  mod_status.c
  mod_info.c
  mod_include.c
  mod_autoindex.c
  mod_dir.c
  mod_cgi.c
  mod_asis.c
  mod_imap.c
  mod_actions.c
  mod_speling.c
  mod_userdir.c
  mod_alias.c
  mod_rewrite.c
  mod_access.c
  mod_auth.c
  mod_expires.c
  mod_headers.c
  mod_usertrack.c
  mod_so.c
  mod_setenvif.c
  mod_auth_mysql.c
  mod_throttle.c
  mod_gzip_content.c
  mod_log_mysql.c
  mod_roaming.c
  mod_php3.c
  mod_frontpage.c
  mod_perl.c
suexec: disabled; invalid wrapper /usr/local/apache/bin/suexec

Server Version: Apache/1.3.12 (Unix) mod_perl/1.22
FrontPage/4.0.4.3 PHP/3.0.14 AuthMySQL/2.20
Server Built: Mar 29 2000 20:48:09
API Version: 19990320:7
Run Mode: standalone
User/Group: www-data(33)/33

not sure what that suexec error is im using the suexec that came with
apache 1.3.12 ..i'll look more into that tomorrow

any ideas ?

tia

nate


[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
9:15pm up 2 days, 3:54, 3 users, load average: 0.00, 0.02, 0.02


skipping forced fscks

2000-03-27 Thread aphro
I am about to shutdown this machine which has 221 days of uptime and want
to avoid the 'file system has gone too long without check, check forced'
message upon reboot, whats the best way to go about doing it? is it even
possible ? 

also does anyone see any problem(serious) with running a 2.0.36 SMP kernel
on a k6-3 ? i figure it should work as the older kernels were pretty
generic, (i plan to test too of course), i am going to move the hdds out
of this machine to another temporary machine while i transplant the
hardware into a rack mount system - minimal downtime .. i bet it wouldnt
work on a 2.2.x kernel but i figure it should on 2.0 ..i can always
recompile if it doesnt ..

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
12:06pm up 221 days, 42 min, 1 user, load average: 1.08, 1.10, 1.03


Re: MS Frontpage Ext.

2000-03-22 Thread aphro
what version of fp_extensions? where did you get it? what version of
apache?(if your not using apache what are you using?) how did you install
it ? etc etc .. just saying slink with kernel 2.2.14 says nothing.. the
distribution and kernel have virtually nothing to do with FP.

I run Apache 1.3.9 (self compiled) with:

mod_frontpage 4.0.4.3 (aka fp2000)
mod_perl 1.2.1
AuthMySQL 2.20
mod_roaming 1.0
mod_gzip v???
mod_throttle v??

i got my frontpage stuff from www.rtr.com

although i don't use it myself, some of my customers do and i havent heard
of any problems as of yet

and for the record i am running debian 2.1r4 with kernel
2.0.36+securelinux SMP. :/

nate

On Tue, 21 Mar 2000, Beavis wrote:

beavis 
beavis 
beavis   has anyone experienced any bugs w/ the fp_extensions, for example
beavis  i have a frontpage website loaded on my slink 2.2.14 and when a user 
tries
beavis  to access the home page w/ netscape 4.7, they get a script error, loads
beavis fine
beavis  w/ any other netscape ver., and not too many problems w/ iexplorer 
execpt
beavis  that i have a few translucent buttons that don't work properly.
beavis 
beavis  i know it is not the source code because i have a mirrored site w/ a
beavis hosting
beavis  company, and their fp_extensions work fine, no bugs at all!  They are 
using
beavis  a unix platform.
beavis 
beavis  are there any logs that can pin point the problem, or are there ways to
beavis  debug it?  Not meaning to ask too many questions at once, but i am 
kind of
beavis  new at this.
beavis 
beavis 
beavis  thankx for any replies...take care...beavis
beavis 
beavis   What system are you using? I installed FP Ext and the tools on a 
Debian
beavis  slink
beavis   2.1 and did not have problems get this tools running.
beavis  
beavis   Try www.rtr.com. There you'll normally find the latest release 
including
beavis  the
beavis   tools and the source code for the Apache module.
beavis  
beavis   Sven
beavis  
beavis  
beavis   On 19-Mar-2000 Werner Reisberger wrote:
beavisDoes anybody know how to install Frontpage Server Extension on a
beavis Debian
beavissystem with libc6?
beavis   
beavisI was able to compile Apache with the frontpage module but the
beavis  installation
beavisof the extension failed becaused the binary therein are compiled
beavis against
beavislibc5 and there aren't any sources @=
beavis   
beavisI hate this stuff but some customers wants it.
beavis   
beavis-- Werner
beavis   
beavis   
beavis--
beavisUnsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]
beavis 
beavis/dev/null
beavis  
beavis   --
beavis   Please reply only to
beavis   [EMAIL PROTECTED]
beavis   --
beavis   Date: 20-Mar-2000
beavis   Time: 23:16:33
beavis   --
beavis  
beavis  
beavis   --
beavis   Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED] 
beavis  /dev/null
beavis  
beavis  
beavis 
beavis 
beavis 
beavis 
beavis -- 
beavis Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
beavis 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:09pm up 215 days, 3:42, 1 user, load average: 1.03, 1.11, 1.08


Re: Authentication...? RADIUS ?

2000-03-22 Thread aphro
we use radius for both livingston portmasters and ascend max, i believe
radius is to some extent vendor specific, so i suggest contacting the
company who makes the equipment for compadible software. or do a search on
freshmeat:

http://www.freshmeat.net/search.php3?query=radius

quite a few different ones depending on your needs.

nate

On Wed, 22 Mar 2000, The_Phantom 74 wrote:

the_ph Hi
the_ph 
the_ph I am trying to set up an ISP, and RADIUS has been sugested for the 
the_ph authenication and billing of the users on the dial up servers.
the_ph 
the_ph Any one have any recomendations??
the_ph 
the_ph Also WHERE can i find it???
the_ph It was not listed under dselect
the_ph 
the_ph But then I'm new to all this so I could be doing it wrong!!
the_ph __
the_ph Get Your Private, Free Email at http://www.hotmail.com
the_ph 
the_ph 
the_ph -- 
the_ph Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
the_ph 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:09pm up 215 days, 3:42, 1 user, load average: 1.03, 1.11, 1.08


Re: Speed

2000-03-22 Thread aphro
usually /var/log/messages will show what pppd/chat reports as the connect
speed.  this is not always accurate, depending on modem configuration
sometimes it shows just the speed of the port(like 115,200 and
57,600) rather then the real connect speed (like 31,200 48,000 etc)

nate

On Wed, 22 Mar 2000, Don Cavaiani wrote:

doncma How can I tell what speed I have been connected at to my ISP?
doncma 
doncma 
doncma -- 
doncma Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
doncma 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:09pm up 215 days, 3:42, 1 user, load average: 1.03, 1.11, 1.08


Re: VPN

2000-03-22 Thread aphro
i highly reccomend vpnd, search www.freshmeat.net for it, i installed a
vpn in december of last year and it works perfectly.  i can supply sample
config files from my setup if you like.

nate


On Wed, 22 Mar 2000, Onno wrote:

Onno I've been away too long...
Onno 
Onno Anyway, I have a problem and it involves a
Onno Virtual Private Network a.k.a. VPN.
Onno 
Onno I ask anyone who has done this kind of thing
Onno to please tell me how they did set it up or
Onno point me in the direction of good documentation.
Onno 
Onno My first setup will be between two LAN's but
Onno it has to scale to three LAN's and more...
Onno 
Onno Any pointers, advice or pitfall warnings are welcome.
Onno 
Onno Thanks in advance,
Onno 
Onno Onno
Onno 
Onno 
Onno 
Onno -- 
Onno Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
Onno 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:09pm up 215 days, 3:42, 1 user, load average: 1.03, 1.11, 1.08


RE: DNS lookups fail

2000-03-22 Thread aphro
please include a copy of your resolv.conf ..you may have something
mispselled or not right ..

nate

On Wed, 22 Mar 2000, Guyren G Howe wrote:

guyren Sorry, that was not quite right. nslookup did eventually return, with:
guyren 
guyren *** Can't find server name for address ...: No response from server
guyren 
guyren for all three servers I have in my /etc/resolv.conf file, which are 
working
guyren fine.
guyren 
guyren I can ping these same servers just fine, so I don't think it's a routing
guyren issue.
guyren 
guyren --
guyren  From: Guyren G Howe [EMAIL PROTECTED]
guyren  Date: Wed, 22 Mar 2000 04:40:40 -0800
guyren  To: debian-user@lists.debian.org debian-user@lists.debian.org
guyren  Subject: DNS lookups fail
guyren  
guyren  I have somehow managed to get things so that the computers going 
through my
guyren  Debian 2.2 box for NAT can do DNS just fine, but I can't do a 
nslookup from
guyren  the same box itself to save myself.
guyren  
guyren  nslookup never returns anything, even a timeout. My /etc/resolv.conf 
file
guyren  shows the same things I have set on the other computers that work 
fine through
guyren  my linux box.
guyren  
guyren  What could I have got wrong?
guyren  
guyren  TIA
guyren 
guyren 
guyren -- 
guyren Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
guyren 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:09pm up 215 days, 3:42, 1 user, load average: 1.03, 1.11, 1.08


Re: Debian

2000-03-22 Thread aphro
i was a user of slackware as well, i chose debian because:

1) friend reccomended it
2) it had the largest(and still does i think) number of developers
3) it is known as being top quality
4) it has a huge number of packages

since then i have just adapted to it, not sure technically what places it
above the others other then just overall better control, as in they spend
more time comming out with releases making sure it works really well. and
apt is pretty cool too i didnt touch apt till almost 2 years after i
installed debian though.

in the end it really comes down to personal preference, and the situation
(if your using commercial software that will only support you if you run
redhat..then maybe its best to use redhat ..stuff like that)

nate

On Wed, 22 Mar 2000, Bart Friederichs wrote:

plant Hi,
plant 
plant Can anybody tell me why Debian is better than other distributions? And 
don't
plant give me the 'it is the only really non-commercial version' crap. I want 
real
plant technical benefits. Or is it all a matter of flavor? I have been using
plant Slackware for one or two years now and I also liked that one. Switching 
to
plant Debian was necessary because the store didn't sell slack.
plant 
plant Bart
plant 
plant 
plant -- 
plant Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
plant 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
1:18pm up 216 days, 1:51, 1 user, load average: 1.23, 1.11, 1.02


Re: X stability issue

2000-03-19 Thread aphro
this is normal, netscape is trying to resolve some domain names during
that point..and i guess because of its single-threadedness(?) that it
freezes during resolution(found it when running an strace on the process)

happens on every version of netscape/X i have used be it linux libc5 linux
libc6, or irix

nate


On Sun, 19 Mar 2000, Bob Nielsen wrote:

nielse 
nielse I'm seeing this with netscape 4.72 (libc6 version), 2.2.14 and
nielse xserver-svga 3.3.6-6.  If I bring up netscape, click on the location
nielse box and start to type, it will freeze every time.  If I wait a few
nielse seconds after clicking on the box, the vertical cursor line will appear
nielse in the box and I can type without incident.
nielse 
nielse 
nielse On Sun, Mar 19, 2000 at 08:10:06PM +0100, Oswald Buddenhagen wrote:
nielse  hi sven,
nielse  
nielse  i'm experiencing this kind of freezes, too.
nielse  i also use kernel 2.2.14, but i'm not running debian (but suse) and 
use
nielse  xfree 3.3.5.
nielse  the programm that causes these freezes _seems_ to be netscape, but who
nielse  knows for sure ...
nielse  maybe because i own an abit board, too (it's a bx6) ...
nielse  
nielse   I'm wondering how other debian potato-boxes behaves in X. I have a 
2 month old
nielse   potato system running on a dual-celeron, 256Mbyte ram and a Matrox 
G400. The
nielse   kernel is a patched 2.2.14 (using the IDE-patch from hedrik). X 
freezes totally
nielse   after a few days of use. Sometimes I'm able to go to a console and 
kill X as
nielse   root other times it's necessary to log in from another workstation 
and kill X
nielse   remotely - this is due to fact the my keyboard freezes too...
nielse   Today it went really awfull. I wanted to try CivCTP on Linux to 
test the
nielse   performance of my box. In the middle of the game everything freezes 
and I turn
nielse   to another workstation to kill X remotely. This time it's not 
enough. I have to
nielse   reboot the machine to get some new output on the monitor.
nielse   
nielse   Now my questions are:
nielse   Has anyone else experienced the same kind of instability?
nielse   Does anyone know if this could be due to...
nielse   - kernel instability?
nielse   - X instability?
nielse   - my hardware?
nielse   - potato instability?
nielse   
nielse   The fact is that I really hate to reboot my machine - it feels like 
I'm running
nielse   Windows.
nielse   X is XFree86 version 3.3.6-6 (svga). Mboard is Abit BP6 (not OC'ed).
nielse   
nielse  
nielse  -- 
nielse  Hi! I'm a .signature virus! Copy me into your ~/.signature, please!
nielse  --
nielse  Linux - the last service pack you'll ever need.
nielse  
nielse  
nielse  -- 
nielse  Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
nielse  
nielse 
nielse -- 
nielse Bob Nielsen, N7XY (RN2)[EMAIL PROTECTED]
nielse Tucson, AZ DM42nh  QRP-L #1985  SOC #77
http://www.primenet.com/~nielsen
nielse  
nielse 
nielse 
nielse -- 
nielse Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
nielse 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
1:08pm up 213 days, 1:40, 1 user, load average: 1.00, 1.04, 1.07


starting process in background

2000-03-03 Thread aphro
whats the best way?  im running a icecast server and wanna set it to start
on boot..

what i got goin is..

su icecast -c /usr/local/icecast/bin/icecast /dev/null 

BUT the problem is it segfaults when i have the  ..without the  its
fine..i thought of doing screen but i cant figure out how to auto detach
it after it loads..

any ideas?? thanks :)

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
3:51pm up 196 days, 4:15, 1 user, load average: 1.14, 1.08, 1.05


starting process in the background(thanks!)

2000-03-03 Thread aphro
thanks for all the replies on that, i'll try em out..

looks like the one that will work is the screen one that markin
sent. kmself@ix.netcom.com's suggestions didn't load icecast and ethan's i
think depends on potato's start-stop-daemon(i run slink) maybe i can
compile it manually if markin's screen idea doesnt work.

i'm leaving to move to seattle soon so im gonna unsubscribe to this
list(and debian-isp) so i dont have 25,000 mails when i arrive :/

thanks again, and see you all in a few weeks!!

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
7:17am up 196 days, 19:41, 1 user, load average: 1.07, 1.06, 1.08






Re: problem mounting NT share

2000-03-02 Thread aphro
turn up debugging in samba and include it in your post it makes it VERY
difficult to debug with just it wont work in the email.

nate

On Thu, 2 Mar 2000, Brian J. Stults wrote:

bs7452 My university just switched from Novell servers to NT.  There are two
bs7452 servers containing discs to which I have access.  One of them gave me no
bs7452 trouble at all.  I used this command to mount the shared drive:
bs7452 
bs7452 smbmount //server1/shared /mountpoint.  
bs7452 
bs7452 However, I could not get the drive on the other server mounted.  My
bs7452 username and password are identical for both, and I can mount both
bs7452 easily from Windows98.  The sysadmin knows nothing of linux, but did
bs7452 suggest one possible difference between the two servers that might be
bs7452 causing the problem.  He said the first server, which I don't have
bs7452 trouble with, is a domain hosted server, or something like that. 
bs7452 While the one that I am having trouble with is a stand alone server,
bs7452 or something like that.  Sorry, but I know absolutely nothing about
bs7452 Windows NT.  He also suggested that I explicitly pass my username and
bs7452 that I use GROUPNAME/USERNAME as my username rather then simply
bs7452 USERNAME.  That didn't work, but I thought it might give you a better
bs7452 idea of what he thinks the problem is.
bs7452 
bs7452 Any ideas?  Thanks.
bs7452 -- 
bs7452 
bs7452 Brian J. Stults
bs7452 Doctoral Candidate
bs7452 Department of Sociology
bs7452 University at Albany - SUNY
bs7452 Phone: (518) 442-4652  Fax: (518) 442-4936
bs7452 Web: http://www.albany.edu/~bs7452
bs7452 
bs7452 
bs7452 -- 
bs7452 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
bs7452 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
8:33am up 195 days, 20:57, 1 user, load average: 1.10, 1.08, 1.06


Re: xi accelerated x

2000-03-02 Thread aphro
On Thu, 2 Mar 2000, Tim Ryder wrote:

jawse Has anyone ever used Xi accelerated x with debian for
jawse laptops?
jawse If so, is it really worth using a commercial x server
jawse or can I tweak xfree86 and get equal if not comprable
jawse performance.

i installed accelx5 on a slink laptop for shitsgiggles not long ago.  it
is a Cyrix 75mhz machine with a onboard 1MB video(some CT chip can't tell
what kind) and (heres the kicker) 8MB ram!

XF86 would not run(for some reason, even in 16colors) accelx ran good in
16colors although i could not get it higher.  using fvwm95, (and only
fvwm95 and a xterm) memory usage was acceptable, only 2-3 mb swap
used..the machine has no network connection of any kind so its not of much
use no matter what OS i have on it..but it was still impressive to see X
running in such a crappy enviornment.


check Xinsides site, depending on your videochip...accelx may be good to
use..xf86 supports most chips althugh most are not accelerated..so xinside
blows em away but depends on yer chip.

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
8:33am up 195 days, 20:57, 1 user, load average: 1.10, 1.08, 1.06


Re: Kernel 2.2.14 and Xserver

2000-03-02 Thread aphro
when you go back to the older kernel does it fix it? i can't think of any
way the kernel would affect the path of the system..

nate

On Thu, 2 Mar 2000, Tim Ryder wrote:

jawse I updated my kernel to 2.2.14 and it blew out my path
jawse statements.  Also when i run X i get the standard
jawse xinit screen with no window manager.  If i run the
jawse window manager from the xinit screen then it works. 
jawse All of the files appear to be in order in the /etc/X11
jawse folder.
jawse 
jawse Any suggestions
jawse 
jawse Tim Ryder
jawse Developer
jawse FreeRide.com
jawse 
jawse =
jawse Tim Ryder
jawse [EMAIL PROTECTED]
jawse __
jawse Do You Yahoo!?
jawse Talk to your friends online with Yahoo! Messenger.
jawse http://im.yahoo.com
jawse 
jawse 
jawse -- 
jawse Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
jawse 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
12:56pm up 196 days, 1:20, 1 user, load average: 1.17, 1.08, 1.02


Re: Base Install + SETI@Home

2000-03-01 Thread aphro
On Tue, 29 Feb 2000, Brian wrote:

brianj I'm guessing I either already have them and did something wrong, or 
it's 
brianj because I have a bar bones system and they usually get installed as a 
brianj 'depends' with something larger.

i am using the staticalluy linked i386 version on most of my slink
machines, i ran a ldd on it and sure enough it was static :) so looks like
all you'd need is the right libc, which if your using something other then
i686 (e.g k6 k6-2 k6-3 athlon pentMMX etc..) the libc5 libs and everything
they depend on (package libc5).  if your running i686 (ppro, p2 p3
etc) you would need glibc2.1(potato)..

that should be it, since its static everything else (library
wise) *should* be included in the binary itself.

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
5:55pm up 194 days, 6:19, 1 user, load average: 1.10, 1.06, 1.01



Re: Movie Player for .dat files?

2000-03-01 Thread aphro
On Wed, 1 Mar 2000, Chirag wrote:

mannan Thanks, but I am not able to get te fullscreen mode. When I switch 
it
mannan on, the player
mannan takes the entire screen, but the movie itself is limited to the central 
part
mannan of the screen
mannan and is actually smaller than in the normal mode. The Readme file says

that is normal when you do not have a modeline low enough. what mpegtv
(and other fullscreen apps do) is get the closest resolution that is
possible(defined in XF86Config) for full screen mode. some games won't
even run if there isn't a 640x480 modeline.

see

http://www.debian.org/Lists-Archives/debian-user-9911/msg01229.html

for the message about my modelines, and the ones that work on my
monitor. they may NOT work on yours, but it may be worth a try.

mannan requires
mannan that an X server with DGA is required, What is this DGA? I am stuck 
with and
mannan odd
mannan card that does not properly get mode tuned with XFree86_SVGA. Since it
mannan supports
mannan VESA BIOS Extensioin 2.0 I am using Frame Buffer X Server XFree86_FBDev.
mannan with the kernel frame buffer device turned on using 
video=vesa:pmipal,mtrr
mannan kernel
mannan param(Ref /usr/src/linux/Documetation/framebuffer.txt).
mannan The problem with this is that it is unaccelerated. Still I am able to 
get
mannan comparable
mannan perfromance to playing in Windows.

chances are it won't run in full screen then, DGA is sorta like XF86's
version of DirectVideo(DirectX) it provides direct graphics access
bypassing the network layer of the X server(I believe). mpegtv uses
SDL to run fullscreen which inpart uses DGA.

mannan Another utillity which makes other OSes to run on Linux, VMWare for 
Linux
mannan also requires this DGA
mannan stuff. It also warned me that full screen mode is not possible  since 
DGA is
mannan not in the X Server.

what video chipset is on your videocard?

mannan If you have any info on this DGA please let me know

it's good to have, but its not a very safe way to access the hardware, the
system can crash very easily while using DGA(DGA2 may help fix some of
this i dunno) but only the best XF86 drivers support it.  i dont find
fullscreen mode in vmware very useful unless i want to try to trick
someone into thinking im running another OS:/

nate

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
7:06am up 194 days, 19:30, 2 users, load average: 1.02, 1.05, 1.13


Re: Who builds YOUR binary RPMs?

2000-03-01 Thread aphro
i believe .deb's have checksums .. and at least as far as
official packages go, using apt anyways, that usually grabs the 'master'
package listing, does dpkg automatically check the checksum on
installation or no? if not it would be a nice feature.. i know rpms have
some form of checksum(pgp i think) but from what ive seen you gotta use
rpm manually to check it.

and while creating a native .deb probably is beyond the knowledge of most
people(either they never bothered to learn or some other reason) it is
quite easy to turn a rpm into a deb with alien, even though it won't be a
good deb package(with all the fancy scripts) it can give a false sense of
security if you think that just cuz its a .deb its safe.  from the reports
ive read in the past hacked ftp sites are usually caught pretty
quick(within hours?)

nate


On Wed, 1 Mar 2000, Kenneth Scharf wrote:

schark There are two questions to this issue:
schark 1: Do you trust your distro?
schark 2: Do you trust your distro's ftp site.
schark 
schark Question number two is really a matter of the site
schark having been hacked and a trojan (or a coo-coo) being
schark planted.
schark 
schark I use debian, and I DO trust them.  I would never have
schark a problem downloading a .deb file from the official
schark debian site or a trusted mirror.  In fact it is a
schark little different with .deb's.  RPM's are EVERYWHERE,
schark and ANY Tom, Dick, or Harry can create them.  DEB's
schark seem to be created mostly by Debian personal (though
schark there are some non-official ones).  The reason for
schark this is that the tools necessary to create DEB's are
schark not as well documented and understood, so only real
schark debian developers are using them.  Of course with
schark Corel and Stormix in the picture now, this might be
schark changing.
schark 
schark --- Tim Jones [EMAIL PROTECTED] wrote:
schark  Tom Schaefer wrote:
schark   
schark   I know this is a Linux list, but a friend of mine
schark  had this
schark   exchange with one of the people from FreeBSD back
schark  in November,
schark   regarding Linux vs. FreeBSD and I thought you
schark  folks might like
schark   to read it ... it may prompt some of you to
schark  actually go make a
schark   boot floppy and install straight from the net ...
schark  Keith, my
schark   friend had written an article, to which Daniel
schark  Sobral,
schark   (FreeBSD) responded, and this is only one of
schark  several of the
schark   emails exchanged:
schark   
schark   = cut here =
schark  
schark  Wow, Tom, thanks for copying me on this exchange.  I
schark  found it
schark  VERY interesting.  This, plus Carlos's information
schark  that there ARE
schark  indeed multiple fallback sites built in for
schark  everything under
schark  /usr/ports, makes me want to explore FreeBSD so much
schark  more.  
schark  
schark  One other thing that I noticed during my FreeBSD
schark  box's
schark  compilation, but forgot about until reminded by that
schark  article, was
schark  that the source packages' MD5 checksums are part of
schark  the process
schark  to help ensure that you're not downloading a trojan.
schark   
schark  
schark  This brings up a serious trust issue: It's only a
schark  matter of time
schark  (could have already happened, for all we know)
schark  before somebody at
schark  one of the RPM-based distro companies inadvertantly
schark  puts out a
schark  binary RPM that does something nasty and/or covert
schark  to our
schark  systems.  Or maybe it won't be so innocent: some
schark  scummy PHB will
schark  get the bright idea to have the coders slip in a
schark  piece of code to
schark  'survey' which programs we use the most, or to
schark  'sign' content you
schark  produce with your ethernet card's MAC address (MS
schark  does this with
schark  Word, they called it a bug, gimme a break!)  Yes,
schark  they provide
schark  SRPMS too, but how do you know the RPMS came
schark  directly from the
schark  SRPMS?  
schark  
schark  The question comes down to:  Do you trust your
schark  distro provider to
schark  build all of your binaries cleanly?  In a couple
schark  years when
schark  pressure comes from Wall Street to turn a profit or
schark  lose that
schark  huge market capitalization, can we trust them to
schark  still play
schark  straight with us?
schark  
schark  Don't get me wrong: I'm very pro-business!  I work
schark  for myself,
schark  and am doing pretty nicely, and hope to do even
schark  better - it's
schark  wonderful, I wish more people could enjoy it... but
schark  the misdeeds
schark  of the very largest companies (MS, AOL, Disney,
schark  Sony, Amazon,
schark  Real Networks, MPAA/DVD-CSS, GTE, Bellsouth, Network
schark  Solutions,
schark  you get the idea) have taught me to distrust the
schark  very largest
schark  players.  After money comes power, and in our world,
schark  these guys'
schark  idea of power includes intentional backdoors,
schark  sabotaging
schark  competing software, 

RE: xfs-xtt configuration

2000-03-01 Thread aphro
while im sure inet/ works good i use tcp/  which also works.

nate

On Wed, 1 Mar 2000, Paul Kallstrom wrote:

paul First, you may want to change unix/:7101 to inet/127.0.0.1:7101, if 
you
paul don't have the unix ports module installed, or compiled in your kernel.
paul 
paul 
paul 
paul 
paul On 01-Mar-2000, at 13:59:09, Arcady Genkin climbed upon the nearest 
soapbox,
paul and shouted: 
paul  Ethan Benson [EMAIL PROTECTED] writes:
paul  
paul  there is mkttfdir in fttools package.  
paul  Thanks!
paul  
paul  My new question... After I successfully generated the fonts.dir file,
paul  and added
paul FontPathunix/:7101
paul FontPath /usr/X11R6/lib/X11/fonts/TrueType/
paul  
paul  to XF86Config, X no longer starts, and I'm seeing error messages that
paul  X cannot set default font path. 
paul  
paul  Did I have to do some magic in /etc/X11/xfs/config? Here's what mine
paul  looks like.
paul  
paul  ,[ config ]
paul | # /etc/X11/xfs/config
paul | #
paul | # X font server configuration file
paul | 
paul | # allow a maximum of 10 clients to connect to this font server
paul | client-limit = 10
paul | # when a font server reaches its limit, start up a new one
paul | clone-self = on
paul | # log errors using syslog
paul | use-syslog = on
paul | # turn off TCP port listening (Unix domain connections are still 
permitted)
paul | no-listen = tcp
paul | # paths to search for fonts
paul | catalogue =
paul | 
/usr/lib/X11/fonts/misc/,/usr/lib/X11/fonts/cyrillic/,/usr/lib/X11/fonts/Spee
paul | 
do/,/usr/lib/X11/fonts/Type1/,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X1
paul | 1/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/TrueType/
paul | # in decipoints
paul | default-point-size = 120
paul | # x1,y1,x2,y2,...
paul | default-resolutions = 75,75,100,100
paul | deferglyphs = all
paul | 
paul | # font cache control, specified in KB
paul | cache-hi-mark = 2048
paul | cache-low-mark = 1433
paul  `
paul  
paul  Thanks for any input!
paul  -- 
paul  Arcady Genkin
paul  Nostalgia isn't what it used to be.
paul  
paul  
paul  -- 
paul  Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED] 
paul  /dev/null
paul 
paul -- 
paul --
paul E-Mail: Paul Kallstrom [EMAIL PROTECTED]
paul Date: 01-Mar-2000
paul Time: 11:15:55
paul 
paul Debian GNU/Linux (Potato)  XFMail
paul --
paul Random Trekism: If there are self-made purgatories, then we all have to 
live in
paul them.
paul -- Spock, This Side of Paradise, stardate 3417.7
paul 
paul ---
paul -BEGIN PGP PUBLIC KEY BLOCK-
paul Version: 2.6.3a
paul 
paul mQCNAziz+lIAAAEEAMFaz28Wb0tb53nl/sG7AvGQSMNvGuqhHS+0beHzjNWRFXKT
paul iRUZ2HjT+0WUfkOGOd9N0MoDKQ/TXCPvx4cUtm7lDnX9GNIBdeP5Wpy6FS5XDJfL
paul 49kktHtWZbshC3L9E0HdvxP0NGrpGEh1JxY5PL22eWZ9VycWlp9RNX/8WadlAAUT
paul tChQYXVsIEthbGxzdHJvbSA8cGF1bEBzb2Z0cmFjYW1lcmljYS5jb20+iQCVAwUQ
paul OLP6Up9RNX/8WadlAQGjogP/bB0uiqGYWTkyo5/vGeG6dhwDhU2Ua2RF0Yn/pJbg
paul TG2o9WLfNzD4xlBP+dXh9bQ2LAR0zw2ZkFu8l78uqxU4YykiDhnADYJaIOWNXutB
paul lxTqN817w020tMQcEcChUBT40WrqscHFmStVV4kuPft744JWfUB4h5BIZCFaDZw+
paul zgA=
paul =er8j
paul -END PGP PUBLIC KEY BLOCK-
paul 
paul 
paul 
paul -- 
paul Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
paul 

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
10:49am up 194 days, 23:13, 2 users, load average: 1.01, 1.03, 1.00


  1   2   3   4   5   6   7   8   9   10   >