Re: UPS hardware and software

2001-11-21 Thread Alvin Oga

hi ya

i like liebert too ... plus the one i have ( $1,000 range ) has an
extendable battery pack for more hours if needed

el cheapo $50 and $100 consumer type UPS is good as an expensive
surge protector esp when in thunderstorm/lightning prone areas

c ya
alvin

-- all of my dead ups has all been those from APC..


a cheap UPS good for 12hrs of up time on a normal server ...
$ 15car battery
$ 25car battery charger ( from kragen/pepboys/napa etc )
$100+12V dc input Atx power output

insurance on your house/bldg to protect from hydrogen gas!!!
( ie... keep the battery/charger well ventilated
( and dont smoke cigarettes...

On Tue, 20 Nov 2001, Mark A. Bialik wrote:

> Liebert equipment is true line-interactive hardware... you are always
> running from battery (which is continuously charging).  Try running
> APC's in an environment with a backup power source (Diesel/Natural Gas)
> and see how they handle the switch-off...  maybe you'll get lucky, maybe
> not.
> 
> Liebert beats anything APC and comparative ilk puts out.  Data center
> quality.  There are downloads of the SNMP/Client software on their web
> page for most UNIX and Windows systems.
> 
> I don't work for them... just swear by them.  You'll pay a little bit
> more, but you all know the saying.
> 



problems upgrading to 2.2r4

2001-11-21 Thread Robert Walker
Hi,
I am having difficulties upgrading to version 2.2r4.
I ran
$ apt-get update
$ apt-get -u dist-upgrade

and the following error keeps coming up :
You might want to run `apt-get -f install' to correct these.
Sorry, but the following packages have unmet dependencies:
  python-gnome: Depends: libglade-gnome0 but it is not installed
E: Unmet dependencies. Try using -f.

when I try to install libglade-gnome0 I always
get the following error:
$ apt-get install libglade-gnome0
Preparing to replace libc6-dev 2.1.3-13 (using
.../libc6-dev_2.1.3-19_i386.deb) ...
dpkg (subprocess): unable to execute old pre-removal script: Permission
denied
dpkg: warning - old pre-removal script returned error exit status 2
dpkg - trying script from the new package instead ...
dpkg (subprocess): unable to execute new pre-removal script: Permission
denied
dpkg: error processing /var/cache/apt/archives/libc6-dev_2.1.3-19_i386.deb
(--unpack):
 subprocess new pre-removal script returned error exit status 2
dpkg (subprocess): unable to execute post-installation script: Permission
denied
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 2

even if I try not to install python-gnome (using dselect for example) or
run
$ dpkg -f install
I always get similar errors (Permission denied)

$ dpkg --remove --pending
(Reading database ... 18378 files and directories currently installed.)
Removing tk8.2 ...
dpkg (subprocess): unable to execute pre-removal script: Permission denied
dpkg: error processing tk8.2 (--remove):
 subprocess pre-removal script returned error exit status 2
dpkg (subprocess): unable to execute post-installation script: Permission
denied
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 2


I tried the clean up options (clean and autoclean) and several other
repair options with dpkg without any success. I also checked the Debian
mailing list. . .

Any ideas ?

Thanks a lot.
Robert Walker




from ipchains to iptables

2001-11-21 Thread jeff
dearest debian maniacs,

here's my current simple ipchains firewall for my box that runs no services:
--
# Interface to Internet
EXTIF=ppp+

ANY=0.0.0.0/0

ipchains -P input ACCEPT
ipchains -P output ACCEPT
ipchains -P forward DENY

ipchains -F forward
ipchains -F input
ipchains -F output

# Deny TCP and UDP packets to privileged ports
ipchains -A input -l -i $EXTIF -d $ANY 0:1023 -p udp -j DENY
ipchains -A input -l -i $EXTIF -d $ANY 0:1023 -p tcp -j DENY

# Deny TCP connection attempts
ipchains -A input -l -i $EXTIF -p tcp -y -j DENY

# Deny ICMP echo-requests
ipchains -A input -l -i $EXTIF -s $ANY echo-request -p icmp -j DENY

# Do masquerading
ipchains -A forward -j MASQ
echo 1 > /proc/sys/net/ipv4/ip_forward
--

could you help me convert this to iptables?

TIA!!!

-jeff

p.s. forgive...it's a pain in the arse doing new things...i have yucky 
learning disabilities...so please bear with me...

-- 
Q:  How many Martians does it take to screw in a lightbulb?
A:  One and a half.



Remote console administration

2001-11-21 Thread Petre Daniel
Hello,i tried the vtgrab package and didn't
suceeded much in supervising other consoles.
Well,i have several computers,linux gateways to
small lans,and the ppl that sit on them aren't
specialized for the root job,so i must know
almost all the time what is happening there.
I am wondering what tools are to inform me
remotely somehow when and what they are doing
when they're logging in as root.
Btw,how can i mail each 5 or so minutes the
.bash_history of root and send it to my central
mail.?
i am thinking in installing snort everywhere,but
then how do i grep through the logs and send the
attacks to me..?
Well,this is my problem,how can i know somehow
summarized what's hapening on those boxes..?
i am not that good at shell programming so..all
help it will be appreciated.
Thx,
Dani.


__
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1



getting meaningful access logs

2001-11-21 Thread John Griffiths
Hi all, got a funny one here

I run a local community news website, 

I've got a monitor running a tail of the access.log to keep an eye on what 
people are getting up to,

because I don't want each page read filling the whole screen with details of 
gif downloads I have in the past used

$tail -f var/log/apache/access.log | grep php

to make sure I'm only getting page reads 

now that we've moved the site to a proper server with it's own domain though 
the server is properly set up so that www.foo.foo (for example) brings up the 
index.php page.

the problem is that these front page hits don't get logged as php pages, just 
straight

"GET / HTTP/1.0"

this isn't just a problem for what I stream on the monitor, I used to grep out 
the meaningful files from the access.log to create a file for doing analysis on,

the raw access.log being filled with gif and jpg hits to say nothing of java 
scrollers, not to mention code red and nimda hits.

i've tried:

$tail -f /var/log/apache/access.log |grep  "[php|/ HTTP]" (still get everything)

$tail -f /var/log/apache/access.log |grep -v "[jpg|gif]" (get nothing)

$tail -f /var/log/apache/access.log |grep -v gif |grep -v jpg (also get nothing)

at the moment I'm using 

$tail -f /var/log/apache/access.log |grep  -v gif 

which is at least somewhat readable on the monitor but still won't yeild good 
analysis

I'm sure it's just a little thing I'm doing wrong in grep (regexp is outside of 
my skilset) does anyone have any ideas?

TIA

John



re: foobar

2001-11-21 Thread tabanna
> word related to foobar that starts  with a "t"? 

 ~ TARFU  ? (:-O


 best wishes



sent on Linux





I have a compatability question

2001-11-21 Thread Micah and Jerusha Coward



I am thinking about buying a computer to install Debian 2.2 
R4. The computer that i am looking at is set up as follows 
Intel 1.1 GHz Celeron with 128k cache128Mb 133MHz SDRAM1.44MB 3.5" 
Floppy Drive48X Max CD-ROM20GB ATA-100 Hard DriveIntegrated ULTRA 
ATA-100 ControllerIntegrated AC97 audio systemIntegrated Intel Pro/100 
VE network adapterIntegrated Intel AGP 3D graphicsCompaq S720 17" color 
monitorSlots: 3 PCI 1 AGPPorts: Parallel, serial, two USB, Mouse, 
Keyboard, line in, line out, microphone 
145W power supply 
I feel pretty confident about everything except for the integrated componets. 
The system comes with Win 98 installed but the plane is to wipe Win 98 out so 
the machine will be running debian Linux only. I have been through the 
compatability how-to's but I wanted someone that is knowlegable with Linux to 
look at the set up and give me their perspective so that i won't be just wasting 
my money. I appreciate any time that someone will take to help me out. 
Thanks 
Mike


Clients cant access mail..

2001-11-21 Thread Petre Daniel
Well i am speaking for a mate that has a small
isp but doesnt like internet so much :p
What did he do..
He changed the ip class of the dialapers from a
194.102.92.x to a 217.156.43.x and now it seems
that they cant access the mail anymore..
what is the problem? where exactly should he
look?
in pop3 configuration or radius?
i and he would appreciate your help and hints..
thx,
Dani.


__
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1



Re: I have a compatability question

2001-11-21 Thread Petre Daniel
looks good.read about the ac97 chip..but its not
a problem.and wipe the goddam windos :p

--- Micah and Jerusha Coward
<[EMAIL PROTECTED]> wrote:
> I am thinking about buying a computer to
> install Debian 2.2 R4. The computer that i am
> looking at is set up as follows 
> Intel 1.1 GHz Celeron with 128k cache
> 128Mb 133MHz SDRAM
> 1.44MB 3.5" Floppy Drive
> 48X Max CD-ROM
> 20GB ATA-100 Hard Drive
> Integrated ULTRA ATA-100 Controller
> Integrated AC97 audio system
> Integrated Intel Pro/100 VE network adapter
> Integrated Intel AGP 3D graphics
> Compaq S720 17" color monitor
> Slots: 3 PCI 1 AGP
> Ports: Parallel, serial, two USB, Mouse,
> Keyboard, line in, line out, microphone 
> 
> 145W power supply 
> 
> I feel pretty confident about everything except
> for the integrated componets. The system comes
> with Win 98 installed but the plane is to wipe
> Win 98 out so the machine will be running
> debian Linux only. I have been through the
> compatability how-to's but I wanted someone
> that is knowlegable with Linux to look at the
> set up and give me their perspective so that i
> won't be just wasting my money. I appreciate
> any time that someone will take to help me out.
> 
> 
> 
> Thanks 
> 
> Mike
> 
> 


=
Leather Rebel,lightning in the dark
   Leather Rebel,with a burning heart

__
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1



Re: I have a compatability question

2001-11-21 Thread John Griffiths
At 10:44 PM 11/20/01 -0800, Petre Daniel wrote:
>looks good.read about the ac97 chip..but its not
>a problem.and wipe the goddam windos :p
>
>--- Micah and Jerusha Coward
><[EMAIL PROTECTED]> wrote:
>> I am thinking about buying a computer to
>> install Debian 2.2 R4. The computer that i am
>> looking at is set up as follows 
>> Intel 1.1 GHz Celeron with 128k cache
>> 128Mb 133MHz SDRAM

And buy more RAM, you won't see SDRAM at these prices again (might be cheaper 
to get it from your local computer store and whack it in yourself though)



XFree86 Configuration - Modelines

2001-11-21 Thread Phil Beder
I'm trying to Get XFree86 configured. I've used xf86config and XF86Setup
the former being more complete with regard to Video and Modelines and the
Latter with its graphic interface allowed me to find my mouse.

Problem:
My display only runs "320x200"  completely non-functional on a 17" Monitor.
 I'm trying t correct the situation by adding the correct modelnes.  My
monitor will report the Vsync and Hsync rates in the various dpi modes.
(got them from windows on my dual boot machine -- yes I'm a newbie trying
to figure out linux on an old machine) I got my clock speed with -probeonly
but does the clock speed change (clock speed is the first argument on
modeline after the screen resolution?)

Am I on the right path or barking up the wrong tree?



eth0 <-> eth1

2001-11-21 Thread Eric Smith
According to dman on Tue, Nov 20, 2001 at 08:14:49PM -0500:
> On Tue, Nov 20, 2001 at 07:10:19PM +0100, Eric Smith wrote:
> | Its been quite a saga - I have lost my (limited) hacking instinct.
> | Having failed to get ipmasq to work on 2.2.19 (possibly something to
> | do with eth0 eth1 being reversed i.e. eth0 on LAN side), I am now on
> | the 2.4.14 precompiled and hoping for better things.
> 
> You can specify the address for each card on the kernel command line,
only if you compile the drivers into the kernel

> or just switch the cables on the back of your box.
the cable company locks in on the MAC address :(


-- 
Eric Smith



Print problems with CUPS

2001-11-21 Thread Robert Gill

Ok, I tried searching the archives and nothing came up.  I'm not even
sure if the archive search is working.  Even a general term such as
"print" brings up nothing.  I'm using CUPS 1.1.10 (in sid) with the
EPSON Stylus Color 400 GIMP-Print v4.1.99b1 driver.  The first job
prints perfectly, any job after that I get the error "Back-channel
read error - Input/Output error!"  The only way I've found to fix this
is to turn of the printer, reboot the computer, then turn the computer
back on.  Other things I've tried that didn't work:  disabling then
enabling the printer in admin, restarting cupsd, cycling the printer
on and off doesn't work without a reboot, and a reboot on it's own
doesn't work either.  I'm completely stumped.  I'm not subscribed so
please reply-to me.

-Rob



La NewsLetter d'AALWAY Software

2001-11-21 Thread Tarik Tabani


AALWAY, TOUT LE LOGICIEL POUR LA COMMUNAUTE DU NET
LA LETTRE D'INFO du 21 novembre 2001
http://www.aalway.net/index_assur201101.php


Bonjour,

* 30% de remise sur tous nos logiciels jusqu'au 31/12/2001
* Nouvelle version d'AspiMail, notre logiciel de capture d'adresses Email
* Nouvelle version de Boomerang, notre logiciel d'envoi de masse


ASPIMAIL : Nouvelle version d'AspiMail, notre logiciel phare de capture 
d'adresses Email.
La capacite d'aspiration est portee maintenant à pres de 120.000 adresses en 
24H 
pour les connexions les plus rapides.
http://www.aalway.net/index_assur201101.php

BOOMERANG : Nouvelle version de Boomerang, notre logiciel d'envoi de masse est 
maintenant entierement multitache, il expédie jusqu'a 99 messages en meme temps.
La capacite d'envoi est portee maintenant a pres de 2.500.000 messages en 24H 
pour
les connexions les plus rapides.
http://www.aalway.net/index_assur201101.php

ASPIWEB: Notre logiciel de capture de sites Internet reste un best-seller, 
distribue
en shareware par la plupart des journaux informatiques.
http://www.aalway.net/index_assur201101.php


Nous vous rappelons que tous nos logiciels sont telechargeables gratuitement 
pour
une version d'essai. Par ailleurs n'hesitez pas a nous faire des remarques, nous
sortons en moyenne une nouvelle version de chaque logiciel trimestriellement en
tenant compte de vos avis.

Cordialement.

L'équipe AALWAY.


Pour vous desabonner a cette offre, vous pouvez cliquer sur le lien ci-dessous:
mailto:[EMAIL PROTECTED] en écrivant "remove" dans le sujet.




Re: Remote console administration

2001-11-21 Thread nate
Petre Daniel said:
> Hello,i tried the vtgrab package and didn't
> suceeded much in supervising other consoles.
> Well,i have several computers,linux gateways to
> small lans,and the ppl that sit on them aren't
> specialized for the root job,so i must know
> almost all the time what is happening there.
> I am wondering what tools are to inform me
> remotely somehow when and what they are doing
> when they're logging in as root.

i use logcheck (i think thats the package name).
but believe me, get enough emails and you'll
start ignoring them. it gets redundant and boring
to read status reports. i do a TON of mrtg
stuff(i monitor about 45 different things ranging
from company stock price, to disk space to load
average to mail load, to memory usage to tcp connections).
i also use nocol to do network monitoring, and
big brother for system monitoring/alerting.
nocol and big brother also send me email alerts
and i usually ignore them too(i watch the web
sites though, and i do recieve nocol alerts
on my cellphone)


> Btw,how can i mail each 5 or so minutes the
> .bash_history of root and send it to my central
> mail.?

cronjob ..doubtful it will be useful though there
are better ways ..

> i am thinking in installing snort everywhere,but
> then how do i grep through the logs and send the
> attacks to me..?

demarc. i highly reccomend it. http://demarc.org
it is free for non commercial use or if your
company has less then 25 employees or your an
isp with less then 1000(?) customers. my
company is not so we bought it. its great.
you can also configure it to monitor files
(much like tripwire tho not as advanced), so
you could have it monitor /root/* for changes.
it logs to a mysql database(local or remote),
and can email alerts. ive been working with
it since august, and its improved tons since
and continues to get better.. you can do
tripwire too but thats just 1 more thing to
administer. demarc can also do host monitoring
and system monitoring like nocol/big brother
but i haven't had a chance to dive into that
side of it yet.


> Well,this is my problem,how can i know somehow
> summarized what's hapening on those boxes..?
> i am not that good at shell programming so..all
> help it will be appreciated.

the above tools will help you keep ontop of
multiple systems..they all take significant
amount of time to configure. ive literally
spent days(if you add all the time up) or
even a week of time confinguring the above tools
to suit my needs. it takes a LOOONG time. but its
worth it. it gives tons of info about everything.

as someone who watches over ~40 linux and
unix systems ive leared its important to
be able to provide a lot of info at a glance.
opening 50 emails a day checking on everything
is not the way you wanna go in the long run. i
setup a special website that just loads a couple
frames and from a 1600x1200 monitor i can see
mrtg stats, big brother stats and nocol all
at the same time and i tell opera to auto
refresh the mrtg stuff every 5 minutes(nocol
and big brother auto refresh already). i
also watch over a colocation, 5 t1s, 4 inter-office
vpns, multiple switches, along with the servers
themselves..thats a LOT of information to try
to co-ordinate.

you know its working well when your able to
detect a server failing, or a downed route
though. i love it when my monitors are able
to track down problems before anyone else even
knows they are there. makes life much easier.

as for console administration, currently i don't
do it. my linux systems run 6-8 months at a time
with no issues, i would like to do remote consoles
say a portmaster hooked up to a linux box so
i could ssh to the linux box, login to the portmaster
in minicom then login to a system from there rather
then telnet to the portmaster(bad). but haven't
done that yet.


hope this helps

nate






re: foobar

2001-11-21 Thread Oki DZ
On Wed, 21 Nov 2001, tabanna wrote:
>  ~ TARFU  ? (:-O

Never heard this
Is it "That a...?"

I see.

Oki




Re: getting meaningful access logs

2001-11-21 Thread Oki DZ
On Wed, 21 Nov 2001, John Griffiths wrote:
> I've got a monitor running a tail of the access.log to keep an eye on
> what people are getting up to,

You can try to install Calamaris; pretty useful I think. You can get some
info on your Squid's performance.

Oki




Upgrading

2001-11-21 Thread Sridhar M.A.
Hello all,

Currently I am running potato with some packages from woody recompiled
to run on potato. I plan to upgrade to woody. As I would not have the net
connection always, can I ask ap-get to download the packages to the
local disk (whenever there is a connection) and then start the
upgrading? 

Thanks for any pointers,
-- 
Sridhar M.A. [EMAIL PROTECTED]

Line Printer paper is strongest at the perforations.



Re: XFree86 Configuration - Modelines

2001-11-21 Thread Oki DZ
On Wed, 21 Nov 2001, Phil Beder wrote:
> Problem:
> My display only runs "320x200"  completely non-functional on a 17" Monitor.
>  I'm trying t correct the situation by adding the correct modelnes.  My
> monitor will report the Vsync and Hsync rates in the various dpi modes.

You can try this modeline calculator:
http://www.dkfz-heidelberg.de/spec/linux/modeline/
or install modeline package.

Oki




Re: more questions about LFS

2001-11-21 Thread Emil Pedersen
Michael Stone wrote:
> 
> On Tue, Nov 20, 2001 at 03:41:08PM +0100, Emil Pedersen wrote:
> > Running "apt-get dist-upgrade"?  Would that realy change/benefit much if
> > there's only one application (the database engine) that needs lsf
> > support?  Since it's a server that preferably should be up 24/7 I want
> > to stick to the most stable solution possible.
> 
> You've already changed the C library...woody is much better tested than
> some random combination of woody+potato.
> 
> Beyond that, are you sure you won't need *any* other userspace utilities
> that recognize large files? Perhaps ls? Once you start doing this it's
> often better to stick with an integrated whole than going the piecemeal
> approach.

Your probably right.  There are other applications that obviously don't
like large files (even though the file should not need to be opened,
just listed).  Perhaps they use 'long' for tracking filesize or
something (and I have no desire of checking all standard utils like ls,
find, ...).

What's the average "stability" of a woody "snapshot" at some time?  Do
people use it for productions servers normaly, and are there any special
concerns/coutions that have to be taken when running woody?

// Emil



Novell NDS certification for Internet access

2001-11-21 Thread Idar Tollefsen
Hello,

I have a Debian box that sits behind several firewalls and
other layers of protection, the same as all our workstations
here.

The firewall lets people trough at a certain port. I'm told,
by those more knowledgeable in these matters, that it lets
people trough only if thet are logged in and can be certified
as having Internet access against Novell's NDS
(yes, this is a Novell network).

Of course, no one can figure out how to let our Debian
machine trough without explicitly excempting it's IP
from the restrictions of the firewall. Needless to say,
that prefer not to do that.

My questions shows clearly that networks, and Novell
in particular, isn't my strong side, so please forgive my
ignorance if these sound stupid:

Is there something like a Novell Client available for Debian, 
or Linux at all, except for the one from Caldera which you
have to pay for?

If not, is there some other way we could let the NDS know
who we are without actually logging on to a server? 



- IT




Re: cupsomatic

2001-11-21 Thread Bernhard Aichinger
On Thursday 15 November 2001 00:04, Andrew Agno wrote:
> Try using your favourite high level package manager and search for
> ppd.

or use the file(s) from the windows driver disk and put them into 
/usr/share/cups/model/


Bernhard



tunning of overloaded linux-2.4 document?

2001-11-21 Thread Patrick Hsieh
Hello,

I'd like to tune my linux 2.4 box which is planned to run apache 1.3
with a maxinum of 1500 concurrent cgi clients.

Is there any guide or document of linux 2.4 tunning? (eg. filesystem,
processes, ulimit,etc.)

Many thanks.
--
Patrick Hsieh<[EMAIL PROTECTED]>




Re: ssh without password for secvpn

2001-11-21 Thread Frank Copeland
On 20 Nov 01 18:27:53 GMT, Brooks R. Robinson <[EMAIL PROTECTED]> wrote:

>   I try to connect and I am still asked a password.  I've tried it with 
> both
> empty passphrases and obnoxious passphrases, and I get the same result
> (password not passphrase).  I've muddled thorough the man pages for ssh and
> the vpn-howto, but I seem to be missing the final bit that makes it work.
> Is my problem that I am using a mix potato and woody, or am I just missing
> some configuration.

I've experienced similar problems when the .ssh/authorized_keys file
was created group-writable.

Frank
-- 
Home Page: http://thingy.apana.org.au/~fjc/> 
Not the Scientology Home Page: http://xenu.apana.org.au/ntshp/>



Re: weird messages in syslog

2001-11-21 Thread Jim McCloskey

"nate" <[EMAIL PROTECTED]> wrote:

|> looks like you might of been hit with a lprng exploit .. >>
|>
|> http://www.securityfocus.com/archive/1/85002
|>
|> hope your lprng is updated!

Rick Pasotto <[EMAIL PROTECTED]> wrote:

|> I've occasionally been getting something similar. I think I've
|> traced mine to the printer -- even though (or maybe because) it's
|> turned off.

Thank you both very much. Lprng certainly seems to be the culprit. I
have the version from `testing' (3.8.0). nmap shows:

   Starting nmap V. 2.54BETA30 ( www.insecure.org/nmap/ )
   Interesting ports on MY-REAL-IP
   (The 65527 ports scanned but not shown below are in state: closed)
   Port   State   Service
   9/tcp  opendiscard
   13/tcp opendaytime
   22/tcp openssh
   25/tcp opensmtp
   37/tcp opentime
   487/tcpopensaft
   515/tcpopenprinter
   5865/tcp   openunknown

Port 5865 is where junkbuster normally runs, I think, so I don't see
anything very suspicious here. I had telnet turned on temporarily (to
allow access for someone who does not have ssh), so maybe someone got
access through the printer port via telnet.

I've turned telnet off again. If anyone has any further advice, I'd be
really grateful,

Jim



Re: Clients cant access mail..

2001-11-21 Thread Jeremy C. Reed
On Tue, 20 Nov 2001, Petre Daniel wrote:

> Well i am speaking for a mate that has a small
> isp but doesnt like internet so much :p

?

> He changed the ip class of the dialapers from a
> 194.102.92.x to a 217.156.43.x and now it seems
> that they cant access the mail anymore..

We need more info.

Show us that it doesn't work.

Can you connect to the POP3 server manually?

Did the DNS get updated?

Do you have firewall or TCP Wrapper rules blocking that range?

> what is the problem? where exactly should he
> look?

We can't guess -- you need to look at many things.

> in pop3 configuration or radius?

Does their internet connections work? Then probably Radius works. (If not,
did they change the IPs that were assigned correctly?)

  Jeremy C. Reed
  http://www.reedmedia.net/
  http://bsd.reedmedia.net/  -- BSD news and resources
  http://www.isp-faq.com/-- find answers to your questions



Re: from ipchains to iptables

2001-11-21 Thread Vineet Kumar
* jeff ([EMAIL PROTECTED]) [011120 22:24]:
> dearest debian maniacs,
> 
> here's my current simple ipchains firewall for my box that runs no services:
> --
> # Interface to Internet
> EXTIF=ppp+
> 
> ANY=0.0.0.0/0
> 
> ipchains -P input ACCEPT
> ipchains -P output ACCEPT
> ipchains -P forward DENY
> 
> ipchains -F forward
> ipchains -F input
> ipchains -F output
> 
> # Deny TCP and UDP packets to privileged ports
> ipchains -A input -l -i $EXTIF -d $ANY 0:1023 -p udp -j DENY
> ipchains -A input -l -i $EXTIF -d $ANY 0:1023 -p tcp -j DENY
> 
> # Deny TCP connection attempts
> ipchains -A input -l -i $EXTIF -p tcp -y -j DENY
> 
> # Deny ICMP echo-requests
> ipchains -A input -l -i $EXTIF -s $ANY echo-request -p icmp -j DENY
> 
> # Do masquerading
> ipchains -A forward -j MASQ
> echo 1 > /proc/sys/net/ipv4/ip_forward
> --
> 
> could you help me convert this to iptables?

I can try...

EXTIF=ppp+

iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT

iptables -F INPUT
iptables -F OUTPUT
iptables -F FORWARD

iptables -F
iptables -X

iptables -N logndrop
iptables -A logndrop -j LOG
iptables -A logndrop -j DROP

#Deny TCP and UDP packets to privileged ports
iptables -A INPUT -i $EXTIF -p udp --dport 0:1023 -j logndrop
iptables -A INPUT -i $EXTIF -p tcp --dport 0:1023 -j logndrop


#Deny TCP connection attempts
iptables -A INPUT -i $EXTIF -p tcp -m state --state NEW -j logndrop

#Deny ICMP echo-requests
iptables -A INPUT -i $EXTIF -p icmp --icmp-type echo-request -j logndrop

#Do masquerading
iptables -t nat -A POSTROUTING -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward

The above is entirely untested; I just tried to convert what you had to
iptables syntax. You should note that the system has changed quite a
bit, and there are better ways to do a lot of things now. For instance,
the INPUT chain now refers only to locally-destined packets. Similarly,
the OUTPUT chain only deals with locally-generated packets. I also
changed your FORWARD policy to ACCEPT to keep things mostly the same as
your original setup. Here's how I'd prefer to see you set this up under
iptables, though:

EXTIF=ppp+
INTIF=eth0

LOCALNET=192.168.0.0/27

iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP

iptables -F INPUT
iptables -F OUTPUT
iptables -F FORWARD

# allow incoming packets that are part of established outbound
# connections. This includes icmp packets necessary for good operation
# (i.e. fragmentation-needed) and convenience (pong and time-exceeded) but
# only as "replies" -- inbound pings, etc. will be dropped.
iptables -A INPUT -j ACCEPT -i $EXTIF -s ! $LOCALNET\
  -m state --state ESTABLISHED,RELATED

#Do masquerading
iptables -t nat -A POSTROUTING -j MASQUERADE

# allow the forwarded traffic to pass
iptables -A FORWARD -j ACCEPT -i $INTIF -o $EXTIF \
  -s $LOCALNET -d ! $LOCALNET
iptables -A FORWARD -j ACCEPT -i $EXTIF -i $INTIF \
  -s ! $LOCALNET -d $LOCALNET \
  -m state --state ESTABLISHED,RELATED

# let everyone know ident is closed (speeds up some mail connections)
iptables -A INPUT -j REJECT --reject-with tcp-reset \
  -i $EXTIF -s ! $LOCALNET -p tcp --dport ident

#set packets to be logged before being DROPped by policy
iptables -A INPUT -j LOG
iptables -A FORWARD -j LOG

As you can see, connection tracking makes everything beautiful =) this
way you get the recommended drop-by-default filter set up and it's very
easy to allow your return traffic (i.e. no more checking for SYNs,
priviliged ports, pings, etc. explicitly). The setup I gave here is
untested (just made it off the top of my head) so please give it a good
inspection before employing it. (Hopefully someone else on the list will
point out if I made an egregious blunder.)

Feel free to ask any followup questions about it, or why I chose to do
certain things here (and why it wasn't necessary to do others).

good times,
Vineet

-- 
Satan laughs when  #  "I disapprove of what you say, but I will
we kill each other.#   defend to the death your right to say it."
Peace is the only way. #  --Beatrice Hall, The Friends of Voltaire, 1906



pgpWlu3wZ6m4P.pgp
Description: PGP signature


Re: Upgrading

2001-11-21 Thread nate
Sridhar M.A. said:
> Hello all,
>
> Currently I am running potato with some packages from woody
> recompiled to run on potato. I plan to upgrade to woody. As I would
> not have the net connection always, can I ask ap-get to download
> the packages to the local disk (whenever there is a connection) and
> then start the
> upgrading?

yep

apt-get -d dist-upgrade

nate





Re: Upgrading

2001-11-21 Thread Erik Steffl
nate wrote:
> 
> Sridhar M.A. said:
> > Hello all,
> >
> > Currently I am running potato with some packages from woody
> > recompiled to run on potato. I plan to upgrade to woody. As I would
> > not have the net connection always, can I ask ap-get to download
> > the packages to the local disk (whenever there is a connection) and
> > then start the
> > upgrading?
> 
> yep
> 
> apt-get -d dist-upgrade

  bo sure to have your package info up to date:

  apt-get update && apt-get dist-upgrade

erik



Re: downloading with apt-get --download-only install package

2001-11-21 Thread Vineet Kumar
* Michael Heldebrant ([EMAIL PROTECTED]) [011120 12:17]:
> On Tue, 2001-11-20 at 11:56, Michael A. Miller wrote:
> > I'd like to download a selection of packages for machine A that
> > is on a slow connection.  So I made a list of what I want and
> > went to machine B, which has a fast connection, and used "apt-get
> > --download-only install package".  This didn't work for packages
> > that are already installed on machine B because apt-get saw them
> > as already up-to-date.  
> > 
> > Can anyone tell me if there is a way to force apt-get (or any
> > other tool) to download a package regardless of it's status on
> > the machine from which it is being downloaded?  I could do this
> > easily with wget if I knew a way to automatically find the url
> > for a package, based on my sources.list.  Any ideas on that?
> 
> Perhaps you could try this:
> 
> export yourpackages="yadda yadda"
> 
> apt-get install $yourpackages --print-uris -y --reinstall |tail +5|awk
> '{print $1}' >aptfile
> 
> wget -i aptfile
> 
> I've built this on the fly with some debugging, let me know if you have
> problems with it.  I'm having a bit of trouble getting sed to strip off
> the single quotes due my inexperience with regexps on the command line
> and what needs to be escaped from bash etc.  I've totally confused
> myself so I went with the file way, wget seems to understand the single
> quotes.
> 
> sed -e "s/'\$//"|sed -e "s/'//" Strips them both off, but the last
> version of the sed command only strips the first ' off and trying to
> combine them isn't working for me with (|) syntax.  Maybe a regexp or
> sed guru could give me a pointer.

IANAG, but I can give a few pointers. At a shell prompt, you can remove
the single quotes from stdin in this situation in a couple of ways:

| sed -e "s/'\(.*\)'/\1/"

That removes the ticks from the first single-quoted expression in a
line. Simpler still (to just remove any ticks):

| tr -d "'"

for your particular case, though, to just avoid having to use a temp
file, and given that it doesn't complain about getting single quotes
anyway, just tell wget to read from stdin by specifying - as its input
file:

apt-get install $yourpackages --print-uris -y --reinstall | tail +5 |
awk '{print $1} | wget -i -

good times,
Vineet

-- 
Satan laughs when  #  "I disapprove of what you say, but I will
we kill each other.#   defend to the death your right to say it."
Peace is the only way. #  --Beatrice Hall, The Friends of Voltaire, 1906



pgpR0iYQoQQhc.pgp
Description: PGP signature


Re: Upgraded X to 4.1: Lost 1280x1024 mode

2001-11-21 Thread Emil Pedersen
"Sridhar M.A." wrote:
> 
> On Thu, Nov 15, 2001 at 03:06:18PM -0800, Bill Wohler wrote:
>>   Dust the modelines. X 4.1 doesn't need them any more (yay!). Make
>>   sure that your VertRefresh and HorizSync lines are at the maximum
>>   values allowed by your monitor.
>>
> I have put in the maximum values (found them from the manual).
> Still no luck.
> 
>> If the mdetect and read-edid packages are present, the debconf
>> scripts in this package will use them to attempt automatic
>> configuration of your mouse and monitor.
>>
> Running potato. So, downloaded the sources and compiled them.
> Installed them. Configuration is much easier. But still I do not get
> the 1152x864 screen.
> 
> A portion of my new XF86Config-4:
> 
>Section "Monitor"
> Identifier  "SAM:3610"
> HorizSync   31.5-60
> VertRefresh 50-100
> Option  "DPMS"
>EndSection
> 

I had similar problems when upgradeing to X4.  My guess is that X4
doesn't use the same frequensies that X3 did.  Since it doesn't need
(use?) modelines I think there are some "hardcoded" modes built in.

The brutal fix I did was to increase VertRefresh slightly, but like the
config file says, it can break your monitor.  I'v puched my monitors far
beyond what the're built for without breaking any though, it just gives
you a totaly useless flickering picture, or flash on and off trying to
set the mode.
  If you do increase your settings, (like always) you have been warned!!

Btw, the modelines you included bellow don't include the 1280x1024
resolution, the highest I can find is "1152x864".

If someone knowing the internals of X4 is reading this, please explain
the "missing modeline" issue out for me.)

Regards,
Emil



> The modeline portion of my earlier config that would work:
> 
>   # 640x480 @ 100 Hz, 53.01 kHz hsync
>   Modeline "640x480" 45.8   640  672  768  864   480  488  494  530 
> -HSync -VSync
>   # 800x600 @ 85 Hz, 55.84 kHz hsync
>   Modeline  "800x600"60.75  800  864  928 1088   600  616  621  657 
> -HSync -VSync
>   # 1024x768 @ 70 Hz, 56.5 kHz hsync
>   Modeline "1024x768"751024 1048 1184 1328   768  771  777  806 
> -hsync -vsync
>   # 1152x864 @ 60 Hz, 53.5 kHz hsync
>   Modeline  "1152x864"   89.9  1152 1216 1472 1680   864  868  876  892 
> -HSync -VSync
>   #
> 
> As the frequencies are within the specified range, I feel that I
> should get the resolutions. But I do not. Is there something that we
> are missing?
> 
> Thanks,
> --
> Sridhar M.A. [EMAIL PROTECTED]
> 
> Your happiness is intertwined with your outlook on life.
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: getting meaningful access logs

2001-11-21 Thread Vineet Kumar
* John Griffiths ([EMAIL PROTECTED]) [011120 22:26]:
> i've tried:
> 
> $tail -f /var/log/apache/access.log |grep  "[php|/ HTTP]" (still get 
> everything)
> 
> $tail -f /var/log/apache/access.log |grep -v "[jpg|gif]" (get nothing)

These are wrong. square brackets denote character classes. The first
rule matches any line with any of the following characters in it:
p h | / H T P
which is everything.

The second rule matches any line not containing any of  j p g | i f .

You see my point. You're really looking for parentheses, I think,
instead of square brackets. Use \(\) with grep or just () with egrep.

good times,
Vineet

-- 
Satan laughs when  #  "I disapprove of what you say, but I will
we kill each other.#   defend to the death your right to say it."
Peace is the only way. #  --Beatrice Hall, The Friends of Voltaire, 1906



pgpJhRKiiIrho.pgp
Description: PGP signature


re: added memory, increase swap?

2001-11-21 Thread Frank Zimmermann
Thanks, everyone, for all the help.  I checked the memory use (using 
"free") with Mozilla and a few other programs running.  Memory use 
never went much above 85MB out of a total of about 250) , so I don't 
have to increase the swap partition, at least for now.
And I will try removing unnecessary software with dselect.  I was 
hesitant to do this.  I guess I still have a "Windows" mindset 
because so often I was unable to uninstall things cleanly.  I would 
always end up reloading the operating system.  I got used to doing 
this several times a year.


Hehe!

Mozilla is still a bit slow on my Pentium 200, so I'll try Galeon 
and other browsers.  The worst of it is typing.  I'm using Mozilla 
to compose this email and although I'm not an extremely fast typist 
I'm finding that my keystrokes get ahead of the program's ability to 
display the letters.  Very disconcerting!  I end up making lots of 
mistakes!  I'll have to check out other email programs as well.


Thanks, Peter Christensen



I have a P133 with 80MB RAM. I wouldn't even think about using 
Mozilla. Opera is a nice lightweight browser and I sometimes use 
konqueror to browse (but I don't use KDE).
For emailing I strongly (and a lot of people on this list will agree) 
recommend exim/fetchmail/(procmailif you ned to)/mutt. It is 
diffenrent to use but after a while you'll get used to it. 
Configuration of my mail system was very easy, the Debian 
installation did configure exim very well. All I had to do was to 
configure fetchmail with fetchmailconfig. If your look for a graphica 
MUA try kmail or balsa.


Frank

--



Re: getting meaningful access logs

2001-11-21 Thread Colin Watson
On Wed, Nov 21, 2001 at 01:29:09AM -0800, Vineet Kumar wrote:
> * John Griffiths ([EMAIL PROTECTED]) [011120 22:26]:
> > $tail -f /var/log/apache/access.log |grep  "[php|/ HTTP]" (still get 
> > everything)
> 
> You see my point. You're really looking for parentheses, I think,
> instead of square brackets. Use \(\) with grep or just () with egrep.

Similarly, with grep you need \| to separate alternatives; with egrep
you just need |.

-- 
Colin Watson  [EMAIL PROTECTED]



Re: Clients cant access mail..

2001-11-21 Thread Petre Daniel
well,i can connect manually from here,a
194.102.92.x ip..
the pop3 server is on 194.102.92. class,the
dialup clients are on 217.156.43.x class.
i have noticed that i cant reverse domains on our
leased line clients with servers on the 217
class..
so,there is no firewall,like all that we changed
is the dialup ips..like from 194.102.92.x to
217.156.43.x 

--- "Jeremy C. Reed" <[EMAIL PROTECTED]> wrote:
> On Tue, 20 Nov 2001, Petre Daniel wrote:
> 
> > Well i am speaking for a mate that has a
> small
> > isp but doesnt like internet so much :p
> 
> ?
> 
> > He changed the ip class of the dialapers from
> a
> > 194.102.92.x to a 217.156.43.x and now it
> seems
> > that they cant access the mail anymore..
> 
> We need more info.
> 
> Show us that it doesn't work.
> 
> Can you connect to the POP3 server manually?
> 
> Did the DNS get updated?
> 
> Do you have firewall or TCP Wrapper rules
> blocking that range?
> 
> > what is the problem? where exactly should he
> > look?
> 
> We can't guess -- you need to look at many
> things.
> 
> > in pop3 configuration or radius?
> 
> Does their internet connections work? Then
> probably Radius works. (If not,
> did they change the IPs that were assigned
> correctly?)
> 
>   Jeremy C. Reed
>   http://www.reedmedia.net/
>   http://bsd.reedmedia.net/  -- BSD news and
> resources
>   http://www.isp-faq.com/-- find answers to
> your questions
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble?
> Contact [EMAIL PROTECTED]
> 


__
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1



Re: Which mail user agent do you use?

2001-11-21 Thread Jussi Ekholm
Craig Dickson <[EMAIL PROTECTED]> wrote:

> Now I use mutt, which allows me to use my own text editor (emacs),
> supports multiple accounts, doesn't crash, supports all the common
> mailbox formats (I prefer maildir), intelligently handles mailing lists,
> and is configurable as hell.

Amen. Once I tried Mutt, I really couldn't switch for anything
else - Mutt seems to cover *all* the aspects I expect from MUA;
and you mentioned most of them, already. :-) Although, if one
wants to configure Mutt to behave just the way he/she likes, it
requires work and manual reading...  but - what wouldn't you do
to have a brilliant MUA behaving exactly the way you want it to?-)

Sorry for this praiseful post...

-- 
Jussi Ekholm,   "Everything is so fine it could be
a little, ill flower don't let your mind take you in misery
[EMAIL PROTECTED]all the feelings you're not so much pleased
http://ekhowl.goa-head.org   they're just to take you to sweet harmony"



Re: experience with latitude C610

2001-11-21 Thread Frank Zimmermann

has anyone witnessed encounters between the Dell Latitude C610
notebook and linux? i am looking to buy myself an instantiation
thereof and would like to know how easy it'll be...


anyway, looking forward to your input.

thanks,

--
martin;  (greetings from the heart of the sun.)



Hi Martin,
have a look at this:
http://www.dell.com/linux/

Frank
--



Re: Which mail user agent do you use?

2001-11-21 Thread Jussi Ekholm
Johann Spies <[EMAIL PROTECTED]> wrote:

> So I am back to mutt and slrn again - and enjoying it. And I will not
> easily try out gnus again.

Mutt and slrn inside the same screen - now, that's a bliss. :-)
After I got introduced to the mentioned readers, I haven't even
tried to look for a better software for reading mail and news. 
I even used slrn back in my Windows-times, and haven't even tried
anything else. 

When it comes to MUAs, I've been *thinking* of trying Gnus, but 
for to date, haven't done it. Mutt just seems so perfect, that
I don't feel any kind of need to switch to something else. 

Again, sorry for this praiseful post... :P

-- 
Jussi Ekholm,   "Everything is so fine it could be
a little, ill flower don't let your mind take you in misery
[EMAIL PROTECTED]all the feelings you're not so much pleased
http://ekhowl.goa-head.org   they're just to take you to sweet harmony"



Re: Which mail user agent do you use?

2001-11-21 Thread Bud Rogers
On Wednesday 21 November 2001 05:42 am, Jussi Ekholm wrote:
> Craig Dickson <[EMAIL PROTECTED]> wrote:
> 
> > Now I use mutt, which allows me to use my own text editor (emacs),
> > supports multiple accounts, doesn't crash, supports all the common
> > mailbox formats (I prefer maildir), intelligently handles mailing 
lists,
> > and is configurable as hell.
> 
> Amen. Once I tried Mutt, I really couldn't switch for anything
> else - Mutt seems to cover *all* the aspects I expect from MUA;
> and you mentioned most of them, already. :-) Although, if one
> wants to configure Mutt to behave just the way he/she likes, it
> requires work and manual reading...  but - what wouldn't you do
> to have a brilliant MUA behaving exactly the way you want it to?-)

How does it handle sending and receiving attachments?  Especially 
attachments from M$ MUA's?

-- 
Bud Rogers <[EMAIL PROTECTED]>
Oh wad some power the giftie gie us
 To see oursels as others see us!



Re: XFree86 Configuration - Modelines

2001-11-21 Thread Georg Simon
I don't know why, but - on an old machine too - I had to correct
HorizSync and VertRefresh manually. The XFree documentation says that a
resolution does not work if it would exceed VertRefresh.

I asked the vendor homepage and the owner of the monitor and altered the
numbers :

Section "Monitor"
Identifier  "My Monitor"
VendorName  "Unknown"
ModelName   "Unknown"

HorizSync 31.47-79.98
VertRefresh 50-75

now works.

Georg



Re: Which mail user agent do you use?

2001-11-21 Thread Bud Rogers
On Wednesday 21 November 2001 05:48 am, Jussi Ekholm wrote:
> Johann Spies <[EMAIL PROTECTED]> wrote:
> 
> > So I am back to mutt and slrn again - and enjoying it. And I will not
> > easily try out gnus again.
 
> When it comes to MUAs, I've been *thinking* of trying Gnus, but 
> for to date, haven't done it. 

I used gnus in Xemacs for years and loved it.  It is an acquired taste.  
If you like the [x]emacs way of doing things, you will feel right at home 
in gnus.  If you don't like [x]emacs, you probably won't care for gnus 
either.

-- 
Bud Rogers <[EMAIL PROTECTED]>
Oh wad some power the giftie gie us
 To see oursels as others see us!



multithreading sounds

2001-11-21 Thread Paolo Falcone
Hello.

When I was still using RedHat Linux, I remember that it was possible
to multithread the sounds (playing multiple sound files is possible,
as threads are instantiated to use the sound device). 

As I upgraded my machine and motherboard and switched to Debian, I
can't anymore multithread the sound. Playing one sound file locks
the sound card device solely for the requesting process.

Question: how do I fix this, to enable multiple processes requesting
the sound device to multi-thread? Or is it outside Linux already?
I'm really interested to find out since I'll be using my machine
for a multi-media demo, specifically playing Xinerama, Xtheater
and XMMS concurrently, without any of these applications to be
treated as a heavy-weight process, effectively locking the sound
device to any of them.

I suspect also that if it is not the OS, then it might be the BIOS
that is the culprit. Does IRQ sharing have anything to do with this?
I noticed also that my same setup doesn't play the sounds in
Windows (it mentions that the sound card is in use though there is
no user process requesting it).

Any enlightenment would be appreciated (as well as will give me
enough time to re-hack BIOS or send my box to the repair shop before
the demo on Tuesday). Thanks!


Paolo Falcone

__
www.edsamail.com



Re: Upgraded X to 4.1: Lost 1280x1024 mode

2001-11-21 Thread Sridhar M.A.
On Wed, Nov 21, 2001 at 10:20:49AM +0100, Emil Pedersen wrote:
   > The brutal fix I did was to increase VertRefresh slightly, but like the
   > config file says, it can break your monitor.  I'v puched my monitors far
   > beyond what the're built for without breaking any though, it just gives
   > you a totaly useless flickering picture, or flash on and off trying to
   > set the mode.
   >   If you do increase your settings, (like always) you have been warned!!

Will try that.
   
   > 
   > Btw, the modelines you included bellow don't include the 1280x1024
   > resolution, the highest I can find is "1152x864".

Yes. The original poster had that resolution. Mine was this.
   > 
   > If someone knowing the internals of X4 is reading this, please explain
   > the "missing modeline" issue out for me.)
   > 
Look forward to that.

Thanks,
-- 
Sridhar M.A. [EMAIL PROTECTED]

A diva who specializes in risque arias is an off-coloratura soprano.



Re: Best debian for me

2001-11-21 Thread Adam Warner
On Wed, 2001-11-21 at 18:02, Jonathan Hunt wrote:
> Hi,
> 
> I am probably going to repartition my hard drive and after being a satisfied 
> Debian 2.2r2 user I am going to do a clean install. I was wanting the 
> following things in my new setup:
> 
>   GCC >= 3.0
>   XFree86 >= 4.0
>   Linux kernel >=2.4.0
>   ReiserFS (instead of ext2 for my main partition ie I want format and 
> install 
> onto a ReiserFS so this requires a boot disk supporting ReiserFS)
>   Recent KDE
> 
> I would like my system to be as stable as possible and have a clear upgrade 
> path in the future.
> 
>   With this is mind could someone advise me on what would be the best 
> version 
> of Debian to use. It looks suspicially like testing might be the best to be 
> using but how unstable is that?
> 
>   Note: I am a relatively experience linux user / programmer who wants an 
> easy 
> as possible install but doesn't mind getting his handing dirty.

Aaagh. I just composed the reply and then closed Evolution before
sending or saving as a Draft. Here's the abbreviated version:

Easy install:

ReiserFS boot disks:
http://www.digitaltux.com/

This makes installing ReiserFS on / dead easy.

If you want to stay with stable Adrian Bunk has a solution for 2.4
kernels:
http://www.fs.tum.de/~bunk/kernel-24.html

Since you want the latest software you might want to consider
`unstable'. Being an experienced user you'll be able to deal with
problems (e.g. if you need to downgrade a package). And it's more secure
than testing.*

If you do upgrade remember to do it in two steps. First add testing to
your sources.list and then do an apt-get update && apt-get dist-upgrade
-u

Repeat for unstable if you want to upgrade to the latest software.

Regards,
Adam

*The lag for packages to make their way into testing from unstable is
eliminated. So most security fixes will make their way into unstable
faster than testing.



encrypt -> loop -> devicefile with 2.2.19

2001-11-21 Thread E.T.B.
hello debian-users,

I am looking for a kernel-patch to use the losetup -e ... function
IMHO I need the crypt-patch from the international kernel. The
kerneli.org is down an I found a mirror with a patch for 2.2.16 but I
use 2.2.19 can I use the "16" patch for "19".

Or there a deb-package for this missing source.

Why is kerneli.org down is there no longer a restriction for the
crypto-function in linuxkernel and is it now build-in.

Please send me links or answers to this question. I need an encrypt
disk-image-file for my home-directories like the scramdisk-programm do
under win32.

Michael Hintz



Re: weird messages in syslog

2001-11-21 Thread SaDIKuZboy
Answer at bottom

- Original Message -
From: "Jim McCloskey" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, November 21, 2001 2:09 AM
Subject: weird messages in syslog


>
> I have the following in syslog (and in /var/log/messages):
>
> Nov 20 01:18:12 localhost SERVER[21311]: Dispatch_input: bad request
> line
>
'BBÜóÿ¿Ýóÿ¿Þóÿ¿ßóÿ¿XX%.156u%300$n%.21u%301$nsecurity%302$n%.
192u%303$n\220\220\220\220\220\220\220\220\220
>
> and so on and so on and so on.
>
> It's repeated at one second intervals between 01:18:12 and
> 01:18:47---the same message followed by the same long sequence of
> garbage-characters, with a new PID each time.  There was nobody working
> on the machine at that time. There was a CRON job that ran at 01:08:01
> and then again at 01:23:01. There are no other jobs like SERVER
> reported in the logs, before or after these events.
>
> I've not seen anything like this before. Does anyone else recognize
> it or have an idea about what the source might be?
>
> This is a Debian `testing' system with kernel 2.4.14; no web server
> running.
>
> Any help would be greatly appreciated,
>
> Jim
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>

- Answer -

it could be something as a backdoor or an arbitrary service ... try to :
cron -l
it shows u a table with binary called to be run, report it and let's see
what's there :o)

SaDIKuZboy - NetAdmin on irc.gatinho.com



Re: HDD clone

2001-11-21 Thread Hans Ekbrand
On Tue, Nov 20, 2001 at 03:00:36AM -0800, Karsten M. Self wrote:
> 
> dd will do the job for a precise binary copy.  This is overkill in the
> vast majority of circumstances, and slow as hell to boot (copying a
> healthy-sized disk could take most of a day or more).  Tar or
> incremental updates via rsync are far more appropriate.
> 

Why not use RAID? Its purpose is to provide a realtime backup if a hard-
disk fails. RAID seem to be especially appropriate since the harddisks
are identical.

/Hans


pgps19ckRKhw1.pgp
Description: PGP signature


Re: Which mail user agent do you use?

2001-11-21 Thread David Harrigan
I use mutt in an office environment that is run by M$. Mutt handles
attachments (such as word docs etc..) very well - it just decodes the stream,
then pressing 'v' allows you to 'view' the file then 's' to save the file to
your hd somewhere...all in all, I'm very happy with mutt also...

-=David=-

Hark ye! For Bud Rogers hath spoken!:
> On Wednesday 21 November 2001 05:42 am, Jussi Ekholm wrote:
> > Craig Dickson <[EMAIL PROTECTED]> wrote:
> > 
> > > Now I use mutt, which allows me to use my own text editor (emacs),
> > > supports multiple accounts, doesn't crash, supports all the common
> > > mailbox formats (I prefer maildir), intelligently handles mailing 
> lists,
> > > and is configurable as hell.
> > 
> > Amen. Once I tried Mutt, I really couldn't switch for anything
> > else - Mutt seems to cover *all* the aspects I expect from MUA;
> > and you mentioned most of them, already. :-) Although, if one
> > wants to configure Mutt to behave just the way he/she likes, it
> > requires work and manual reading...  but - what wouldn't you do
> > to have a brilliant MUA behaving exactly the way you want it to?-)
> 
> How does it handle sending and receiving attachments?  Especially 
> attachments from M$ MUA's?
> 
> -- 
> Bud Rogers <[EMAIL PROTECTED]>
> Oh wad some power the giftie gie us
>  To see oursels as others see us!
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

-- 

Did you know that if you play a Windows 2000 CD backwards, you will 
hear the voice of Satan?

That's nothing - if you play it forward it'll install Windows 2000!


**
The views expressed in this E-mail are those of the author and not necessarily 
those of Knowledge Management Software. 
If you are not the intended recipient or the person responsible for delivering 
to the intended recipient, please be advised that you have received this E-mail 
in error and that any use is strictly prohibited. 

If you have received this E-mail in error, please notify us by forwarding this 
E-mail to the following address:

[EMAIL PROTECTED]
**



Realtek module don't want to be loaded! Is too busy... ;)

2001-11-21 Thread Nuno Emanuel F. Carvalho
Hi there,

  I'm having problems on getting my pcmcia card to work on Debian.
  Already compiled RTL8139 as module from kernel and installed pcmcia-cs
tarball.
  In my opinion, problem is from rtl8139 module:

  $ insmod rtl8139
/lib/modules/2.2.14/net/rtl8139.o: init_module: Device or resource busy

  On linux boot I'm able to hear high and low tones so it seems the card
is detected.

  I'd also copied
/lib/modules/2.2.14/net/rtl8139.o
to
/lib/modules/2.2.14/pcmcia/realtek_cb.o

  Where's the problem ?

  Thanks in advance.

  Best regards,
 Nuno Carvalho

PS: Please reply to me since I'm not subscribed on this mailing list.

***
Additional info:

- Debian distribution: 2.1
- Linux Kernel: 2.2.14 (from tarball file)
- PCMCIA Card Services: 3.1.16 (from tarball)
- Compaq Presario 1200 laptop with a Conceptronic Realtek 8139 chipset
PCMCIA Card

$ lsmod
Module  Size  Used by
cb_enabler  2236   0  (unused)
ds  6640   1  [cb_enabler]
i82365 22956   1
pcmcia_core45320   0  [cb_enabler ds i82365]

$ cardctl config
Socket 0:
  Vcc 3.3V  Vpp1 3.3V  Vpp2 3.3V
  interface type is "cardbus"
  function 0:

$ cardctl ident
Socket 0:
  product info: "PCMCIA", "CardBus Ethernet 10/100 (R5)"
  manfid: 0x0260, 0x0235
  function: 6 (network)

$ cardctl status
Socket 0:
  3.3V CardBus card
  function 0: [ready]

$ dmesg
[...]
Linux PCMCIA Card Services 3.1.16
  kernel build: 2.2.14 #2 Fri Nov 16 20:17:13 WET 2001
  options:  [pci] [cardbus]
PCI routing table version 1.0 at 0xfdf70
Intel PCIC probe:
  TI 1211 rev 00 PCI-to-CardBus at slot 00:0a, mem 0x6800
host opts [0]: [ring] [pci + serial irq] [pci irq 9] [lat 32/176] [bus
32/34]
ISA irqs (scanned) = 3 PCI status changes
cs: IO port probe 0x1000-0x17ff: excluding 0x1000-0x10ff 0x1400-0x14ff
cs: IO port probe 0x0100-0x04ff: excluding 0x220-0x22f 0x378-0x37f
0x388-0x38f 0x4d0-0x4d7
cs: IO port probe 0x0a00-0x0aff: clean.
cs: cb_alloc(bus 32): vendor 0x10ec, device 0x8138

[/var/log/messages]
Nov 20 15:11:53 morpheus kernel: Linux PCMCIA Card Services 3.1.16
Nov 20 15:11:53 morpheus kernel:   kernel build: 2.2.14 #2 Fri Nov 16
20:17:13 WET 2001
Nov 20 15:11:53 morpheus kernel:   options:  [pci] [cardbus]
Nov 20 15:11:53 morpheus kernel: PCI routing table version 1.0 at 0xfdf70
Nov 20 15:11:53 morpheus kernel: Intel PCIC probe:
Nov 20 15:11:53 morpheus kernel:   TI 1211 rev 00 PCI-to-CardBus at slot
00:0a, mem 0x6800
Nov 20 15:11:53 morpheus kernel: host opts [0]: [ring] [pci + serial
irq] [pci irq 9] [lat 32/176] [bus 32/34]
Nov 20 15:11:53 morpheus kernel: ISA irqs (scanned) = 3 PCI status
changes
Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x1000-0x17ff:
excluding 0x1000-0x10ff 0x1400-0x14ff
Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0100-0x04ff:
excluding 0x220-0x22f 0x378-0x37f 0x388-0x38f 0x4d0-0x4d7
Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0a00-0x0aff: clean.
Nov 20 15:11:54 morpheus kernel: cs: cb_alloc(bus 32): vendor 0x10ec,
device 0x8138

[/var/log/syslog]
Nov 20 15:11:53 morpheus kernel: Linux PCMCIA Card Services 3.1.16
Nov 20 15:11:53 morpheus kernel:   kernel build: 2.2.14 #2 Fri Nov 16
20:17:13 WET 2001
Nov 20 15:11:53 morpheus kernel:   options:  [pci] [cardbus]
Nov 20 15:11:53 morpheus kernel: PCI routing table version 1.0 at 0xfdf70
Nov 20 15:11:53 morpheus kernel: Intel PCIC probe:
Nov 20 15:11:53 morpheus kernel:   TI 1211 rev 00 PCI-to-CardBus at slot
00:0a, mem 0x6800
Nov 20 15:11:53 morpheus kernel: host opts [0]: [ring] [pci + serial
irq] [pci irq 9] [lat 32/176] [bus 32/34]
Nov 20 15:11:53 morpheus kernel: ISA irqs (scanned) = 3 PCI status
changes
Nov 20 15:11:53 morpheus cardmgr[91]: starting, version is 3.1.16
Nov 20 15:11:54 morpheus cardmgr[91]: watching 1 sockets
Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x1000-0x17ff:
excluding 0x1000-0x10ff 0x1400-0x14ff
Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0100-0x04ff:
excluding 0x220-0x22f 0x378-0x37f 0x388-0x38f 0x4d0-0x4d7
Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0a00-0x0aff: clean.
Nov 20 15:11:54 morpheus kernel: cs: cb_alloc(bus 32): vendor 0x10ec,
device 0x8138
Nov 20 15:11:54 morpheus cardmgr[91]: initializing socket 0
Nov 20 15:11:54 morpheus cardmgr[91]: socket 0: 32-bit CardBus Ethernet
10/100 (R5)
Nov 20 15:11:54 morpheus cardmgr[91]: executing: 'modprobe cb_enabler'
Nov 20 15:11:54 morpheus cardmgr[91]: executing: 'modprobe realtek_cb'
Nov 20 15:11:54 morpheus cardmgr[91]: +
/lib/modules/2.2.14/pcmcia/realtek_cb.o: init_module: Device or resource
busy
Nov 20 15:11:54 morpheus cardmgr[91]: modprobe exited with status 1
Nov 20 15:11:54 morpheus cardmgr[91]: executing: 'insmod
/lib/modules/2.2.14/pcmcia/realtek_cb.o'
Nov 20 15:11:54 morpheus cardmgr[91]: +
/lib/modules/2.2.14/pcmcia/realtek_cb.o: init_module: Device or resource
busy
Nov 20 15:11:54 morpheus cardmgr[91]: insmod exited with status 1
Nov 20 15:11:55

Re: Realtek module don't want to be loaded! Is too busy... ;)

2001-11-21 Thread J.A.Serralheiro
well, try to see if the module is already loaded

cat /proc/modules gives a list of all modules loaded.
If you have an entry in here then all you have to do is ifconfig


On Wed, 21 Nov 2001, Nuno Emanuel F. Carvalho wrote:

> Hi there,
> 
>   I'm having problems on getting my pcmcia card to work on Debian.
>   Already compiled RTL8139 as module from kernel and installed pcmcia-cs
> tarball.
>   In my opinion, problem is from rtl8139 module:
> 
>   $ insmod rtl8139
> /lib/modules/2.2.14/net/rtl8139.o: init_module: Device or resource busy
> 
>   On linux boot I'm able to hear high and low tones so it seems the card
> is detected.
> 
>   I'd also copied
> /lib/modules/2.2.14/net/rtl8139.o
> to
> /lib/modules/2.2.14/pcmcia/realtek_cb.o
> 
>   Where's the problem ?
> 
>   Thanks in advance.
> 
>   Best regards,
>  Nuno Carvalho
> 
> PS: Please reply to me since I'm not subscribed on this mailing list.
> 
> ***
> Additional info:
> 
> - Debian distribution: 2.1
> - Linux Kernel: 2.2.14 (from tarball file)
> - PCMCIA Card Services: 3.1.16 (from tarball)
> - Compaq Presario 1200 laptop with a Conceptronic Realtek 8139 chipset
> PCMCIA Card
> 
> $ lsmod
> Module  Size  Used by
> cb_enabler  2236   0  (unused)
> ds  6640   1  [cb_enabler]
> i82365 22956   1
> pcmcia_core45320   0  [cb_enabler ds i82365]
> 
> $ cardctl config
> Socket 0:
>   Vcc 3.3V  Vpp1 3.3V  Vpp2 3.3V
>   interface type is "cardbus"
>   function 0:
> 
> $ cardctl ident
> Socket 0:
>   product info: "PCMCIA", "CardBus Ethernet 10/100 (R5)"
>   manfid: 0x0260, 0x0235
>   function: 6 (network)
> 
> $ cardctl status
> Socket 0:
>   3.3V CardBus card
>   function 0: [ready]
> 
> $ dmesg
> [...]
> Linux PCMCIA Card Services 3.1.16
>   kernel build: 2.2.14 #2 Fri Nov 16 20:17:13 WET 2001
>   options:  [pci] [cardbus]
> PCI routing table version 1.0 at 0xfdf70
> Intel PCIC probe:
>   TI 1211 rev 00 PCI-to-CardBus at slot 00:0a, mem 0x6800
> host opts [0]: [ring] [pci + serial irq] [pci irq 9] [lat 32/176] [bus
> 32/34]
> ISA irqs (scanned) = 3 PCI status changes
> cs: IO port probe 0x1000-0x17ff: excluding 0x1000-0x10ff 0x1400-0x14ff
> cs: IO port probe 0x0100-0x04ff: excluding 0x220-0x22f 0x378-0x37f
> 0x388-0x38f 0x4d0-0x4d7
> cs: IO port probe 0x0a00-0x0aff: clean.
> cs: cb_alloc(bus 32): vendor 0x10ec, device 0x8138
> 
> [/var/log/messages]
> Nov 20 15:11:53 morpheus kernel: Linux PCMCIA Card Services 3.1.16
> Nov 20 15:11:53 morpheus kernel:   kernel build: 2.2.14 #2 Fri Nov 16
> 20:17:13 WET 2001
> Nov 20 15:11:53 morpheus kernel:   options:  [pci] [cardbus]
> Nov 20 15:11:53 morpheus kernel: PCI routing table version 1.0 at 0xfdf70
> Nov 20 15:11:53 morpheus kernel: Intel PCIC probe:
> Nov 20 15:11:53 morpheus kernel:   TI 1211 rev 00 PCI-to-CardBus at slot
> 00:0a, mem 0x6800
> Nov 20 15:11:53 morpheus kernel: host opts [0]: [ring] [pci + serial
> irq] [pci irq 9] [lat 32/176] [bus 32/34]
> Nov 20 15:11:53 morpheus kernel: ISA irqs (scanned) = 3 PCI status
> changes
> Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x1000-0x17ff:
> excluding 0x1000-0x10ff 0x1400-0x14ff
> Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0100-0x04ff:
> excluding 0x220-0x22f 0x378-0x37f 0x388-0x38f 0x4d0-0x4d7
> Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0a00-0x0aff: clean.
> Nov 20 15:11:54 morpheus kernel: cs: cb_alloc(bus 32): vendor 0x10ec,
> device 0x8138
> 
> [/var/log/syslog]
> Nov 20 15:11:53 morpheus kernel: Linux PCMCIA Card Services 3.1.16
> Nov 20 15:11:53 morpheus kernel:   kernel build: 2.2.14 #2 Fri Nov 16
> 20:17:13 WET 2001
> Nov 20 15:11:53 morpheus kernel:   options:  [pci] [cardbus]
> Nov 20 15:11:53 morpheus kernel: PCI routing table version 1.0 at 0xfdf70
> Nov 20 15:11:53 morpheus kernel: Intel PCIC probe:
> Nov 20 15:11:53 morpheus kernel:   TI 1211 rev 00 PCI-to-CardBus at slot
> 00:0a, mem 0x6800
> Nov 20 15:11:53 morpheus kernel: host opts [0]: [ring] [pci + serial
> irq] [pci irq 9] [lat 32/176] [bus 32/34]
> Nov 20 15:11:53 morpheus kernel: ISA irqs (scanned) = 3 PCI status
> changes
> Nov 20 15:11:53 morpheus cardmgr[91]: starting, version is 3.1.16
> Nov 20 15:11:54 morpheus cardmgr[91]: watching 1 sockets
> Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x1000-0x17ff:
> excluding 0x1000-0x10ff 0x1400-0x14ff
> Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0100-0x04ff:
> excluding 0x220-0x22f 0x378-0x37f 0x388-0x38f 0x4d0-0x4d7
> Nov 20 15:11:54 morpheus kernel: cs: IO port probe 0x0a00-0x0aff: clean.
> Nov 20 15:11:54 morpheus kernel: cs: cb_alloc(bus 32): vendor 0x10ec,
> device 0x8138
> Nov 20 15:11:54 morpheus cardmgr[91]: initializing socket 0
> Nov 20 15:11:54 morpheus cardmgr[91]: socket 0: 32-bit CardBus Ethernet
> 10/100 (R5)
> Nov 20 15:11:54 morpheus cardmgr[91]: executing: 'modprobe cb_enabler'
> Nov 20 15:11:54 morpheus cardmgr[91]: executing: 'modprobe realtek_cb'
> Nov 20

Re: [R] Announcement: Automatic ATLAS support under Debian GNU/Linux

2001-11-21 Thread Agustin Lobo

What about other distributions? Can ATLAS be used with, i.e., SuSe?

Thanks

Agus

Dr. Agustin Lobo
Instituto de Ciencias de la Tierra (CSIC)
Lluis Sole Sabaris s/n
08028 Barcelona SPAIN
tel 34 93409 5410
fax 34 93411 0012
[EMAIL PROTECTED]




Dangling man page sym links

2001-11-21 Thread Richardson, Martin
G'Day everyone,
I have an issue when I try to do a man on a particular
command I get a, warning that 'man ctags.emacs is a dangling sym link' and
'man ctags.emacs no such file' ( you have to excuse me.. Im not on my Debiam
box right now) . I have found the symlink and deleted it, and the problem
went away for a little while, but now its back. Could someone please point
me in the right direction, on how to update any changes to the man pages etc
etc I think all this has resulted from update/ removal of some software. I
am sorry for the vagueness. I am using Potato.
BTW thankyou all for your help on the foobar question and .

 Here's an obscure one for you.  What's the word related
to foobar that starts 
with a "t"?  It was coined under the same circumstances as foobar and snafu 
were, I think world war II communications.

If you can't figure it out, I'll tell you.

Mike
-- 
Michael D. Crawford

Please Micheal, Don't keep us in suspense!


 Cheers, Martin :-)



RE: eth0 <-> eth1

2001-11-21 Thread Kelley, Tim \(CBS-New Orleans\)
dhcpcd can pass whatever Mac address you want to a dhcp server ...

> -Original Message-
> From: Eric Smith [SMTP:[EMAIL PROTECTED]
> Sent: Wednesday, November 21, 2001 1:14 AM
> To:   Debian User
> Subject:  eth0 <-> eth1
> 
> According to dman on Tue, Nov 20, 2001 at 08:14:49PM -0500:
> > On Tue, Nov 20, 2001 at 07:10:19PM +0100, Eric Smith wrote:
> > | Its been quite a saga - I have lost my (limited) hacking instinct.
> > | Having failed to get ipmasq to work on 2.2.19 (possibly something
> to
> > | do with eth0 eth1 being reversed i.e. eth0 on LAN side), I am now
> on
> > | the 2.4.14 precompiled and hoping for better things.
> > 
> > You can specify the address for each card on the kernel command
> line,
> only if you compile the drivers into the kernel
> 
> > or just switch the cables on the back of your box.
> the cable company locks in on the MAC address :(
> 
> 
> -- 
> Eric Smith
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 



pppconfig still not working

2001-11-21 Thread Simon R Tod
I've been trying to get pppconfig set up to run with my ISP
mapie.csx.cam.ac.uk - it's an internal univerisity system. I have no
problems getting in from windows with just a username, password and
phonenumber. I'm trying to use dynamic DNS - although I know the
server's IP address I don't have a file /etc/resolv.conf, I know it
supports PAP in conjunction with PPP and I'm leaving the port speed at
it's recommended level - it probes ttyS0 and ttyS1 withut finding the
modem, but I know from the windows partition that it's on ttyS2 (ie.
com3) and I'm not even worrying about the advanced options cos all I'm
trying to do at the moment is update my system as root.
When I try and run pon (as root) I'm getting the messages

pppd 2.3.11 started by root, uid 0
Connect script failed
Exit

I've now got this damn laptop sitting in front of me at work, and would
love to get this sorted out pronto.

Thanks for any help.
-- 
srt



Re: eth0 <-> eth1

2001-11-21 Thread Eric Smith
According to Kelley, Tim (CBS-New Orleans) on Wed, Nov 21, 2001 at 09:26:16AM 
-0500:
> dhcpcd can pass whatever Mac address you want to a dhcp server ...

just what I wanted to hear (but was afraid to ask).

I was wondering about that and tried it once and failed - now will
try again.  Though the cable companies managed to lock in on the
hardware of the card by the mac address.

kewl

-- 
Eric Smith



RE: Novell NDS certification for Internet access

2001-11-21 Thread Kelley, Tim \(CBS-New Orleans\)
Yes, you can log in to NDS through linux without any extra stuff, it is
just bare bones functionality, but it should be enough to let you
through the firewall.
The debian package is ncpfs



> -Original Message-
> From: Idar Tollefsen [SMTP:[EMAIL PROTECTED]
> Sent: Wednesday, November 21, 2001 1:49 AM
> To:   debian-user@lists.debian.org
> Subject:  Novell NDS certification for Internet access
> 
> Hello,
> 
> I have a Debian box that sits behind several firewalls and
> other layers of protection, the same as all our workstations
> here.
> 
> The firewall lets people trough at a certain port. I'm told,
> by those more knowledgeable in these matters, that it lets
> people trough only if thet are logged in and can be certified
> as having Internet access against Novell's NDS
> (yes, this is a Novell network).
> 
> Of course, no one can figure out how to let our Debian
> machine trough without explicitly excempting it's IP
> from the restrictions of the firewall. Needless to say,
> that prefer not to do that.
> 
> My questions shows clearly that networks, and Novell
> in particular, isn't my strong side, so please forgive my
> ignorance if these sound stupid:
> 
> Is there something like a Novell Client available for Debian, 
> or Linux at all, except for the one from Caldera which you
> have to pay for?
> 
> If not, is there some other way we could let the NDS know
> who we are without actually logging on to a server? 
> 
> 
> 
> - IT
> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 



Fritz!Card PCI ISDN adapter and Woody..

2001-11-21 Thread Kilian

Hi All

I am trying to get the AVM Fritz!Card PCI ISDN adapter to work with my 
Woody system. I've built a custom 2.4.14 Kernel with the HiSax module 
and have installed the fcpci driver from the AVM website. So far it is 
working, the system recognizes the card during boot:


 | CAPI-driver Rev 1.21.6.8: loaded
 | capifs: Rev 1.14.6.8
 | capi20: started up with major 68
 | kcapi: capi20 attached
 | capi20: Rev 1.44.6.15: started up with major 68 (middleware+capifs)
 | fcpci: AVM FRITZ!Card PCI driver, revision 0.1
 | fcpci: Loading...
 | fcpci: Driver 'fcpci' attached to stack
 | kcapi: driver fcpci attached
 | fcpci: Auto-attaching...
 | PCI: Found IRQ 5 for device 02:0d.0
 | PCI: Sharing IRQ 5 with 02:09.0
 | fcpci: Stack version 3.09-10
 | kcapi: Controller 1: fritz-pci attached
 | kcapi: card 1 "fritz-pci" ready.
 | fcpci: Loaded.
 | kcapi: notify up contr 1
 | capi: controller 1 up

and lsmod shows the following:

 | Module  Size  Used by
 | fcpci 538304   1
 | capi   18688   0
 | capifs  3424   1 [capi]
 | kernelcapi 29216   2 [fcpci capi]
 | capiutil   22272   0 [kernelcapi]
 | hisax 156960   0 (unused)

However, caling /etc/init.d/isdnutils start brings me the following errors:

 | Starting ISDN services : interfaces/dev/isdnctrl: No such device
 |  ippp0 failed.
 | /dev/isdnctrl: No such device
 |  isdn0 failed.
 |  iprofd/dev/isdninfo: No such device
 |  isdnlog/dev/isdnctrl: No such device

I am quite desperate because I just can't figure out where the problem 
is.. Any hints and RTFMs are very welcome.


--Kilian



Re: Realtek module don't want to be loaded! Is too busy... ;)

2001-11-21 Thread Erdmut Pfeifer
On Wed, Nov 21, 2001 at 01:42:09PM +, Nuno Emanuel F. Carvalho wrote:
> Hi there,
> 
>   I'm having problems on getting my pcmcia card to work on Debian.
>   Already compiled RTL8139 as module from kernel and installed pcmcia-cs
> tarball.
>   In my opinion, problem is from rtl8139 module:
> 
>   $ insmod rtl8139
> /lib/modules/2.2.14/net/rtl8139.o: init_module: Device or resource busy

check whether your BIOS has a "Windows 9x support" option or some
b*llsh*t like that -- and if so, try to disable it.

On my ASUS notebook, I initially got the same error, which was solved by
disabling said option.
This notebook has an *onboard* NIC (same RealTek chip), however, so YMMV...

For details on the issue, see Donald Becker's pages, in particular:

  http://www.scyld.com/expert/irq-conflict.html


Cheers

-- 
Erdmut Pfeifer
science+computing ag
www.science-computing.de

-- Bugs come in through open windows. Keep Windows shut! --



Re: Realtek module don't want to be loaded! Is too busy... ;)

2001-11-21 Thread Jérôme Marant
"J.A.Serralheiro" wrote:
> 
> well, try to see if the module is already loaded
> 
> cat /proc/modules gives a list of all modules loaded.

  That's what lsmod give, /proc/modules that is.

> > $ lsmod
> > Module  Size  Used by
> > cb_enabler  2236   0  (unused)
> > ds  6640   1  [cb_enabler]
> > i82365 22956   1
> > pcmcia_core45320   0  [cb_enabler ds i82365]

  It does not seem to be loaded.



Re: Realtek module don't want to be loaded! Is too busy... ;)

2001-11-21 Thread Nuno Emanuel F. Carvalho
On Wed, 21 Nov 2001, Erdmut Pfeifer wrote:

> check whether your BIOS has a "Windows 9x support" option or some
> b*llsh*t like that -- and if so, try to disable it.
>
> On my ASUS notebook, I initially got the same error, which was solved by
> disabling said option.
> This notebook has an *onboard* NIC (same RealTek chip), however, so YMMV...

 Mr. Serralheiro:

   My first email references to lsmod output (same as cat /proc/modules)
on "additional info".
   Such module isn't loaded in order that I can't even use ifconfig. It
says something like "eth0: no such interface.".

 Mr. Erdmut:

   My problem isn't any IRQ Conflit. I already had RedHat 6.1 installed
working with pcmcia. Didn't changed bios setup. Unfortunally i didn't
wrote any documentation... ;(

  Thanks in advance.

  Regards,
   Nuno

PS: Once again, reply to me, since I'm not ...



Re: starting dselect with predefined package list

2001-11-21 Thread Jeff
Osamu Aoki, 2001-Nov-20 20:50 -0800:
> On Tue, Nov 20, 2001 at 07:59:54PM -0800, Sean 'Shaleh' Perry wrote:
> > basically.  You should only set selections on a fresh install.
> > Otherwise you have packages from set A the other machine is set B and
> > thus machine A gets the union of the set (i.e. more packages than B
> > and a chance at conflicting packages).
> 
> True if you do it as described without pattern match.
> 
> What about using 'dpkg --get-selections \* >> packages'
> 
> Then you get all packages listed (non-installed packages as "purge")
> Thus you will get the exact same setting.  (someone mentioned on this
> list)  Bloating system can be avoided by this, I think.
> 
> > The package list lists packages that have been removed but not purged,
> > on hold, set for purge but not purged, attempted to install and stuck,
> > as well as simply installed.  You should probably change all holds to
> > installs, purge the packages marked deinstalled, fix any half
> > installed packages and then save the output.
> I did not understand this.  Fixing half installed sounds good to me :-)

Thanks alot.  I look forward to testing this out.  And yes, this
is for installing a new system that will be a s/w duplicate, and
I figure this will shave a little time off the process.

thanks,
jc

-- 
Jeff CoppockSystems Engineer
Diggin' Debian  Admin and User



Re: comment rediriger une ip interne vers l'extrene

2001-11-21 Thread Cyrille Chepelov
Le mer, nov 21, 2001, à 10:12:07 -0500, Cantin, Eric a écrit:
> Bonjour,
> 
> je cherche de la doc pour rediriger mon site web interne sur l'internet

iptables HOWTO (section DNAT)

A++



-- 
Grumpf.



Re: pppconfig still not working

2001-11-21 Thread Frank Zimmermann

Frank Zimmermann wrote:


Frank,

Thanks for trying to help. I have no idea what modem it is to be honest.
What is a softmodem? It's just the internal modem that came with the
machine (an ASUS L8400). I don't even know if the Debian partition
recognises that it exists - there must be a way to check this and fix it
if necessary and the Windows partition ought to be able to tell me
something about the modem. I have the modem set to ttyS2 manually.
Thanks,
Simon.

--
srt


Softmodems are quite often called winmodems. Don't really know how 
they work but the software somehow emulates a modem.
Do you still have Win running on this machine? Then you could easily 
find out what modem you have. Otherwise you might have a look at the 
vendors homepage or open your machine and have a look.
Then try to find out wether your modem is supported by Linux. Good 
starting points for this http://www.google.com/linux, the Suse 
Hardwaredatabase at http://cdb.suse.de or http://www.linmodems.org .


Frank
--



Re: problems upgrading to 2.2r4

2001-11-21 Thread Jeff
Robert Walker, 2001-Nov-21 01:07 -0500:
> Hi,
>   I am having difficulties upgrading to version 2.2r4.
> I ran
> $ apt-get update
> $ apt-get -u dist-upgrade
> 
> and the following error keeps coming up :

The only time I get "Permission Denied" errors running apt is
when I forget to login as root before running apt-get.  Are you
logged in as root?

jc

-- 
Jeff CoppockSystems Engineer
Diggin' Debian  Admin and User



There've been a lot of these [was Re: Print problems with CUPS]

2001-11-21 Thread DvB

I've been seeing a lot of CUPS related problem on the list lately and I,
personally, have been having no end of problems printing since the last
cups upgrade landed through apt-get: my home printer (parallel port)
won't print at all... I guess I'll have to try rebooting and cycling the
printer :-) My computer here at work, OTOH, will print blank pages from
mozilla but, otherwise, appears to work fine (this one's printing to an
HP JetDirect card).

Would all these problems be bugs in the current version of cups or the
debian packages? I looked at the bugs for cupsys and cupsys-client and
all the serious looking ones are over 100 days old so they're probably
not the culprits.

Any thoughts?



Robert Gill <[EMAIL PROTECTED]> writes:

> Ok, I tried searching the archives and nothing came up.  I'm not even
> sure if the archive search is working.  Even a general term such as
> "print" brings up nothing.  I'm using CUPS 1.1.10 (in sid) with the
> EPSON Stylus Color 400 GIMP-Print v4.1.99b1 driver.  The first job
> prints perfectly, any job after that I get the error "Back-channel
> read error - Input/Output error!"  The only way I've found to fix this
> is to turn of the printer, reboot the computer, then turn the computer
> back on.  Other things I've tried that didn't work:  disabling then
> enabling the printer in admin, restarting cupsd, cycling the printer
> on and off doesn't work without a reboot, and a reboot on it's own
> doesn't work either.  I'm completely stumped.  I'm not subscribed so
> please reply-to me.
> 
> -Rob
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RE: multithreading sounds

2001-11-21 Thread Kelley, Tim \(CBS-New Orleans\)
I don't have this problem, I can play multiple wav, mp3 etc.
simultaneously.

I am using woody with linux 2.4.14, emu10k1.

> -Original Message-
> From: Paolo Falcone [SMTP:[EMAIL PROTECTED]
> Sent: Wednesday, November 21, 2001 6:25 AM
> To:   Debian Users Mailing List
> Subject:  multithreading sounds
> 
> Hello.
> 
> When I was still using RedHat Linux, I remember that it was possible
> to multithread the sounds (playing multiple sound files is possible,
> as threads are instantiated to use the sound device). 
> 
> As I upgraded my machine and motherboard and switched to Debian, I
> can't anymore multithread the sound. Playing one sound file locks
> the sound card device solely for the requesting process.
> 
> Question: how do I fix this, to enable multiple processes requesting
> the sound device to multi-thread? Or is it outside Linux already?
> I'm really interested to find out since I'll be using my machine
> for a multi-media demo, specifically playing Xinerama, Xtheater
> and XMMS concurrently, without any of these applications to be
> treated as a heavy-weight process, effectively locking the sound
> device to any of them.
> 
> I suspect also that if it is not the OS, then it might be the BIOS
> that is the culprit. Does IRQ sharing have anything to do with this?
> I noticed also that my same setup doesn't play the sounds in
> Windows (it mentions that the sound card is in use though there is
> no user process requesting it).
> 
> Any enlightenment would be appreciated (as well as will give me
> enough time to re-hack BIOS or send my box to the repair shop before
> the demo on Tuesday). Thanks!
> 
> 
> Paolo Falcone
> 
> __
> www.edsamail.com
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 



WinTV cards (which one ?)

2001-11-21 Thread Stan Brown
I'm building a new machine for my wife, for Christmas. She has made a
specifc request for TV on it.

I have a WinTV card in my machine, and it works OK. I went looking to buy
one ofr hers and found out that they come in a variety of proces. 

Which ones are best supported under Debina? I see everything from a WinTV
Go for $49 to a WinTV persona Video Recorder for $199. What extra features
does teh PVR model have?

-- 
Stan Brown [EMAIL PROTECTED]843-745-3154
Charleston SC.
-- 
Windows 98: n.
useless extension to a minor patch release for 32-bit extensions and
a graphical shell for a 16-bit patch to an 8-bit operating system
originally coded for a 4-bit microprocessor, written by a 2-bit 
company that can't stand for 1 bit of competition.
-
(c) 2000 Stan Brown.  Redistribution via the Microsoft Network is prohibited.



Re: Clients cant access mail..

2001-11-21 Thread Jeff
Petre Daniel, 2001-Nov-21 03:40 -0800:
> well,i can connect manually from here,a
> 194.102.92.x ip..
> the pop3 server is on 194.102.92. class,the
> dialup clients are on 217.156.43.x class.
> i have noticed that i cant reverse domains on our
> leased line clients with servers on the 217
> class..
> so,there is no firewall,like all that we changed
> is the dialup ips..like from 194.102.92.x to
> 217.156.43.x 

You might have a routing problem...those are 2 different subnets
after all.  Can any host from 194... ping any host in 217...?
Check your route table on your router to make sure you have all
routes listed correctly.  Since you mention it's a small ISP,
it's probably all static routes, so a new subnet requires a new
static route entry.  

I'm assuming there is a router since there are at least these 2
different subnets.

jc

-- 
Jeff CoppockSystems Engineer
Diggin' Debian  Admin and User



Re: eth0 <-> eth1

2001-11-21 Thread dman
On Wed, Nov 21, 2001 at 08:13:53AM +0100, Eric Smith wrote:
| According to dman on Tue, Nov 20, 2001 at 08:14:49PM -0500:
| > On Tue, Nov 20, 2001 at 07:10:19PM +0100, Eric Smith wrote:
| > | Its been quite a saga - I have lost my (limited) hacking instinct.
| > | Having failed to get ipmasq to work on 2.2.19 (possibly something to
| > | do with eth0 eth1 being reversed i.e. eth0 on LAN side), I am now on
| > | the 2.4.14 precompiled and hoping for better things.
| > 
| > You can specify the address for each card on the kernel command line,
| only if you compile the drivers into the kernel

I wasn't aware of that.  In that case, it is probable that the address
can be specified in /etc/modules or something in /etc/modutils.

| > or just switch the cables on the back of your box.
| the cable company locks in on the MAC address :(

Have you tried turing off the cable modem for a few minutes, then
switching the cards?  A friend of mine has Road Runner, and he found
out from tech support that the cable modem is what latches onto the
first MAC it sees.  If he shuts off the modem for a minute (to
discharge any capacitors and clear the memory) then when it powers
back on it will latch on to the new NIC.

HTH,
-D



RealTek Chip support

2001-11-21 Thread Hanasaki JiJi
I am looking at a MS-6368 Mother board that says it has a RT8100.  How 
can I check for support for this board?  Or, 8100 a general number means 
an 81xx is is used (i.e.: maybe a 8129 or 8139)


Thank you.



Re: There've been a lot of these [was Re: Print problems with CUPS]

2001-11-21 Thread dman
On Wed, Nov 21, 2001 at 09:18:51AM -0600, DvB wrote:
| 
| I've been seeing a lot of CUPS related problem on the list lately and I,
| personally, have been having no end of problems printing since the last
| cups upgrade landed through apt-get: my home printer (parallel port)
| won't print at all... I guess I'll have to try rebooting and cycling the
| printer :-) My computer here at work, OTOH, will print blank pages from
| mozilla but, otherwise, appears to work fine (this one's printing to an
| HP JetDirect card).
| 
| Would all these problems be bugs in the current version of cups or the
| debian packages? I looked at the bugs for cupsys and cupsys-client and
| all the serious looking ones are over 100 days old so they're probably
| not the culprits.
| 
| Any thoughts?

Check your gimp print packages.  My desktop machine went bad a while
ago -- gimp wouldn't print anytyhing (lp would warn about no data on
stdin) and galeon would spit out blank pages (at least for the
pictures I tried to print).  Then one time I tried the laptop from
work and it (gimp) printed just fine.  I checked the package list and
found that my desktop machine had some extra wacky versioned gimp
print package.  I removed it and gimp could then print just like it
used to.

-D



Re: cupsomatic

2001-11-21 Thread dman
On Wed, Nov 21, 2001 at 08:50:36AM +0100, Bernhard Aichinger wrote:
| On Thursday 15 November 2001 00:04, Andrew Agno wrote:
| > Try using your favourite high level package manager and search for
| > ppd.
| 
| or use the file(s) from the windows driver disk and put them into 
| /usr/share/cups/model/

Unfortunately not all windows drivers use PPD files.  However if that
one does :
o   MS calls them *.SPD
o   they are in MacOS text format, you will need to convert the
CR-only line endings to LF-only for it to work
(if you use vim, open the file and :s/^M/\r/g and you'll be
all set, the ^M means press Ctrl-V then Enter (or Ctrl-M))

-D



Re: problems upgrading to 2.2r4 (fwd)

2001-11-21 Thread Robert Walker
> Robert Walker, 2001-Nov-21 01:07 -0500:
> > Hi,
> > I am having difficulties upgrading to version 2.2r4.
> > I ran
> > $ apt-get update
> > $ apt-get -u dist-upgrade
> >
> > and the following error keeps coming up :
>
> The only time I get "Permission Denied" errors running apt is
> when I forget to login as root before running apt-get.  Are you
> logged in as root?


yep, I was logged in as root.
Robert Walker






Re: pppconfig still not working

2001-11-21 Thread John Hasler
Simon R Tod writes:
> ...it probes ttyS0 and ttyS1 withut finding the modem, but I know from
> the windows partition that it's on ttyS2 (ie.  com3)

Are you saying that it finds the modem on ttyS2?  Are you putting ttyS2 in
manually?

Please post copies of /etc/chatscripts/provider and
/etc/ppp/peers/provider.  Hide passwords.

Try to connect to the modem with minicom (this is just a diagnostic, not a
way to get ppp working).

> I don't have a file /etc/resolv.conf,...

Create one.  That's not the source of your present problem, though.
-- 
John Hasler
[EMAIL PROTECTED] (John Hasler)
Dancing Horse Hill
Elmwood, WI



Re: UPS hardware and software

2001-11-21 Thread Dimitri Maziuk
* Mark A. Bialik ([EMAIL PROTECTED]) spake thusly:
> Liebert equipment is true line-interactive hardware... you are always
> running from battery (which is continuously charging).  Try running
> APC's in an environment with a backup power source (Diesel/Natural Gas)
> and see how they handle the switch-off...  maybe you'll get lucky, maybe
> not.

We have APC SmartUPSen on the servers and various small APC UPSen
on the workstations (mainly power-board style OfficeUPS). There's
a generator on one of the circuits feeding the servers. So far
the UPSen handled the switch-over just fine.

Dima
-- 
Q276304 - Error Message: Your Password Must Be at Least 18770 Characters
and Cannot Repeat Any of Your Previous 30689 Passwords   -- RISKS 21.37



Re: Imap troubles

2001-11-21 Thread Keith G. Murphy
Matthew Daubenspeck wrote:
> 
> We all know that the standard IMAPD is really too slow. I am planning on
> switching to something more effective. Reading webmail and such is quite a
> painstaking process with anything more then 30 messages in a folder.
> 
> Should I choose cyrus or courier? Or neither?
> 
I've had good luck with Cyrus so far.  It does some indexing on its
directories to try to speed things up.  And if the indexes get messed
up, you can use the 'reconstruct' utility to, well, reconstruct them.

Your MDA needs to 'cyrdeliver' the mail to Cyrus, since nothing can
really write to Cyrus' directories in the way it likes.

It appears to interoperate pretty well with Netscape Messenger, which is
what I was after.

Hope that helps.



You don't exist. Go away.

2001-11-21 Thread Andre Berger
Dear all,

I'm having trouble with my PowerBook 3400. Due to a (known -- don't
bother with that) kernel bug, the kernel lost interrupt for my root
partition on pmud (pmud is like APM for PBs) wakeup, I had to reset
the machine, and at the next startup and manual repair by e2fsck,
about two dozen files, most of them binary files, have been added to
/lost+found. I cannot log in at all at runlevel 2, but fortunately I
can boot into single mode, and I do have network access (I can ping
IP addresses, they are not resolved). The "You don't exist. Go away."
message appears when I try to issue shutdown commands, so I have to
reset the computer every time I want turn it off. 

What I have is a backup of /etc (made with tar -cIf, I _hope_ this
will have preserved the permissions!), but a mirrordir operation
didn't change the situation for the better. I have no complete
backup, as my 1.3 GB HDD is 90% full, and my complete backups are in
Germany while I am in the U.S.

What can I do in this situation? Needless to say, any help will be
appreciated.

A. B.  andre DOT berger AT web DOT de


pgpzQuqZ1kUrw.pgp
Description: PGP signature


Re: ssh without password for secvpn

2001-11-21 Thread Ben Hartshorne
On Tue, Nov 20, 2001 at 12:27:53PM -0600, Brooks R. Robinson wrote:
> Greetings,
>   I am trying to set up the secvpn package between two boxes (one potato, 
> one
> woody).  I have the secvpn.conf figured out, no problem.  My problem is a
> little more basic.  I can't get ssh to connect without a password.  On both
> boxes, I did a 'ssh-keygen' which created my '.ssh/identity' and
> '.ssh/indentity.pub'.  I swapped the '.ssh/indentity.pub' to
> '.ssh/authorized_keys' to each machine.

This is the right set of files to swap for ssh v1 or 1.5

>   I try to connect and I am still asked a password.  I've tried it with 
> both
> empty passphrases and obnoxious passphrases, and I get the same result
> (password not passphrase).  I've muddled thorough the man pages for ssh and
> the vpn-howto, but I seem to be missing the final bit that makes it work.
> Is my problem that I am using a mix potato and woody, or am I just missing
> some configuration.

Potato and woody install different versions of ssh by default.  Potato
installs a version of ssh (1.2.3-9.3) that defaults to using protocol v1.5 (I 
don't
remember if it supports 2).  Woody installs a version of ssh (2.5.2p2-3) that
defaults to protocol v2, and it does support v1.5.  
If you're connecting from the potato box to the woody box, it should
work with the identity and authorized_keys.  Connecting from the woody
box to the potato box, you need to run "ssh -1" in order to force it to
use protocol v1.5.
The other solution is to force both to use protocol v2, but then you
need different key files.  They're no longer identity, identity.pub, and
authorized_keys, but I havn't learned yet what they are.  I should
probably do that soon...

-ben

-- 
Ben Hartshorne  ...Discarding smoothly, as we disembark,
[EMAIL PROTECTED] All thoughts that held us wiser for a moment
ben.hartshorne.net Up there, alone, in the impartial dark. -M. Oliver
My PGP key is at /pgp.txt.  Please encrypt all communications.



pgpABaRTpz0gl.pgp
Description: PGP signature


Re: Fritz!Card PCI ISDN adapter and Woody..

2001-11-21 Thread George Karaolides

I use the Frits!PCI on potato, not woody, and only install isdnutils to
get the user-space utilities; I rolled my own startup scripts etc.  But
from what I can figure out from your message it doesn't look like a module
problem.  It looks more like a problem with setting up the network
interfaces, which has to do with the /etc/init.d/isdnutils script and its
associated config. files, not the module. So I'd suggest you start at
looking at configuration rather than modules.  Sorry not to be more
helpful, but that's the best I can do, given that I've no experience of
the Debian isdnutils scripts.

If this is an initial install and you get really stuck, I could scoot you
a tarball of my setup scripts.  You can use them both for synchronous ppp
(usually for connecting to ISP's) and for raw IP over ISDN (usually for
linking bits of your WAN).  No guarantees of course, but they work quite
well for providing Internet access to about two dozen users and linking
three sites in the WAN I administer for my employers, all on ISDN.

Best regards,

George Karaolides   8, Costakis Pantelides St.,
tel:   +35 79 68 08 86   Strovolos,
email: [EMAIL PROTECTED]   Nicosia CY 2057,
web:   www.karaolides.com  Republic  of Cyprus



On Wed, 21 Nov 2001, Kilian wrote:

> Hi All
>
> I am trying to get the AVM Fritz!Card PCI ISDN adapter to work with my
> Woody system. I've built a custom 2.4.14 Kernel with the HiSax module
> and have installed the fcpci driver from the AVM website. So far it is
> working, the system recognizes the card during boot:
>
>   | CAPI-driver Rev 1.21.6.8: loaded
>   | capifs: Rev 1.14.6.8
>   | capi20: started up with major 68
>   | kcapi: capi20 attached
>   | capi20: Rev 1.44.6.15: started up with major 68 (middleware+capifs)
>   | fcpci: AVM FRITZ!Card PCI driver, revision 0.1
>   | fcpci: Loading...
>   | fcpci: Driver 'fcpci' attached to stack
>   | kcapi: driver fcpci attached
>   | fcpci: Auto-attaching...
>   | PCI: Found IRQ 5 for device 02:0d.0
>   | PCI: Sharing IRQ 5 with 02:09.0
>   | fcpci: Stack version 3.09-10
>   | kcapi: Controller 1: fritz-pci attached
>   | kcapi: card 1 "fritz-pci" ready.
>   | fcpci: Loaded.
>   | kcapi: notify up contr 1
>   | capi: controller 1 up
>
> and lsmod shows the following:
>
>   | Module  Size  Used by
>   | fcpci 538304   1
>   | capi   18688   0
>   | capifs  3424   1 [capi]
>   | kernelcapi 29216   2 [fcpci capi]
>   | capiutil   22272   0 [kernelcapi]
>   | hisax 156960   0 (unused)
>
> However, caling /etc/init.d/isdnutils start brings me the following errors:
>
>   | Starting ISDN services : interfaces/dev/isdnctrl: No such device
>   |  ippp0 failed.
>   | /dev/isdnctrl: No such device
>   |  isdn0 failed.
>   |  iprofd/dev/isdninfo: No such device
>   |  isdnlog/dev/isdnctrl: No such device
>
> I am quite desperate because I just can't figure out where the problem
> is.. Any hints and RTFMs are very welcome.
>
>   --Kilian
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
>



Re: downloading with apt-get --download-only install package

2001-11-21 Thread Michael A. Miller
> "Michael" == Michael Heldebrant <[EMAIL PROTECTED]> writes:

> apt-get install $yourpackages --print-uris


That's the trick!  Thanks.  

The other thing that someone pointed out is apt-zip, which also
works quite well.

Mike



new to the list - sendmailcf

2001-11-21 Thread madhombre
please let me know if I do anything wrong, I am new to this list and quite new 
to list sin gerneral.

Hello, nice to meet you all.

I am also quite new to unix, so please be patient!

my set up

I have 3 unix boxes, one gateway/mail server, one web server and one client

The gateway uses netbsd and has qmail running quite nicely on it.

The client is the one running Debian, it is an old laptop with not much ram so 
I had to use Slink (2.1)

I want to collect email from my mail server and also my isp.

I have fetchmail, sendmail and pine running and it is almost working, but not 
quite.

I came across a page ont he web which expalins how to do what I want to do, BUT 
it says I need sendmail and sendmailcf

I have sendmail but not the sendmailcf, I looked on redhat and they have it.

Can I get it, I can't even find the source anywhere.

Where can I get it from, pacjage or source, either one.

OR someone can try to fix what I have now.

It works but all the mail goes into one root file, I want to break it up into 1 
file per message.

Pine can't handle it at the moment, I am opretty sure because it is all one 
file.

PLEASE HELP!!!

Thanks.


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: There've been a lot of these [was Re: Print problems with CUPS]

2001-11-21 Thread DvB
dman <[EMAIL PROTECTED]> writes:

> On Wed, Nov 21, 2001 at 09:18:51AM -0600, DvB wrote:
> | 
> | I've been seeing a lot of CUPS related problem on the list lately and I,
> | personally, have been having no end of problems printing since the last
> | cups upgrade landed through apt-get: my home printer (parallel port)
> | won't print at all... I guess I'll have to try rebooting and cycling the
> | printer :-) My computer here at work, OTOH, will print blank pages from
> | mozilla but, otherwise, appears to work fine (this one's printing to an
> | HP JetDirect card).
> 
> Check your gimp print packages.  My desktop machine went bad a while
> ago -- gimp wouldn't print anytyhing (lp would warn about no data on
> stdin) and galeon would spit out blank pages (at least for the
> pictures I tried to print).  Then one time I tried the laptop from
> work and it (gimp) printed just fine.  I checked the package list and
> found that my desktop machine had some extra wacky versioned gimp
> print package.  I removed it and gimp could then print just like it
> used to.
> 


Are you referring to the cupsys-driver-gimpprint package? It's not
installed on either of my machines. Here's a list of packages with
"cups" in them:

un  apcupsd(no description available)
ii  cupsomatic-ppd 0.20010420-3  cups printer ppd's from LinuxPrinting.org
ii  cupsys 1.1.10-4  Common UNIX Printing System(tm) - server
rc  cupsys-bsd 1.1.4-3   Common UNIX Printing System(tm) - BSD commands
ii  cupsys-client  1.1.10-4  Common UNIX Printing System(tm) - client 
programs (SysV)
un  cupsys-dev (no description available)
un  cupsys-driver-gimppr   (no description available)
ii  cupsys-pstoraster1.1.10-4Common UNIX Printing System(tm) - pstoraster
un  kdelibs3-cups  (no description available)
un  libcupsys1 (no description available)
un  libcupsys1-dev (no description available)
ii  libcupsys2 1.1.10-4  Common UNIX Printing System(tm) - libs
un  qtcups (no description available)


The list looks the same on both machines, except that cupsys-bsd is rc
on one and pn on the other.

The only other thing I noticed is that gnome-print (which is only in
stable and not testing or unstable) is installed on my home machine and
not this one. I tried uninstalling it and print jobs still just sit in
the queue for ever but I don't remember if my printer's on or off so
I'll have to check it when I get a chance :-)



Re: Upgraded X to 4.1: Lost 1280x1024 mode

2001-11-21 Thread FGL
On Wed, Nov 21, 2001 at 05:49:50PM +0530, Sridhar M.A. wrote:
> On Wed, Nov 21, 2001 at 10:20:49AM +0100, Emil Pedersen wrote:
>> 
>> Btw, the modelines you included bellow don't include the 1280x1024
>> resolution, the highest I can find is "1152x864".
> 
> Yes. The original poster had that resolution. Mine was this.

I'm the original poster. I have an ATI card and I found in the XFree86 v4
documentation for it an note explaining that the dot clock had been
artificially limited to 80MHz for this release and that the limitation
will be removed in a future version.

FGL



Re: UPS hardware and software

2001-11-21 Thread Kevin Beauchamp
On Wed, 21 Nov 2001 10:13:11 -0600, Dimitri Maziuk wrote:
>* Mark A. Bialik ([EMAIL PROTECTED]) spake thusly:

>> Liebert equipment is true line-interactive hardware... you are always
>> running from battery (which is continuously charging).  Try running
>> APC's in an environment with a backup power source (Diesel/Natural Gas)
>> and see how they handle the switch-off...  maybe you'll get lucky, maybe
>> not.
>
>We have APC SmartUPSen on the servers and various small APC UPSen
>on the workstations (mainly power-board style OfficeUPS). There's
>a generator on one of the circuits feeding the servers. So far
>the UPSen handled the switch-over just fine.

We're running about 70 APC UPSes. They are a mix: mostly
SU-1400RMs, some -1000s, -700s, -600s and even a few
BackUP 250s and Pro-280s.

The APCs were relatively inexpensive, had good software
support (under Windows), did more internal monitoring than
most UPSes at the time and could be bought just about
anywhere. Tech. support from APC has also been OK.

They support PCs running HVAC software in machine rooms.
If main power fails, the UPS only has to keep the equipment
alive until the BU generator spins up. We haven't had any
problems to date with running them from the generator power.
When they work, they seem to work well.

I'm am reconsidering them for our application though. They are
also line-interactive. This means that they are always "working"
the batteries and I think this tends to shorten the lifetime of the
pack. The SUs do an internal pack test roughly every two
weeks. If they have a shorted cell in a battery when the test
runs, they have a tendancy to dump the load, so you _could_
loose your server to a UPS test even with no other trouble
condition than a bad pack you haven't gotten around to replacing.
The monitoring for the SUs over a serial line is good (apart
from the weird cable pinout) but in some cases all I wanted was
a contact output. They don't provide one: only an open-collector
that you need to cook up a circuit for. This may not be a problem
for one or two, but try 70.

The 3U rackmounts have user-replaceable packs, but if a cell
fails and distorts, try getting it out through the narrow openning
without disassembling the entire unit. I'm not sure how the new
2U units are in this regard.

So although I don't hate the APCs, I'm starting to lean towards
older, standby style units. I suspect that these put fewer failure
points in the power path under normal conditions, which I'm 
considering preferable to having the PC fail because the UPS
ran a diagnostic and didn't handle a problem condition correctly.
The UPS shouldn't introduce more problems than it solves.

My $0.02 (CDN)

Kevin B.



Re: new to the list - sendmailcf

2001-11-21 Thread Frank Zimmermann



The client is the one running Debian, it is an old laptop with not 
much ram so I had to use Slink (2.1)


Why?? Potato or woody should run smoothly on it as well. Linux is not 
Windows where you need more PC power for a new version. You have the 
choice on how you use your computer.




I want to collect email from my mail server and also my isp.

I have fetchmail, sendmail and pine running and it is almost 
working, but not quite.


I came across a page ont he web which expalins how to do what I want 
to do, BUT it says I need sendmail and sendmailcf


I have sendmail but not the sendmailcf, I looked on redhat and they have it.


That's the configuration file. You can create it e. g. using m4 
macros. see man sendmail. Don't know wether Debian has it's own 
configuration util for sendmail. I use exim wich is the default on 
Debain.





It works but all the mail goes into one root file, I want to break 
it up into 1 file per message.


Pine can't handle it at the moment, I am opretty sure because it is 
all one file.



AFAIK that is normal.



PLEASE HELP!!!

Thanks.



Frank
--



new to the list - mail help

2001-11-21 Thread madhombre
I found out about sendmail.cf

I even installed procmail!!

Why do the messages all go into one file and not into 1 file per message???

This is driving me nuts!


Thanks.


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: Dangling man page sym links

2001-11-21 Thread Colin Watson
On Thu, Nov 22, 2001 at 01:25:21AM +1100, Richardson, Martin wrote:
>   I have an issue when I try to do a man on a particular
> command I get a, warning that 'man ctags.emacs is a dangling sym link'
> and 'man ctags.emacs no such file' ( you have to excuse me.. Im not on
> my Debiam box right now) . I have found the symlink and deleted it,
> and the problem went away for a little while, but now its back. Could
> someone please point me in the right direction, on how to update any
> changes to the man pages etc etc I think all this has resulted from
> update/ removal of some software. I am sorry for the vagueness. I am
> using Potato.

In woody, man won't display those annoying messages any more, or make
you suffer the delay that came with them. In potato, the easiest way to
stop man complaining was to run mandb as root after changing any man
pages.

The dangling symlinks you mention are almost certainly bugs in
individual packages, and usually relate to the alternatives system,
which allows multiple packages to provide the same command (and its
corresponding man page). Sometimes maintainers get this a bit wrong. If
you make sure everything in /etc/alternatives points to something valid
(using either update-alternatives or plain old 'ln -s'), you should be
more or less OK.

-- 
Colin Watson  [EMAIL PROTECTED]



RE: new to the list - sendmailcf

2001-11-21 Thread Kelley, Tim \(CBS-New Orleans\)
You do not need sendmail for this - pine probably does require an MTA
installed on the system you're using, but all you need is ssmtp, which a
believe is available for slink.  ssmtp is a simple MTA (send only) which
just passes mail from your machine to  a relay on the internet.  It is
much better to use this over something like exim or sendmail if all you
need is a send only MTA to satisfy a program like pine or mutt or elm.

Alternate: you could log in to the mail server and read your mail there.

> -Original Message-
> From: madhombre [SMTP:[EMAIL PROTECTED]
> Sent: Wednesday, November 21, 2001 10:54 AM
> To:   debian-user@lists.debian.org
> Subject:  new to the list - sendmailcf
> 
> please let me know if I do anything wrong, I am new to this list and
> quite new to list sin gerneral.
> 
> Hello, nice to meet you all.
> 
> I am also quite new to unix, so please be patient!
> 
> my set up
> 
> I have 3 unix boxes, one gateway/mail server, one web server and one
> client
> 
> The gateway uses netbsd and has qmail running quite nicely on it.
> 
> The client is the one running Debian, it is an old laptop with not
> much ram so I had to use Slink (2.1)
> 
> I want to collect email from my mail server and also my isp.
> 
> I have fetchmail, sendmail and pine running and it is almost working,
> but not quite.
> 
> I came across a page ont he web which expalins how to do what I want
> to do, BUT it says I need sendmail and sendmailcf
> 
> I have sendmail but not the sendmailcf, I looked on redhat and they
> have it.
> 
> Can I get it, I can't even find the source anywhere.
> 
> Where can I get it from, pacjage or source, either one.
> 
> OR someone can try to fix what I have now.
> 
> It works but all the mail goes into one root file, I want to break it
> up into 1 file per message.
> 
> Pine can't handle it at the moment, I am opretty sure because it is
> all one file.
> 
> PLEASE HELP!!!
> 
> Thanks.
> 
> 
> _
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com
> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
> 



urls - check it !

2001-11-21 Thread griend

peace


Virus incident

2001-11-21 Thread YODA Panda Antivirus for Exchange Server
Panda Antivirus has found the following viruses in the message:
Server :YODA

Sent by :   [EMAIL PROTECTED]
Address :   [EMAIL PROTECTED]
To :debian-user@lists.debian.org
Subject :   urls - check it ! 
Date :  21/11/2001  20:02

VARNING !!Virus found in this E-Mail.

File :  
   Virus :  W32/Aliz - Disinfected

http://www.pandasoftware.com



Virus incident

2001-11-21 Thread YODA Panda Antivirus for Exchange Server
Panda Antivirus has found the following viruses in the message:
Server :YODA

Sent by :   [EMAIL PROTECTED]
Address :   [EMAIL PROTECTED]
To :debian-user@lists.debian.org
Subject :   urls - check it ! 
Date :  21/11/2001  19:02:12

VARNING !!Virus found in this E-Mail.

File :  whatever.exe inside: urls - check it ! 
   Virus :  W32/Aliz - Ignored

http://www.pandasoftware.com



Virus incident

2001-11-21 Thread YODA Panda Antivirus for Exchange Server
Panda Antivirus has found the following viruses in the message:
Server :YODA

Sent by :   [EMAIL PROTECTED]
Address :   [EMAIL PROTECTED]
To :debian-user@lists.debian.org
Subject :   urls - check it ! 
Date :  21/11/2001  19:02:12

VARNING !!Virus found in this E-Mail.

File :  whatever.exe inside: urls - check it ! 
   Virus :  W32/Aliz - Ignored

http://www.pandasoftware.com



Antigen found Aliz.4096.Worm (Norman,Sophos) virus

2001-11-21 Thread Antigen
Antigen for Exchange found whatever.exe infected with Aliz.4096.Worm 
(Norman,Sophos) virus.
The file is currently Removed.  The message, "  urls - check it ! ", was
sent from [EMAIL PROTECTED] and was discovered in SMTP Messages\Inbound
located at Cox/CoxHub1/HATL0MS21.




Funny website here !!

2001-11-21 Thread griend

peace


Virus incident

2001-11-21 Thread YODA Panda Antivirus for Exchange Server
Panda Antivirus has found the following viruses in the message:
Server :YODA

Sent by :   [EMAIL PROTECTED]
Address :   [EMAIL PROTECTED]
To :debian-user@lists.debian.org
Subject :   Funny website here !! 
Date :  21/11/2001  19:08:38

VARNING !!Virus found in this E-Mail.

File :  whatever.exe inside: Funny website here !! 
   Virus :  W32/Aliz - Ignored

http://www.pandasoftware.com



Virus incident

2001-11-21 Thread YODA Panda Antivirus for Exchange Server
Panda Antivirus has found the following viruses in the message:
Server :YODA

Sent by :   [EMAIL PROTECTED]
Address :   [EMAIL PROTECTED]
To :debian-user@lists.debian.org
Subject :   Funny website here !! 
Date :  21/11/2001  19:08:38

VARNING !!Virus found in this E-Mail.

File :  whatever.exe inside: Funny website here !! 
   Virus :  W32/Aliz - Ignored

http://www.pandasoftware.com



Antigen found W32/Aliz@MM (McAfee4) virus

2001-11-21 Thread ANTIGEN_SSEXCH-00-IMC1
Antigen for Exchange found whatever.exe infected with W32/[EMAIL PROTECTED] 
(McAfee4)
virus.
The file is currently Removed.  The message, " Funny website here !! ", was
sent from [EMAIL PROTECTED] and was discovered in IMC Queues\Inbound
located at Seguranca-Social/SEG-SOCIAL/SSEXCH-00-IMC1.



Antigen found Aliz.4096.Worm (Norman,Sophos) virus

2001-11-21 Thread Antigen
Antigen for Exchange found whatever.exe infected with Aliz.4096.Worm 
(Norman,Sophos) virus.
The file is currently Removed.  The message, " Funny website here !! ", was
sent from [EMAIL PROTECTED] and was discovered in SMTP Messages\Inbound
located at Cox/CoxHub1/HATL0MS21.




Virus incident

2001-11-21 Thread YODA Panda Antivirus for Exchange Server
Panda Antivirus has found the following viruses in the message:
Server :YODA

Sent by :   [EMAIL PROTECTED]
Address :   [EMAIL PROTECTED]
To :debian-user@lists.debian.org
Subject :   Funny website here !! 
Date :  21/11/2001  20:08

VARNING !!Virus found in this E-Mail.

File :  
   Virus :  W32/Aliz - Disinfected

http://www.pandasoftware.com



advice needed on portals and weblogs

2001-11-21 Thread Greg Wiley
Good day!

I need to set up an organizational web site that will have
some characteristics of a weblog (for editorial and news)
and some of a group site ( shared calendar and contacts,
etc.) .  I will need to develop some specialized applications
over time.  This is for a church so it will have some public
functionality and some internal, protected functionality.

My goals include extensibility, low operational maintenance,
and Debian compatibility.

I have looked at several content management systems for
a basis and wonder what Deb users' experiences are.  Some
notes on the research so far:

 - I started installing Slash and found that it requires mods
to Debian-installed components.  It also appears to be
a resource hog.

 - PHP-Nuke seems good except I am concerned about
the tight coupling of logic/presentation and how it will
affect extensibility and the resultant code maintenance.

 - Zope and Zope CMF are also interesting, particularly as
they are Deb packages and are built for extensibility.  My
only concern is that I haven't seen any Z-CMF examples,
including the dog bowl, that really connect to what I am
doing.

Since all the solutions require a considerable time investment
for research and implementation, I am just looking for some
pre-advice before I get too far down any particular road.

Thanks in advance,

  -=greg





  1   2   3   >