Re: Compiling a kernel on an UltraSparc?

2002-12-20 Thread nate
Gerald V. Livingston II said:
> Is there any special info on getting a 2.4.20 kernel to compile under
> woody on a Sun UltraSparc-1 Creator.


I'm not sure how closely you track the kernel but I've read several
places that the "generic" kernel is rarely the choice for anything
other then x86. the non x86 stuff is not always in sync, doesn't always
work etc ...that said, where did you get the sources? I would expect
the source package for whatever kernels debian has to build on the
sparc. But if your getting a kernel directly from kernel.org it may
not(without some patches).

I don't have personal experience with linux on sparc yet, Downloading
the woody ISOs for it now and plan to install it on my ultra 1 probably
tomorrow though.

nate




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




Re: just survived from unbootable system - what was wrong? *solved*

2002-12-20 Thread Sandip P Deshmukh
On Sat, Dec 21, 2002 at 02:35:11AM -0500, Shawn Lamson wrote:
> On Sat, 21 Dec 2002 12:49:47 +0530
> Sandip P Deshmukh <[EMAIL PROTECTED]> wrote:
> 
> > hello all
> > 
> > in my quest for finding a solution for this problem, i came across a
> > script on this mailing list which claimed to do this. here is the
> > script:
> > 
> > #!/bin/sh
> > INITTY=/dev/tty[1-6]
> > for tty in $INITTY; do
> > setleds -D +num < $tty
> > done
> victim of cut and paste from an html page?

you said it! indeed victim of cut and paste from an html page! and a
nice lesson to learn

> > and disaster struck. my system refused to give me a login prompt!! i did
> > init=/bin/bash at lilo. this gave me a prompt but mounted filesystem
> > readonly. how do i make it read-write?
> mount -t ext2 -o remount,rw /dev/hda1 /
> or adjust to your system

thanx. it is valuable! actually r and w both are switches that can be
passed to mount. so i thought it would be mount -r -w :)

> HTH

it did!

-- 
regards,
 
sandip p deshmukh
--***
 
I am myself plus my circumstance, and if I do not save it, I cannot
save myself.
-- Jos'e Ortega Y Gasset


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




Re: simple exim configuration

2002-12-20 Thread Paul Scott
Oops!  I didn't send two of these to the list:

David H. Clymer wrote:


${local_part} is taken from the recipiant's email address. if someone
sent you an email (to: [EMAIL PROTECTED]) the exim splits up the address on
the @ and sets two variables:

local_part: paul
domain: foo.com

 

What process does that substitution?
   


I'm not exactly sure, to be honest...

I tried a little experiment below

woody:/usr/src/linux# exim -d8 -bt david
Exim version 3.35 debug level 8 uid=0 gid=0
Berkeley DB: Sleepycat Software: Berkeley DB 2.7.7: (08/20/99)
Caller is an admin user
Caller is a trusted user
user name "root" extracted from gecos field "root"
address david@woody
 local_part=david domain=woody
 domain is local
system_aliases director: lsearch key=david
 file="/etc/aliases"
system_aliases director declined for david: 
userforward director: file = .forward
set uid=0 gid=0 euid=1000 egid=1000
successful stat of /home/david/.
/home/david/.forward not found
restored uid=0 gid=0 euid=8 egid=8
queued for local_delivery transport: local_part=david domain=woody
 errors_to=NULL
 domain_data=NULL local_part_data=NULL
localuser director succeeded for david
david@woody
 deliver to david in domain woody
 director = localuser, transport = local_delivery

I guess the debugging above indicates that it is set prior to any of the
delivery facilities configured in exim.conf...I dont know...is this
useful? maybe I'm not sure what info you are trying to find.

Yes, it's useful in that it leads to questions.  My results are almost
identical except that domain for you is your hostname where for me it is
the username part of my e-mail address.  The local_part for both of us
seems to be the argument for -bt.

The other difference is that I don't yet have a .forward file.

With my hostname in exim.conf I get results consistent with yours.

(snip)


That part was clear.  I was just expecting local_part to be something 
that I set somewhere else in exim.conf.
   


I think those are set at delivery time. if you were able to set them in
the config file, it would seem to me that all your mail would get dumped
in one box.


It's fairly clear that that is correct.  local_part was the part after
the -bt in the test.

I will see if that change makes any mail appear anywhere.

Thanks,

Paul




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



Compiling a kernel on an UltraSparc?

2002-12-20 Thread Gerald V. Livingston II
Is there any special info on getting a 2.4.20 kernel to compile under
woody on a Sun UltraSparc-1 Creator.

Yes, the Debian Way (tm) -- or not, I don't care. Right now it fails
at the "make dep" stage using either method. First it was some missing
header files. Figured out where they were and got that fixed.

Then it was "cannot execute cc1 -- no such file". Found it, linked it
into /usr/bin. Now it an "invalid option to "cc1":

"cc1   --mmedlow  no such option"

Cascading errors, yuck.

Gerald

-- 
Gerald
http://www.phorce1.com
http://www.buskatiers.org


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




Re: just survived from unbootable system - what was wrong?

2002-12-20 Thread Shawn Lamson
On Sat, 21 Dec 2002 12:49:47 +0530
Sandip P Deshmukh <[EMAIL PROTECTED]> wrote:

> hello all
> 
> one of the differences between debian and windows was that debian did
> not turn numlock on by default while booting.
> 
> in my quest for finding a solution for this problem, i came across a
> script on this mailing list which claimed to do this. here is the
> script:
> 
> #!/bin/sh
> INITTY=/dev/tty[1-6]
> for tty in $INITTY; do
> setleds -D +num < $tty
> done
victim of cut and paste from an html page?
from man setleds i see
INITTY=/dev/tty[1-8]
  for tty in $INITTY; do
 setleds -D +num < $tty
  done



> 
> i made a file setleds in /etc/init.d and created a link named S20setleds
> to it in /etc/rc2.d as was suggested in the post.
> 
> and disaster struck. my system refused to give me a login prompt!! i did
> init=/bin/bash at lilo. this gave me a prompt but mounted filesystem
> readonly. how do i make it read-write?
mount -t ext2 -o remount,rw /dev/hda1 /
or adjust to your system
> 
> lastly, i booted from installation cd and mounted my filesystem, removed
> the link and could get to boot in normally.
nice move in a clutch situation :)
> 
> what is wrong with the script? is there any way in which i can make num
> lock turned on on all virtual consoles?

see above or "man setleds"

HTH
Shawn
> -- 
> regards,
>  
> sandip p deshmukh
> --***
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 


-- 
Shawn Lamson
[EMAIL PROTECTED]
Debian GNU/Linux 3.0


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




Re: simple exim configuration

2002-12-20 Thread Alan Chandler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I'll copy this back to the list

On Friday 20 December 2002 10:44 pm, you wrote:
..
> >>>On Fri, 2002-12-20 at 14:13, Paul Scott wrote:
> Ok.  My /etc/exim/exim.conf has:
> 
> local_delivery:
>  driver = appendfile
>  group = mail
>  mode = 0660
>  mode_fail_narrower = false
>  envelope_to_add = true
>  return_path_add = true
>  file = /var/spool/mail/${local_part}
> 
> but mutt tells me that /var/spool/mail/paul is not a mailbox.
> >>>
> >>>what does: ls /var/mail/paul tell you? is it a file, or a directory?
> >>
> >>It's a valid mail file according to /usr/bin/mail
> >
> >What are the file access rights.  It should have set the user to "paul"
> > and the group to "mail" (user is set in the director that directs it to
> > local_delivery) but if its not then it might not be readable
>
> -rw-r-1 paul mail 5856 Dec 20 10:37
> /var/spool/mail/paul



> I haven't changed what was installed.  I now wonder what the
> relationship between the 640 here and the 660 in exim.conf.  Is group
> write necessary?

I don't think exim was the last programme to write to the file - it would have 
set the mode to 660.

[or at least if its local_delivery that is delivering the file.  It could be 
being delivered by another route - for instance procmail?]

I am a little confused by what you are using in your mail chain after all the 
advice.  The simplest this is


Fetchmail ->smtp->exim->/var/spool/mail/paul->mutt

but for instance, I do

fetchmail ->smtp->exim (as MTA)->pipe->spamassassin->exim(as 
sendmail)->$HOME/Maildir->courier->pop3->kmail

So you can end up with quite a range of things getting in the way.


>
> >>What process does that substitution?
> >
> >Its all inside exim its part of recognising the e-mail address and
> >manipulating it.
>
> That now makes sense.
>
> See my answer to David for other information.
>
> Thanks,
>
> Paul

- -- 
Alan Chandler
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+BBm5uFHxcV2FFoIRAoo/AKCVuPCxwFI3hnXfL4BS7MQ1+i6ANQCgi2lY
obF2jDboehcwDo8sMpfimIw=
=sOzT
-END PGP SIGNATURE-


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




Re: just survived from unbootable system - what was wrong?

2002-12-20 Thread Derrick 'dman' Hudson
On Sat, Dec 21, 2002 at 12:49:47PM +0530, Sandip P Deshmukh wrote:

| and disaster struck. my system refused to give me a login prompt!! i did
| init=/bin/bash at lilo. this gave me a prompt but mounted filesystem
| readonly. how do i make it read-write?

Remount it.

# mount -o remount -o rw /

| what is wrong with the script? is there any way in which i can make num
| lock turned on on all virtual consoles?

I think Bob has nailed it.  The script didn't terminate, so the
initialization process couldn't continue.

-D

-- 
Pride goes before destruction,
a haughty spirit before a fall.
Proverbs 16:18
 
http://dman.ddts.net/~dman/



msg20363/pgp0.pgp
Description: PGP signature


Re: just survived from unbootable system - what was wrong?

2002-12-20 Thread Bob Proulx
Sandip P Deshmukh <[EMAIL PROTECTED]> [2002-12-21 12:49:47 +0530]:
> 
> #!/bin/sh
> INITTY=/dev/tty[1-6]
> for tty in $INITTY; do
> setleds -D +num < $tty
> done
> [...]
> what is wrong with the script? is there any way in which i can make num
> lock turned on on all virtual consoles?

It is this line here.

> setleds -D +num < $tty

That "<" is an HTML transmogrification of "<".  Since < and > are
both used in HTML they are escaped into a different format.  Looks
like someone had posted this script on a web page and formatted it
into html.

Not knowing anything about this script I am sure they were intending
this instead.

  #!/bin/sh
  INITTY=/dev/tty[1-6]
  for tty in $INITTY; do
setleds -D +num < $tty
  done

I don't know anything about setleds but it appears to operate on the
standard input.  Therefore this for loop walks through all of the
devices and provides it as standard input with the < redirect.

Bob



msg20362/pgp0.pgp
Description: PGP signature


Re: just survived from unbootable system - what was wrong?

2002-12-20 Thread Aryan Ameri
On Saturday 21 December 2002 10:49 am, Sandip P Deshmukh wrote:
> hello all
>
> one of the differences between debian and windows was that debian did
> not turn numlock on by default while booting.

Well, this is actually something that the BIOS software (usually) handles. 
Most of the systems I have seen to date have this feature somewhere in the 
BIOS setup, and AFAIK it is OS independent.

Cheers
Aryan


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




just survived from unbootable system - what was wrong?

2002-12-20 Thread Sandip P Deshmukh
hello all

one of the differences between debian and windows was that debian did
not turn numlock on by default while booting.

in my quest for finding a solution for this problem, i came across a
script on this mailing list which claimed to do this. here is the
script:

#!/bin/sh
INITTY=/dev/tty[1-6]
for tty in $INITTY; do
setleds -D +num < $tty
done

i made a file setleds in /etc/init.d and created a link named S20setleds
to it in /etc/rc2.d as was suggested in the post.

and disaster struck. my system refused to give me a login prompt!! i did
init=/bin/bash at lilo. this gave me a prompt but mounted filesystem
readonly. how do i make it read-write?

lastly, i booted from installation cd and mounted my filesystem, removed
the link and could get to boot in normally.

what is wrong with the script? is there any way in which i can make num
lock turned on on all virtual consoles?

-- 
regards,
 
sandip p deshmukh
--***


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




Xnest under X. Question.

2002-12-20 Thread Egor Tur
Hi.
I want to setup Xnest with depth 8 under X with depth 24. When I try do this I see 
messages
Fatal server error:
Unable to find desired default visual.

Ok. I see man Xnest and I see that this must work.
xdpyinfo show me that I have 
number of visuals:4
and  next  visual  classes
TrueColor É DirectColor.

How can I use Xnest with 8bpp under X with 24bpp?
Unfortunately google canoot help me :(

Many thanks for any comments.


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




X in unstable is unstable [hosed] ?

2002-12-20 Thread Adam Majer
Hi all,

I just wanted to report a nasty problem with X in
unstable. After about 6h of uptime, it starts to reset
the screen. I have to reboot - restarting X does
nothing.

Here's the tail of the X log:

(==) Wacom tablet top X=0 top Y=0 bottom X=30480 bottom Y=24060
(==) Wacom tablet top X=0 top Y=0 bottom X=30480 bottom Y=24060
SwitchToMode - scrn: 0 clock: 56300
   hdsp: 800 hbeg: 832 hend: 896 httl: 1048
   vdsp: 600 vbeg: 601 vend: 604 vttl: 631 flags: 5
Checking against clock: 108000 (108000)
 hdsp: 1152 hbeg: 1216 hend: 1344 httl: 1600
 vdsp: 864 vbeg: 865 vend: 868 vttl: 900 flags: 5
Checking against clock: 94500 (94500)
 hdsp: 1024 hbeg: 1072 hend: 1168 httl: 1376
 vdsp: 768 vbeg: 769 vend: 772 vttl: 808 flags: 5
Checking against clock: 56300 (56300)
 hdsp: 800 hbeg: 832 hend: 896 httl: 1048
 vdsp: 600 vbeg: 601 vend: 604 vttl: 631 flags: 5
SwitchToMode - Succeeded
SwitchToMode - scrn: 0 clock: 108000
   hdsp: 1152 hbeg: 1216 hend: 1344 httl: 1600
   vdsp: 864 vbeg
   vdsp: 864 vbeg: 865 vend: 868 vttl: 900 flags: 5
Checking against clock: 108000 (108000)
 hdsp: 1152 hbeg: 1216 hend: 1344 httl: 1600
 vdsp: 864 vbeg: 865 vend: 868 vttl: 900 flags: 5
SwitchToMode - Succeeded
SwitchToMode - scrn: 0 clock: 56300
   hdsp: 800 hbeg: 832 hend: 896 httl: 1048
   vdsp: 600 vbeg: 601 vend: 604 vttl: 631 flags: 5
Checking against clock: 108000 (108000)
 hdsp: 1152 hbeg: 1216 hend: 1344 httl: 1600
 vdsp: 864 vbeg: 865 vend: 868 vttl: 900 flags: 5
Checking against clock: 94500 (94500)
 hdsp: 1024 hbeg: 1072 hend: 1168 httl: 1376
 vdsp: 768 vbeg: 769 vend: 772 vttl: 808 flags: 5
Checking against clock: 56300 (56300)
 hdsp: 800 hbeg: 832 hend: 896 httl: 1048
 vdsp: 600 vbeg: 601 vend: 604 vttl: 631 flags: 5
SwitchToMode - scrn: 0 clock: 108000
   hdsp: 1152 hbeg: 1216 hend: 1344 httl: 1600
   vdsp: 864 vbeg: 865 vend: 868 vttl: 900 flags: 5
Checking against clock: 108000 (108000)
 hdsp: 1152 hbeg: 1216 hend: 1344 httl: 1600
 vdsp: 864 vbeg: 865 vend: 868 vttl: 900 flags: 5
SwitchToMode - Succeeded
(==) Wacom tablet model : GD-0912-R00,V1.2-7
(==) Wacom V tablet maximum X=30480 maximum Y=24060 X resolution=2540 Y 
resolution=2540 suppress=26 Tilt



Where the heck is the "SwitchToMode" coming from?
Anyone else have these problems with 4.2.1?

- Adam

PS. There is also the quake problem with the 4.2.1 in which the 
mouse in quake 3 gets stuck in upper-left corner.

Hardware: ATI Radeon
Kernel: 2.4.19 --- same one that works under all previous X


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




Re: 2 Problems Quake3 and Bind9

2002-12-20 Thread Adam Majer
On Thu, Dec 19, 2002 at 01:42:43PM -0600, Jason Jorgensen wrote:
> Now, the more important question!
> Quake3. I recently upgraded my Debian unstable workstation and now all 
> of a sudden my Quake3 for linux wont respond to my mouse movements. The 
> mouse buttons register fine inside the game, but I can not move or turn 
> with the mouse. I just got a logitech MX300 and I want to Quake from my 
> favorite OS! dang it!
> 
> X 4.2.1
> KDE 3.0.5
> nvidia 4191 (or something)
> 
> Is there a device quake3 uses that maybe devfs screwed up? (blindly 
> groping for some clues)
> 
> Also after the same upgrade mplayer now crashes during playback, and 
> konsole crashes during load. But the strange thing about that is that 
> KDE starts a konsole session when it starts up, as I eneded a session 
> with one open. But I cannot launch another.
> 
> I know that I am running Debian unstable and should expect things like 
> this, but this is weird!

I think X is fucked. I'm getting the same thing. Futhermore, after
about 6 h of uptime, my screen starts to reset in a freaking panic.
I can't do anything. Not even switching to console and restartig
X helps. I have to reboot.

- Adam

PS. Quake 3 demo still works... The patch release does not...
I think it is X that screws up just because of the other problem.


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




kde 3.1 on sarge

2002-12-20 Thread Aryan Ameri
hi there:
this may have come up before, but I searched the archive and couldn't found 
the answer, so I decided perhaps it would be best to ask the ML.

I wonder if anyone is aware of any apt-get-able site with kde 3.1 (RC) 
packages for sarge. I have found Karolinas KDE 3.1 packages ( 
http://wh9.tu-dresden.de/kde3/karolina ) but I can't install it on sarge, nor 
could I do so on woody ( it gives unmet dependencies ).

Cheers
Aryan


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




Re: '%Pon' can't connect

2002-12-20 Thread John Hasler
Rodrigo writes:
> Does anybody knows what is going on ?

Without more information, no.  Post the output of the plog command and
copies of /etc/chatscripts/provider and /etc/ppp/peers/provider.  Mask any
passwords.
-- 
John Hasler
[EMAIL PROTECTED]
Dancing Horse Hill
Elmwood, Wisconsin


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




Re: '%Pon' can't connect

2002-12-20 Thread Donald R. Spoon
Rodrigo F. Baroni wrote:

Hello all,


 When I type '%pon' to get connect at my internet
server it do the call, send the user name and passwd,
but disconnect after this.


 Does anybody knows what is going on ?


  Rodrigo



I don't have a clue, and I doubt others will either based upon the above 
information.

 What do your logs say about the connection process?  There should be 
something in /var/logs/ that reports on the progress of the call and 
tells you what is happening to cause the hangup.  It could be an 
incorrect username/password pair, your system requesting the other 
computer to authorize itself, use of an in-comtatable authorization 
protocol, or any number of things.  A copy of your log entires would be 
of great help.

Cheers,
-Don Spoon-




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



Re: win2k WS FTP doesn't play well with debian

2002-12-20 Thread Kirk Strauser
On Fri, 2002-12-20 at 20:53, Sasha Karlik wrote:

> Anyone possibly know what is going on here?
> Is this a win/ws ftp problem?

What did the other Windows FTP clients you tested do?  Were they able to
complete the transfer, or did they fail in the same (or similar way)?
-- 
Kirk Strauser <[EMAIL PROTECTED]>


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




Re: win2k WS FTP doesn't play well with debian

2002-12-20 Thread Benedict Verheyen
On Sat, 2002-12-21 at 03:53, Sasha Karlik wrote:
> This is a repeat request for help.
> 
> Windows2000 machine :: networked to :: Debian
> All files are browsable in WS FTP.  When beginning a file transfer, the file
> name appears in the destination directory on the debian machine, then the
> transfer locks up immediately.  after about a minute, an error message:
> !Send error: connection reset  or
> !Receive error: Blocking call canceled
> 
> Someone suggested to check my file permissions.  Sorry, but as far as I can
> tell, that was bogus advice.  Anyone possibly know what is going on here?
> Is this a win/ws ftp problem?  I don't see any indication of what could
> possibly be wrong.
> 
> Sasha
> 

We need more info. Is there a firewall running on the debian
machine? When you initiate a download via ftp it opens another
port which can then be blocked by a firewall on the debian machine
 


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




'%Pon' can't connect

2002-12-20 Thread Rodrigo F. Baroni
Hello all,


 When I type '%pon' to get connect at my internet
server it do the call, send the user name and passwd,
but disconnect after this.


 Does anybody knows what is going on ?


  Rodrigo

___
Busca Yahoo!
O melhor lugar para encontrar tudo o que você procura na Internet
http://br.busca.yahoo.com/


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




win2k WS FTP doesn't play well with debian

2002-12-20 Thread Sasha Karlik
This is a repeat request for help.

Windows2000 machine :: networked to :: Debian
All files are browsable in WS FTP.  When beginning a file transfer, the file
name appears in the destination directory on the debian machine, then the
transfer locks up immediately.  after about a minute, an error message:
!Send error: connection reset  or
!Receive error: Blocking call canceled

Someone suggested to check my file permissions.  Sorry, but as far as I can
tell, that was bogus advice.  Anyone possibly know what is going on here?
Is this a win/ws ftp problem?  I don't see any indication of what could
possibly be wrong.

Sasha


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




Re: wu-ftpd woes

2002-12-20 Thread Benedict Verheyen
On Thu, 2002-12-19 at 19:03, Michael Kahle wrote:
> I am trying to setup a ftp server on my company lan for a repository of g4u
> created machine images.  I have chosen to install wu-ftpd.
> 
> I cannot seam to get this to authenticate me.  I have NOT setup anonymous
> user access, I am only configuring this based on the guest access wu-ftpd
> HOWTO:
> http://www.wu-ftpd.org/HOWTO/guest.HOWTO
> 
> A few questions.  I am using the wu-ftpd package from SID.
> 
> Is the debian package compiled to use /etc/ftpaccess by default?  I am
> assuming it is.
> Does wu-ftpd want you to create user entries in:
> ../[the directory you want the user to chroot to]/etc?
> 
> I am confused as to why this is not working.
> 
> Any (help)(comments)(you are dumb, you should to this) etc welcome.
> 
> Thanks for your time.
> 
> Michael
> 

I use wu-ftpd too for a project and i literally hate it. It came
preinstalled with the red hat server. I prefer proftpd as it
strongely represents the apache style of configuring which is
clearer IMHO than wuftpd.
Of course, your milleage may vary.



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




can't set belgian dutch local

2002-12-20 Thread Benedict Verheyen
Hi,

i'm trying to add euro support to my console and X environment.
Now, to accomplish this i'm following the Debian Euro howto.

1) In chapter 3 there is a part on modifying a keymap. 
It basically deals with copying an existing keymap and adjusting
it accordingly. 
I did that with the /usr/share/keymaps/i386/azerty/be-latin1.kmap.gz
I added the changes according to the manual:

 $ echo "include \"euro\"" >>be-euro.kmap
 $ echo "altgr keycode  46 = cent" >>be-euro.kmap

be-euro.kmap was the map i copied and changed.
When i run kbdconfig command, i cannot install this keymap:
After the initial screens, you get to select from a list of keymaps
and the keymap (be-euro) isn't available.
How can i do this via kbdconfig or another way?

2) I also saw that when i did dpkg-reconfigure -plow locales, that 
it made nl_BE@euro after i selected it but i cannot find it in
/etc/locales.alias or isn't that important?
It didn't procude errors so can i assume it worked?

I hope to really solve this keyboard stuff so i hav my shift-L
back in console.

Thanks




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




err I dselected libpng .... help

2002-12-20 Thread daves debian
Err I made a **?!?** mistake !!

I have deselected

libpng-dev
libpng2-dev
libpng2
libpng3

I haven't actually actioned it yet because the list of packages about to be 
removed is 208 inc KDE etc ...

I have tried various combinations of the four libpngs, to no avail.
I currently have 

libpng2
libpng3

selected for install, no good
When I select libpng2-dev or libpng-dev I get a recursive package problem ??

Can anyone tell me what the default of these four packages in dselect should 
be for woody ??

This is not a good night !! think I will stop now before I screw the system 
completely ... !!

Currently I get ...

Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be REMOVED:
  abiword abiword-common abiword-gtk abiword-plugins amor ark armagetron
  artsbuilder bibletime bonobo cupsys cupsys-bsd cupsys-client
  cupsys-driver-gimpprint cupsys-pstoraster dillo eyesapplet fifteenapplet
  gdk-imlib1 gdm gimp-python gimp1.2 gmc gnome-applets gnome-bin
  gnome-card-games gnome-control-center gnome-core gnome-gnomine gnome-help
  gnome-libs-data gnome-panel gnome-panel-data gnome-session gnome-terminal
  gnome-utils gs gs-common gv imagemagick imlib-base imlib1 kab kabalone
  kaptain karm kasteroids kate katomic kbackgammon kbattleship kbear kblackbox
  kcalc kcd kcharselect kchart kcoloredit kcpuload kcron kde kde-games
  kde-theme-matte kde-theme-metallic kde-theme-neon kde-theme-pastel
  kde-theme-sweetpill kdebase kdebase-audiolibs kdebase-libs kdelibs3
  kdelibs3-bin kdelibs3-cups kdepasswd kdepim-libs kdessh kdf kdict kdm kedit
  kfind kfloppy kformula kfract kghostview khexedit kiconedit kinkatta kit
  kivio kjezz kjots kjumpingcube klaptopdaemon kleandisk klines klisa
  kljettool klpq klprfax kmago kmahjongg kmail kmerlin kmines kmoon knetfilter
  knetload knewsticker knode knotes kodo koffice koffice-libs konqueror
  konquest konsole kontour korganizer korn koshell kpackage kpaint kpat kpm
  kpoker kpresenter krecord kreversi kruler krusader ksame kscd kscore
  kscreensaver kshisen ksirc ksirtet ksmiletris ksnake ksnapshot ksokoban
  kspaceduel kspread ksysv ktalkd kteatime ktexmaker2 ktimer ktron ktuberling
  ktux kugar kuser kview kweather kwin4 kword kworldclock kwuftpd
  libarts-mpeglib libbonobo2 libcapplet0 libcupsys2 libgdk-pixbuf-gnome2
  libgdk-pixbuf2 libglade-gnome0 libgnome32 libgnomeprint-bin
  libgnomeprint-data libgnomeprint15 libgnomesupport0 libgnomeui32 libgnorba27
  libgtkhtml20 libgtkxmhtml1 libkdegames libkdenetwork1 libkmid libkonq3
  libmagick5 libqt2 libsdl-image1.2 libsword1 libwmf0.2-2 lskat mp3kult
  mpeglib netpbm noatun python-gdk-imlib python-glade python-gnome python-gtk
  python-numeric-tutorial quanta rep-gtk rep-gtk-gnome sawfish-gnome secpolicy
  tetex-bin xli xplanet xplanet-images xsane xscreensaver xscreensaver-gl
  xscreensaver-gnome
The following NEW packages will be installed:
  zlib1g-dev
0 packages upgraded, 1 newly installed, 208 to remove and 0  not upgraded.
Need to get 0B/218kB of archives. After unpacking 337MB will be freed.
Do you want to continue? [Y/n]

Opps 
Dave


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




Re: compaq 1600r's with Debian 2.4.18-686-smp

2002-12-20 Thread Thing
dmesg does not detect the second cpu, yet the bios does and init's it.

cat/proc/interrupts shows 1, ditto cpuinfo

Ive compiled my own kernel, still the same, I have 2 such boxes both only see 
one, ive swapped cpu1 into slot 0 and booted fine, so the hardware seems OK.

this suggests a "common" problem across the hardware

regards

Steven

On Sat, 21 Dec 2002 13:58, dave mallery wrote:
> On Sat, Dec 21, 2002 at 11:52:39AM +1300, Thing wrote:
> > Hi,
> >
> > I have 2 of these running dual p2-450 cpus, the problem is on neither
> > machine cat /proc/cpuinfo shows the second cpu, ive swapped the cpu's
> > about and booted with 1 cpu at at time and the server still boots so this
> > suggests the hardware / cpus are fine.
> >
> > anybody know a fix?
> >
> > Im using standard smp debian kernels, eg
> >
> > apt-get install kernel-image-2.4.18-686-smp
>
> three things to look at:
>
> does the bios announce that it sees 2?
> the beginning of dmesg from boot up: reams of stuff about each one
> the output of top or ps:
>
> 3 root  19  19 00 0 SWN   0.0  0.0   0:00
> ksoftirqd_CPU0 4 root  19  19 00 0 SWN   0.0  0.0   0:00
> ksoftirqd_CPU1 5 root  18  19 00 0 SWN   0.0  0.0   0:00
> ksoftirqd_CPU2 6 root  18  19 00 0 SWN   0.0  0.0   0:00
> ksoftirqd_CPU3
>
> good luck
>
> dave


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




Re: Procmail attachment filtering

2002-12-20 Thread Oliver Fuchs
On Fri, 20 Dec 2002, Tom Badran wrote:

> On Friday 20 Dec 2002 10:14 am, Oliver Fuchs wrote:
> > I found this:
> > :0
> >
> > * [ ]*(Content|(file)?name=).*\.(scr|exe|p(if|as)|v(bs|xd)|ba[kt]|\
> >   wab|cp(p|l)|asp|xls|mpe?g|reg|ini|d(iz|ll)|sys)
> > { do stuff }
> 
> I tried this but it seems to filter out _all_ messages. Any chance you 
> possibly made a typo? I dont know enough about procmail to spot any mistakes 
> in your filter.
> 

You can also try (from Simon Powell):

:0 H
*^Content-type: (multipart/mixed)
{
#
# Look at the body to find out if there is some .ocb or .vbs
# or... attached,
# if yes, send the mail to /dev/null

:0 B
 *^Content-Disposition: (attachment|inline)
 *filename=".*\.(ocx|vbs|wsf|shs|exe|com|bat|chm|pif|vbe|hta|scr)"
 {
:0
/dev/null
 }
# other rules
}
#Substitute whatever attachments you don't want but I'm just parannoid!

See also:


http://www.rosat.mpe-garching.mpg.de/cgi-bin/w3glimpse/procmail?query=attachment&errors=0&case=on&maxfiles=100&maxlines=30

Oliver
-- 
... don't touch the bang bang fruit


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




Re: how to build mozilla .deb's from sources?

2002-12-20 Thread Andrew Hurt
On 12/20/02 10:20, Osamu Aoki wrote:


[Andrew Hurt] >-> Here goes my way--not necessarily the _proper_ way

I agree but I would do this a bit differently If I had to
(I did not do this.)  After adding deb-src for unstable and in
testing environment (or in woody if you are lucky)

So if you wanted to rebuild for slightly old environment than latest
unstable

# apt-get build-dep mozilla-snapshot
# apt-get source -b mozilla-snapshot


Thank you for the pointers--my habits have been 'dialup-motivated' and 
way too scattered, but things have changed (for the most part), so I'll 
have to explore.
--
areur
ndwht


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



Re: can not access from outside link

2002-12-20 Thread eric
Dear Rob or any linuxer:

  I did not quite know apache yet,
I had a line in source of html of companyA
http://www.linuxspice.com/cgi-bin/showphoto.pl";> 

and that suppose to powered by me , companyB
in my C:\Apache2\cgi-bin\showphoto.pl
---
#!c:\perl\bin\perl.exe
use strict;
use CGI qw(:standard);
print("Content-type:  Image/jpg\n\n");
print("hello\n");
local $/ = undef; # file slurp mode
open(INFILE, ";
close(INFILE);
binmode STDOUT;
print $img;
exit;
-
I had computer2G0.jpg in my C:\Apache2 (server root)and C:\Apache2\htdocs
(documentation root)

attach my httpd.conf fle in my C:\Apache2\conf\

it still can not the that photo be display, (only have small redcross on the
browser)

Please hlep

Sincere Eric
www.linuxspice.com
linux/window pc for sale

#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs-2.0/> for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "@@ServerRoot@@" will be interpreted by the
# server as "@@ServerRoot@@/logs/foo.log".
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
# If a drive letter is omitted, the drive on which Apache.exe is located
# will be used by default.  It is recommended that you always supply
# an explicit drive letter in absolute paths, however, to avoid
# confusion.
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation (available
# at http://httpd.apache.org/docs-2.0/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#ServerType standalone
#
ServerRoot "C:/Apache2"

#
# ScoreBoardFile: File used to store internal server process information.
# If unspecified (the default), the scoreboard will be stored in an
# anonymous shared memory segment, and will be unavailable to third-party
# applications.
# If specified, ensure that no two invocations of Apache share the same
# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
#
#ScoreBoardFile logs/apache_runtime_status

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile logs/httpd.pid

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15

##
## Server-Pool Size Regulation (MPM specific)
## 

# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves

ThreadsPerChild 250
MaxRequestsPerChild  0


#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the 
# directive.
#

Re: compaq 1600r's with Debian 2.4.18-686-smp

2002-12-20 Thread dave mallery
On Sat, Dec 21, 2002 at 11:52:39AM +1300, Thing wrote:
> Hi,
> 
> I have 2 of these running dual p2-450 cpus, the problem is on neither machine 
> cat /proc/cpuinfo shows the second cpu, ive swapped the cpu's about and 
> booted with 1 cpu at at time and the server still boots so this suggests the 
> hardware / cpus are fine.
> 
> anybody know a fix?
> 
> Im using standard smp debian kernels, eg 
> 
> apt-get install kernel-image-2.4.18-686-smp
> 
three things to look at:

does the bios announce that it sees 2?
the beginning of dmesg from boot up: reams of stuff about each one
the output of top or ps:

3 root  19  19 00 0 SWN   0.0  0.0   0:00 ksoftirqd_CPU0
4 root  19  19 00 0 SWN   0.0  0.0   0:00 ksoftirqd_CPU1
5 root  18  19 00 0 SWN   0.0  0.0   0:00 ksoftirqd_CPU2
6 root  18  19 00 0 SWN   0.0  0.0   0:00 ksoftirqd_CPU3

good luck

dave

-- 
Dave Mallery, K5EN  (debian testing & woody)  
PO Box 520 .~._  Ramah,  NM  87321 
   /V\   -o)
no gates...   /( )\  /\\ running Debian GNU/Linux
  no windows! ^ _\_vfree at last!


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




Re: boo lexmark (was: Which USB portable memory?)

2002-12-20 Thread Bob Nielsen

On Fri, Dec 20, 2002 at 11:52:58AM -0800, Vineet Kumar wrote:
> * p ([EMAIL PROTECTED]) [021220 11:45]:
> > hi,
> > 
> > for my sd/mmc (secure digital/multimedia
> > card), sandisk works flawlessly, mounted
> > as /dev/sda1.  
> > 
> > a lexmark card reader is frigid towards my
> > linux box.  ergo, ...can't recommend lexmark.
> 
> lexmark also makes printers that won't work without windows, which is
> why we wouldn't want our wages in their wallets.
> 
> good times,
> Vineet

But so most of the others, and if we avoided all manufacturers who make
winprinters, the choice would be pretty meager.  One does need to check
the specs before buying (the lower-end stuff is most suspect).  Lexmark
also makes printers with built-in PostScript, which is, in general,
better supported in Linux than Windows.  I'm quite pleased with my
<$300 Optra E312, which understands both PS and PCL.

Bob


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




个人创业当老板首选项目,金属艺术刻绘机

2002-12-20 Thread lotoinfo






Who have S3TrioV2/.. video card, which work under X version 4.2. ?

2002-12-20 Thread Egor Tur
Hi folk.
Who have S3TrioV2/.. video card, which work under X version 4.2.
I can only use X with resolution 640x480 and depth 8.
Are there other drivers for this card that work under X (4.1.., 4.2..)?
Tnanx.


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




Re: spurious 8295A interrupt: IRQ7

2002-12-20 Thread Seneca
On Fri, Dec 20, 2002 at 03:55:05PM -0600, Jamin W. Collins wrote:
> On Fri, Dec 20, 2002 at 04:54:53PM -0500, Seneca wrote:
> 
> > Check the archives.
> > 
> > http://lists.debian.org/debian-usr/2002/debian-user-200206/msg03028.html
> 
> That should be:
> 
>http://lists.debian.org/debian-user/2002/debian-user-200206/msg03028.html
> 
> subtle but distinct difference.

Sorry about that. I shouldn't post while half-asleep (a noisy UPS in the
night followed by school is not the greatest combination).

-- 
Seneca
[EMAIL PROTECTED]


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




compaq 1600r's with Debian 2.4.18-686-smp

2002-12-20 Thread Thing
Hi,

I have 2 of these running dual p2-450 cpus, the problem is on neither machine 
cat /proc/cpuinfo shows the second cpu, ive swapped the cpu's about and 
booted with 1 cpu at at time and the server still boots so this suggests the 
hardware / cpus are fine.

anybody know a fix?

Im using standard smp debian kernels, eg 

apt-get install kernel-image-2.4.18-686-smp

So im a bit stumped.

regards

Steven 


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




Re: bash

2002-12-20 Thread Vineet Kumar
* Pigeon ([EMAIL PROTECTED]) [021218 20:26]:
> On Wed, Dec 18, 2002 at 04:45:19PM -0600, Dave Sherohman wrote:
> > environment.  I'm sure you can see that profiles would be much less
> > useful if they were executed instead of sourced...
> 
> And there was me thinking in my fuzzy way that that was why they
> exported variables instead of just setting them.

Well, that's wrong too (not to steal all your fuzz =)

exporting variables makes them available in child processes, not parent
processes.  So if your shell runs a subshell that exports variables and
then exits, the net effect will be zero.  Try it:

$ ( export FOO=bar ; echo $FOO )
$ echo $FOO

good times,
Vineet
-- 
http://www.doorstop.net/
-- 
http://www.eff.org/



msg20335/pgp0.pgp
Description: PGP signature


Re: simple exim configuration

2002-12-20 Thread Alan Chandler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 20 December 2002 8:03 pm, Paul Scott wrote:
> David H. Clymer wrote:
> >On Fri, 2002-12-20 at 14:13, Paul Scott wrote:
> >>Ok.  My /etc/exim/exim.conf has:
> >>
> >>local_delivery:
> >>  driver = appendfile
> >>  group = mail
> >>  mode = 0660
> >>  mode_fail_narrower = false
> >>  envelope_to_add = true
> >>  return_path_add = true
> >>  file = /var/spool/mail/${local_part}
> >>
> >>but mutt tells me that /var/spool/mail/paul is not a mailbox.
> >
> >what does: ls /var/mail/paul tell you? is it a file, or a directory?
>
> It's a valid mail file according to /usr/bin/mail

What are the file access rights.  It should have set the user to "paul" and 
the group to "mail" (user is set in the director that directs it to 
local_delivery) but if its not then it might not be readable




> >${local_part} is taken from the recipiant's email address. if someone
> >sent you an email (to: [EMAIL PROTECTED]) the exim splits up the address on
> >the @ and sets two variables:
> >
> >local_part: paul
> >domain: foo.com
>
> What process does that substitution?


Its all inside exim its part of recognising the e-mail address and 
manipulating it.



- -- 
Alan Chandler
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+A5qkuFHxcV2FFoIRAp0RAJ99xEnf17eiI2kJrde2HtrygTGmdACcC26F
3cMZZSA5ls81Dk3a9m2Tauk=
=mLmD
-END PGP SIGNATURE-


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




Re: Handspring Visor hotsync problem

2002-12-20 Thread nate
Bret Comstock Waldow said:

> Hotsync doesn't happen at all (works in my Redhat with gnome-pilot) and
> pilot-xfer starts sync'ing, transfers a variable number of files, then
> fails on the Visor.  I've done it several times, and it fails on
> different files, so it isn't db file specific.

I've only used jpilot and pilot-xfer, never tried evolution or
anything else ..

what does the kernel log say?(dmesg). I have not exeperienced the
symtoms you describe since the visor support first came out more then
2 years ago, the solution at the time was to use a program called
coldsync, which did something that was more compadible, I think whatever
coldsync did was incorporated into pilot-xfer in a more recent release
as I haven't seen the problem in ages.

I have 2 visors, 1 deluxe and 1 prism, and both work ok, the only
problems I have is sometimes the visor is not detected when I hit
the hotsync button(usually on the deluxe, the cradle is old), but
once I can establish a transfer the transfer always completes successfully.

another thing to check is, is the USB adapter conflicting with any
other devices? on my laptop under 2.2.x I could not seem to use my
USB camera and I think I couldn't use my USB visor while I had my
sound modules loaded, I suppose because of conflicting irqs, since
both devices were on the same IRQ. I upgraded to 2.4.20 about a week
ago for testing and haven't seen that problem yet.

perhaps the log will provide more info.

I don't sync my visors to my computer at all, only time I connect
them is to do a full backup(which is rare since i have backup
springboard modules), or to install a new program.

good luck

nate




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




Re: Handspring Visor hotsync problem

2002-12-20 Thread Bret Comstock Waldow
On Fri, 2002-12-20 at 14:56, nate wrote:
>  
> Bret Comstock Waldow said:
> 
> > Directly attempting the hotsync with pilot-link, a la the HowTo, gets a
> > message about pi_bind:
> >Unable to bind to port /dev/ttyUSB1
> >pi_bind: Permission denied
> 
> should be fairly simple, the userid your using does not have access
> to /dev/ttyUSB1
> 
> I create a group named usb, chmod /dev/ttyUSB1 660 and add myself
> to the group, be sure to logout & in again after adding yourself to
> the group.

I followed the advice on the Ximian support pages, created a group named
'sync', added my username, chown'ed the devices, set chmod to 770 and
tried again.

Hotsync doesn't happen at all (works in my Redhat with gnome-pilot) and
pilot-xfer starts sync'ing, transfers a variable number of files, then
fails on the Visor.  I've done it several times, and it fails on
different files, so it isn't db file specific.

Any thoughts?

Thanks,
Bret



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




Re: Handspring Visor hotsync problem

2002-12-20 Thread Bret Comstock Waldow
On Fri, 2002-12-20 at 15:06, David H. Clymer wrote:
>  
> Could you be so kind as to point me to the place where I can find the
> visor module option in make menuconfig? I cant seem to find it. Maybe
> I'm looking the wrong place. I'm using v2.4.18 BTW.

I'm afraid I can't.  I'm not working with compiling the kernel.

Did you look under the USB devices?  The Visors have USB cradles, and
syncing via the cradle is what the module is for.

Cheers,
Bret



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




Re: ALSA module snd-detect missing (not found; but issue now moot)

2002-12-20 Thread Joseph Barillari
> "c" == csj  <[EMAIL PROTECTED]> writes:

c> At Thu, 19 Dec 2002 13:52:50 -0500,
c> Joseph Barillari wrote:

>> The alsaconf package in unstable uses a module called
>> snd-detect to detect installed sound cards:

c> [...]

c> Just to be sure, what version of alsaconf are you talking about?
c> The only one I could apt-get is alsaconf-0.4.3b, which is
c> confirmed to be brain-damaged WRT the newer alsa 0.9 releases.

I mooted this problem by ditching ALSA: I read the Debian sound HOWTO
(http://www.tux.org/~tbr/sound-debian/), used isapnptools to configure
the card, and loaded the appropriate modules.

If anyone else has an IBM PC 300PL with a CS4235 (CS4235B, according
to a spec sheet I found), I've attached my isapnp.conf file. I used
modconf to configure the cs4232 module (kernel 2.4.19-686) with the
parameters "io=0x532 irq=5 dma=1 dma2=0", and added the users on the
system to the audio group so they could write to the audio
devices. All seems well. (Translation: I can play mp3s. I have yet to
make /dev/sequencer work -- maybe it's a hardware problem; maybe it's
a configuration error. Either way, MIDI isn't a priority for me.)

--Joe


# 
# For details of this file format, see isapnp.conf(5)
#
# LD n = Logical device, ie write to reg 7
# IO n = IO descriptor n
# BASE n = IO/Mem address
# INT n = Interrupt req n
# IRQ n = Interrupt level
# MODE = line levels etc
# ACT = Activate

#(debug)
#(IGNORECRC)
#(READPORT 0x3bb)
#(ISOLATE)
#(IDENTIFY *)
#(CONFIGURE DFX/1493 (LD 0 (IO 0 (BASE 0x3e8)) (INT 0 (IRQ 12 (MODE +E))) (ACT Y)))
#(CONFIGURE DFX/1493 (LD 0 (REG 7 (PEEK)) (REG 0x30 (PEEK
#(CONFIGURE DFX/1493 (LD 1 (REG 7 (PEEK)) (REG 0x30 (PEEK
# Try to force logical device 2 (which doesn't exist)...
#(CONFIGURE DFX/1493 (LD 1 (REG 7 (POKE 2) (PEEK)) (REG 0x30 (PEEK
# .. hence this gives an error
#(CONFIGURE DFX/1493 (LD 2 (REG 7 (PEEK)) (REG 0x30 (PEEK
#(WAITFORKEY)



msg20330/pgp0.pgp
Description: PGP signature


Re: spurious 8295A interrupt: IRQ7

2002-12-20 Thread Jamin W. Collins
On Fri, Dec 20, 2002 at 04:54:53PM -0500, Seneca wrote:

> Check the archives.
> 
> http://lists.debian.org/debian-usr/2002/debian-user-200206/msg03028.html

That should be:

   http://lists.debian.org/debian-user/2002/debian-user-200206/msg03028.html

subtle but distinct difference.

-- 
Jamin W. Collins


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




Re: TV / Radio card modules and software? Outlook calendar sharing?

2002-12-20 Thread Jamin W. Collins
On Fri, Dec 20, 2002 at 09:47:52PM +, Andrew M. A. Cater wrote:
> I've acquired a brand-new Hauppage Primio FM WinTV card.
> 
> I guess it will work with the bt848?? modules and the corresponding
> radio module - is there any software to effect the tuning and so on.

If it does work with the bt drivers, then it should be controllable with
xawtv or any of the similar applications.

-- 
Jamin W. Collins


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




Re: spurious 8295A interrupt: IRQ7

2002-12-20 Thread Seneca
On Fri, Dec 20, 2002 at 04:05:13PM -0500, Thomas H. George,,, wrote:
> Does anyone know what causes this?

Check the archives.

http://lists.debian.org/debian-usr/2002/debian-user-200206/msg03028.html

-- 
Seneca
[EMAIL PROTECTED]


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




TV / Radio card modules and software? Outlook calendar sharing?

2002-12-20 Thread Andrew M. A. Cater
I've acquired a brand-new Hauppage Primio FM WinTV card.

I guess it will work with the bt848?? modules and the corresponding
radio module - is there any software to effect the tuning and so on.
[I have a Windows drivers disk which is useless.]

Second question: I'm about to build a Debian server for a charity
to act as their mailhub, printserver et. al.  One of the users
wants an MS Exchange server "to support calendar sharing in Outlook"
- any clues as to how I can do this using only Linux?

Any help much appreciated 

Andy

[Please CC me on this one: not currently subscribed to -user]


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




Re: simple exim configuration

2002-12-20 Thread David H. Clymer
> >>
> >${local_part} is taken from the recipiant's email address. if someone
> >sent you an email (to: [EMAIL PROTECTED]) the exim splits up the address on
> >the @ and sets two variables:
> >
> >local_part: paul
> >domain: foo.com
> >
> What process does that substitution?

I'm not exactly sure, to be honest...

I tried a little experiment below

woody:/usr/src/linux# exim -d8 -bt david
Exim version 3.35 debug level 8 uid=0 gid=0
Berkeley DB: Sleepycat Software: Berkeley DB 2.7.7: (08/20/99)
Caller is an admin user
Caller is a trusted user
user name "root" extracted from gecos field "root"
address david@woody
  local_part=david domain=woody
  domain is local
system_aliases director: lsearch key=david
  file="/etc/aliases"
system_aliases director declined for david: 
userforward director: file = .forward
set uid=0 gid=0 euid=1000 egid=1000
successful stat of /home/david/.
/home/david/.forward not found
restored uid=0 gid=0 euid=8 egid=8
queued for local_delivery transport: local_part=david domain=woody
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
localuser director succeeded for david
david@woody
  deliver to david in domain woody
  director = localuser, transport = local_delivery

I guess the debugging above indicates that it is set prior to any of the
delivery facilities configured in exim.conf...I dont know...is this
useful? maybe I'm not sure what info you are trying to find.

> 
> >so if you were doing multiple domains on one box, you could do:
> >
> >file = /var/spool/mail/${domain}/${local_part}
> >
> >or some such.
> >
> That part was clear.  I was just expecting local_part to be something 
> that I set somewhere else in exim.conf.

I think those are set at delivery time. if you were able to set them in
the config file, it would seem to me that all your mail would get dumped
in one box.

davidc



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




spurious 8295A interrupt: IRQ7

2002-12-20 Thread Thomas H. George,,,
Does anyone know what causes this?


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



boot deadlock

2002-12-20 Thread eric
Dear Rob:

  In the 2.4.20,  the last line of boot is
start pppd link-

then everything stop there no matter what keyborard I push
after I enter save mode, fsck /dev/hdc2
startx
it showed
hostname(none)

but I do put a line in my /etc/hostname
www.linuxspice.com

and it work before

also pppoeconf
it can detect a card but another pppoe may use it

also since it is stop at pppd, so I want to rename or remove /usr/bin/pppd,
but my mv or rm both not work
read only file(I did submit my root 's password)

Please help
Sincere Eric
www.linuxspice.com
linux/window pc for sale


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




Re: Which USB portable memory?

2002-12-20 Thread Dave W
On Fri, 2002-12-20 at 15:38, Craig Dickson wrote:
> Lars Jensen wrote:
> 
> > Which brand name portable USB memory works well with linux? I'm thinking
> > about getting something like a SanDisk Cruzer or an ImageMate w/Secure
> > Digital media, but I'm not sure if it will work.

Are you looking to find out specifically BRAND names, or TYPES?  I've
got a 7-in-1 reader/writer, and I've successfully handled SmartMedia
branded SMC media, Sony branded memory sticks, and a no-name compact
flash card.  I'll tell you about  XD-photo memory after I open my
Christmas presents - I think that's Olympus' brand.

dave w


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




Re: Procmail attachment filtering

2002-12-20 Thread John Conover
http://www.johncon.com/john/QuarantineAttachments/ has a regex that
you can hack ...

John

Tom Badran writes:
> On Friday 20 Dec 2002 10:14 am, Oliver Fuchs wrote:
> > I found this:
> > :0
> >
> > * [ ]*(Content|(file)?name=).*\.(scr|exe|p(if|as)|v(bs|xd)|ba[kt]|\
> >   wab|cp(p|l)|asp|xls|mpe?g|reg|ini|d(iz|ll)|sys)
> > { do stuff }
> 
> I tried this but it seems to filter out _all_ messages. Any chance you 
> possibly made a typo? I dont know enough about procmail to spot any mistakes 
> in your filter.
> 
-- 

John Conover, [EMAIL PROTECTED], http://www.rahul.net/~conover


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




Re: changing the IRQ number

2002-12-20 Thread Seneca
On Fri, Dec 20, 2002 at 03:49:32PM -0200, Osvaldo Mundim Junior wrote:
> I want to change the IRQ number of a onboard NIC (realtek 8100) because I 
> have another hardware using it. I'm trying to use setpci, but I dont know the 
> slot's number to set it up.
> 
> How can I get the slot number of a onboard NIC (doesn't have one?) ?
> 
> Somebody can give a instruction?

Take a look at the output of lspci. At the beginning of the output for
each device there is a set of numbers like 00:0b.0. Their format is
:., so you just feed the appropriate numbers to setpci
without converting them to decimal.

-- 
Seneca
[EMAIL PROTECTED]


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




qt problems ...

2002-12-20 Thread daves debian
I am trying to upgrade my woody KDE to 3.0.4, Ive done this in the past with 
red hat AOK but am having problems with debian.

My KDE is in /opt/kde3
My qt is in /opt/kde3/qt

I setup my variables with the following script ...

#! /bin/sh

KDEDIR=/opt/kde3
QTDIR=$KDEDIR/qt
PATH=$QTDIR/bin:$KDEDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib:$LD_LIBRARY_PATH

export KDEDIR QTDIR PATH MANPATH LD_LIBRARY_PATH

I then moved to the qt directory
did a  

./configure -system-zlib -qt-gif -system-libpng \
-system-libjpeg -plugin-imgfmt-mng -thread -no-stl \
-no-xinerama -no-g++-exceptions

All OK so far 
Then did a make
I got the following .


debian:/opt/kde3/qt# make
make[1]: Entering directory `/opt/kde3/qt'
cd qmake && make
make[2]: Entering directory `/opt/kde3/qt/qmake'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/opt/kde3/qt/qmake'
cd src/moc && make
make[2]: Entering directory `/opt/kde3/qt/src/moc'
make[2]: Nothing to be done for `first'.
make[2]: Leaving directory `/opt/kde3/qt/src/moc'
cd src && make
make[2]: Entering directory `/opt/kde3/qt/src'
g++ -c -pipe -fno-exceptions -Wall -W -O2 -D_REENTRANT -fPIC -DQT_SHARED 
-DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_THREAD_SUPPORT -DQT_NO_NIS 
-DQT_NO_XINERAMA -DQT_NO_XFTFREETYPE -DQT_NO_REMOTE -DQT_NO_IMAGEIO_MNG 
-DQT_NO_IMAGEIO_JPEG -DQT_BUILTIN_GIF_READER=1 -DQT_NO_STYLE_AQUA 
-DQT_NO_STYLE_MAC -DQT_NO_STYLE_INTERLACE -DQT_NO_STYLE_COMPACT 
-I/opt/kde3/qt/include -I/usr/X11R6/include -I.moc/release-mt/ 
-I/opt/kde3/qt/mkspecs/linux-g++ -o .obj/release-mt/qpngio.o kernel/qpngio.cpp
kernel/qpngio.cpp:45: png.h: No such file or directory
kernel/qpngio.cpp:59: `png_structp' was not declared in this scope
kernel/qpngio.cpp:59: parse error before `,'
kernel/qpngio.cpp: In function `void iod_read_fn(...)':
kernel/qpngio.cpp:61: `png_ptr' undeclared (first use this function)
kernel/qpngio.cpp:61: (Each undeclared identifier is reported only once
kernel/qpngio.cpp:61: for each function it appears in.)
kernel/qpngio.cpp:61: implicit declaration of function `int 
png_get_io_ptr(...)'kernel/qpngio.cpp:64: `length' undeclared (first use this 
function)
kernel/qpngio.cpp:65: `data' undeclared (first use this function)
kernel/qpngio.cpp:67: implicit declaration of function `int png_error(...)'
kernel/qpngio.cpp: At top level:
kernel/qpngio.cpp:76: parse error before `,'
kernel/qpngio.cpp:90: parse error before `)'
kernel/qpngio.cpp:103: type specifier omitted for parameter
kernel/qpngio.cpp:103: parse error before `,'
kernel/qpngio.cpp: In function `void setup_qt(...)':
kernel/qpngio.cpp:105: `screen_gamma' undeclared (first use this function)
kernel/qpngio.cpp:105: `info_ptr' undeclared (first use this function)
kernel/qpngio.cpp:105: `PNG_INFO_gAMA' undeclared (first use this function)
kernel/qpngio.cpp:105: implicit declaration of function `int 
png_get_valid(...)'kernel/qpngio.cpp:107: implicit declaration of function 
`int png_get_gAMA(...)' kernel/qpngio.cpp:108: implicit declaration of 
function `int png_set_gamma(...)'kernel/qpngio.cpp:111: `png_uint_32' 
undeclared (first use this function)
kernel/qpngio.cpp:111: parse error before `;'
kernel/qpngio.cpp:115: `width' undeclared (first use this function)
kernel/qpngio.cpp:115: `height' undeclared (first use this function)
kernel/qpngio.cpp:116: implicit declaration of function `int 
png_get_IHDR(...)' kernel/qpngio.cpp:118: `PNG_COLOR_TYPE_GRAY' undeclared 
(first use this function)
kernel/qpngio.cpp:121: implicit declaration of function `int 
png_set_invert_mono(...)'
kernel/qpngio.cpp:122: implicit declaration of function `int 
png_read_update_info(...)'
kernel/qpngio.cpp:123: `image' undeclared (first use this function)
kernel/qpngio.cpp:128: implicit declaration of function `int 
png_set_strip_16(...)'
kernel/qpngio.cpp:130: implicit declaration of function `int 
png_set_packing(...)'
kernel/qpngio.cpp:138: `PNG_INFO_tRNS' undeclared (first use this function)
kernel/qpngio.cpp:149: `PNG_COLOR_TYPE_PALETTE' undeclared (first use this 
function)
kernel/qpngio.cpp:149: `PNG_INFO_PLTE' undeclared (first use this function)
kernel/qpngio.cpp:189: implicit declaration of function `int 
png_set_expand(...)'
kernel/qpngio.cpp:191: `PNG_COLOR_TYPE_GRAY_ALPHA' undeclared (first use this 
function)
kernel/qpngio.cpp:192: implicit declaration of function `int 
png_set_gray_to_rgb(...)'
kernel/qpngio.cpp:197: `PNG_COLOR_MASK_ALPHA' undeclared (first use this 
function)
kernel/qpngio.cpp:201: `PNG_FILLER_BEFORE' undeclared (first use this 
function) kernel/qpngio.cpp:201: `PNG_FILLER_AFTER' undeclared (first use 
this function)
kernel/qpngio.cpp:201: implicit declaration of function `int 
png_set_filler(...)'
kernel/qpngio.cpp:208: implicit declaration of function `int 
png_set_swap_alpha(...)'
kernel/qpngio.cpp:216: implicit declaration of function `int png_set_bgr(...)'
kernel/qpngio.cpp: At top level:
kernel/qpngio.cpp:224: `png_structp' was not declared

Re: Which USB portable memory?

2002-12-20 Thread Craig Dickson
Lars Jensen wrote:

> Which brand name portable USB memory works well with linux? I'm thinking
> about getting something like a SanDisk Cruzer or an ImageMate w/Secure
> Digital media, but I'm not sure if it will work.

There are reports of the Cruzer working with SuSE 8.0, so apparently it
can be done.

Some ImageMate models work with Linux, and some don't, because some of
them are USB Mass Storage devices, and some aren't. I think there is a
custom driver in the Linux kernel for one of the non-USB-storage
ImageMates, but I don't recall offhand which one.

Craig




msg20318/pgp0.pgp
Description: PGP signature


free alternative to xwin32 anyone?

2002-12-20 Thread sean finney
hi all,

so i'm back home for the holidays, and unfortunately sitting at a
windows 98 machine.  now lately i've really gotten used to x-forwarding
certain applications off of a central server (like my licq/aim programs
for example), and would like to do so here as well.  in the past i've
used xwin32, which does exactly what i want, but for me to continue
using it would raise not only moral but also legal implications...

i've looked at cygwin, and i haven't been able to get it to work in the
same way--it wants to open its own x-session in a separate window, and
then x applications show up in there, whereas i want them to show up on
the desktop like any other app.

does anyone have any experience, ideas, or recommendations about this?


thanks,
sean



msg20317/pgp0.pgp
Description: PGP signature


Re: Which USB portable memory?

2002-12-20 Thread Craig Dickson
p wrote:

> for my sd/mmc (secure digital/multimedia
> card), sandisk works flawlessly, mounted
> as /dev/sda1.  

Some of SanDisk's USB card readers are USB-storage compatible, and some
aren't -- and of those that aren't, one or two have custom drivers
available in the Linux kernel, but most don't. This means that some
SanDisk USB card readers work with Linux (with a recent 2.4 kernel,
suitably configured), and some don't.

I have had good luck with two models: the SDDR-33 CompactFlash reader,
and the SDDR-75 dual-slot CompactFlash/SmartMedia reader. I would expect
that the similar SDDR-73 (CompactFlash/Multimedia SD) and SDDR-77
(CompactFlash/MemoryStick) would also work.

Craig




msg20316/pgp0.pgp
Description: PGP signature


Re: Procmail attachment filtering

2002-12-20 Thread Tom Badran
On Friday 20 Dec 2002 10:14 am, Oliver Fuchs wrote:
> I found this:
> :0
>
> * [ ]*(Content|(file)?name=).*\.(scr|exe|p(if|as)|v(bs|xd)|ba[kt]|\
>   wab|cp(p|l)|asp|xls|mpe?g|reg|ini|d(iz|ll)|sys)
> { do stuff }

I tried this but it seems to filter out _all_ messages. Any chance you 
possibly made a typo? I dont know enough about procmail to spot any mistakes 
in your filter.

Tom


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




Re: Procmail attachment pruning (was Procmail attachment filtering)

2002-12-20 Thread Tom Badran
On Friday 20 Dec 2002 6:46 pm, [EMAIL PROTECTED] wrote:
> For some reason I read Tom's problem differently. Does somebody
> have a rule to remove the attachment and retain the text of an
> email? Or how do you disentangle the text from an email that has
> both text and html parts (as if there are mail readers that can't
> handle pure text mail)?

I didnt mean to filter out attachments and leave text, i did mean just to dump 
all messages that contain potentially viral attachments, as there is 0 chance 
that someone would send me a valid email containing such an attachment.

Tom


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




Re: Handspring Visor hotsync problem

2002-12-20 Thread David H. Clymer
Could you be so kind as to point me to the place where I can find the
visor module option in make menuconfig? I cant seem to find it. Maybe
I'm looking the wrong place. I'm using v2.4.18 BTW.

davidc

On Fri, 2002-12-20 at 14:39, Bret Comstock Waldow wrote:
> I just installed Woody r1 (presumably, as I connected to sources on the
> net while installing, and it downloaded a lot of stuff).  I included
> pilot-link, gnome-pilot, evolution, and the things they each said they
> depended on.  The kernel is 2.2.20.
> 
> I have been running Redhat 7.3, and have been reliably synch'ing my
> Handspring Visor Prism for months.  I know this works - I've been doing
> it.
> 
> It's not happening with Debian so far though.  I've appended some
> information at the end of this message.
> 
> The visor modules reports as loaded, but the error message seems to say
> it's not.  I'm not at all sure how to proceed from here.  I've read the
> Visor mini-HowTo - that's how I got it working in Redhat.  Nothing in
> that document seems relevant here - I followed all the steps again, and
> that doesn't seem to be it.  This appears to be the relevant issue:
> 
> Dec 20 10:50:37 ganesha /etc/hotplug/usb.agent: missing kernel or user
> mode driver visor 
> 
> lsmod says the visor modules is loaded.
> 
> Directly attempting the hotsync with pilot-link, a la the HowTo, gets a
> message about pi_bind:
>Unable to bind to port /dev/ttyUSB1
>pi_bind: Permission denied
> 
> 
> Any thoughts, please?
> 
> Bret
> 
> 
> Two attempts to hotsync - and the results from /var/log/messages:
> 
> Dec 20 10:49:50 ganesha kernel: hub.c: USB new device connect on bus1/1,
> assigned device number 3
> Dec 20 10:49:50 ganesha kernel: usb.c: USB new device connect, assigned
> device number 3
> Dec 20 10:49:50 ganesha kernel: usb.c: USB device 3 (vend/prod
> 0x82d/0x100) is not claimed by any active driver.
> Dec 20 10:49:50 ganesha /etc/hotplug/usb.agent: Setup visor for USB
> product 82d/100/0100
> Dec 20 10:49:50 ganesha kernel: usbserial.c: USB Serial support
> registered for Generic
> Dec 20 10:49:50 ganesha kernel: usb.c: registered new driver serial
> Dec 20 10:49:50 ganesha kernel: usbserial.c: v1.0.0:USB Serial Driver
> core
> Dec 20 10:49:50 ganesha kernel: usbserial.c: USB Serial support
> registered for Handspring Visor
> Dec 20 10:49:50 ganesha kernel: usbserial.c: Handspring Visor converter
> detected
> Dec 20 10:49:50 ganesha kernel: visor.c: Handspring Visor: Number of
> ports: 2
> Dec 20 10:49:50 ganesha kernel: visor.c: Handspring Visor: port 1, is
> for Generic use and is bound to ttyUSB0
> Dec 20 10:49:50 ganesha kernel: visor.c: Handspring Visor: port 2, is
> for HotSync use and is bound to ttyUSB1
> Dec 20 10:49:50 ganesha kernel: usbserial.c: Handspring Visor converter
> now attached to ttyUSB0 (or usb/tts/0 for devfs)
> Dec 20 10:49:50 ganesha kernel: usbserial.c: Handspring Visor converter
> now attached to ttyUSB1 (or usb/tts/1 for devfs)
> Dec 20 10:49:50 ganesha kernel: visor.c: v1.0.0:USB HandSpring Visor
> driver
> Dec 20 10:49:50 ganesha /etc/hotplug/usb.agent: missing kernel or user
> mode driver visor 
> Dec 20 10:49:57 ganesha kernel: usb.c: USB disconnect on device 3
> Dec 20 10:49:57 ganesha kernel: usbserial.c: Handspring Visor converter
> now disconnected from ttyUSB0
> Dec 20 10:49:57 ganesha kernel: usbserial.c: Handspring Visor converter
> now disconnected from ttyUSB1
> Dec 20 10:50:37 ganesha kernel: hub.c: USB new device connect on bus1/1,
> assigned device number 4
> Dec 20 10:50:37 ganesha kernel: usb.c: USB new device connect, assigned
> device number 4
> Dec 20 10:50:37 ganesha kernel: usbserial.c: Handspring Visor converter
> detected
> Dec 20 10:50:37 ganesha kernel: visor.c: Handspring Visor: Number of
> ports: 2
> Dec 20 10:50:37 ganesha kernel: visor.c: Handspring Visor: port 1, is
> for Generic use and is bound to ttyUSB0
> Dec 20 10:50:37 ganesha kernel: visor.c: Handspring Visor: port 2, is
> for HotSync use and is bound to ttyUSB1
> Dec 20 10:50:37 ganesha kernel: usbserial.c: Handspring Visor converter
> now attached to ttyUSB0 (or usb/tts/0 for devfs)
> Dec 20 10:50:37 ganesha kernel: usbserial.c: Handspring Visor converter
> now attached to ttyUSB1 (or usb/tts/1 for devfs)
> Dec 20 10:50:37 ganesha /etc/hotplug/usb.agent: Setup visor for USB
> product 82d/100/0100
> Dec 20 10:50:37 ganesha /etc/hotplug/usb.agent: missing kernel or user
> mode driver visor 
> Dec 20 10:50:42 ganesha kernel: usb.c: USB disconnect on device 4
> Dec 20 10:50:42 ganesha kernel: usbserial.c: Handspring Visor converter
> now disconnected from ttyUSB0
> Dec 20 10:50:42 ganesha kernel: usbserial.c: Handspring Visor converter
> now disconnected from ttyUSB1
> 
> lsmod:
> 
> Module  Size  Used by
> visor   6828   0  (unused)
> usbserial  16020   0  [visor]
> irtty   5020   2  (autoclean)
>

Re: simple exim configuration

2002-12-20 Thread Paul Scott
David H. Clymer wrote:


On Fri, 2002-12-20 at 14:13, Paul Scott wrote:
 

Ok.  My /etc/exim/exim.conf has:

local_delivery:
 driver = appendfile
 group = mail
 mode = 0660
 mode_fail_narrower = false
 envelope_to_add = true
 return_path_add = true
 file = /var/spool/mail/${local_part}

but mutt tells me that /var/spool/mail/paul is not a mailbox.
   


what does: ls /var/mail/paul tell you? is it a file, or a directory?


It's a valid mail file according to /usr/bin/mail


BTW /var/spool/mail is just a symlink to /var/mail, hence my use of it
above.


Understood.


BTW the way where is local_part defined?

   

${local_part} is taken from the recipiant's email address. if someone
sent you an email (to: [EMAIL PROTECTED]) the exim splits up the address on
the @ and sets two variables:

local_part: paul
domain: foo.com


What process does that substitution?


so if you were doing multiple domains on one box, you could do:

file = /var/spool/mail/${domain}/${local_part}

or some such.


That part was clear.  I was just expecting local_part to be something 
that I set somewhere else in exim.conf.

Thanks,

Paul


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



Re: slowdown when reading from block devices

2002-12-20 Thread nate
Wim De Smet said:
> Hi,
>
> I've noticed in my (woody based) testing/unstable that when I access block
> devices such as (very obvious off course) my hard disk or my cd-rom
> device, my system hangs for short moments. Meaning heavier and longer than
> you would expect it to on an ide system. My kernel version is 2.2.20, I
> have an ata 133 ide interface if that helps any. It's especially annoying
> when ripping a cd and in the mean time trying to play some music (with
> xmms for example). My system is pretty fast in and of its own so the
> hardware shouldn't be an issue.
>
> Can anybody help me out, maybe something to do with buffers or the likes?

sounds like it could be a DMA issue. What kind of controller? my Promise
ATA/100 controllers have a proc entry in /proc/ide which gives a good
deal of info about the controller, the DMA mode etc..

cat /proc/ide/pdc202xx

PDC20267 Chipset.
--- General Status
-
Burst Mode   : enabled
Host Mode: Normal
Bus Clocking : 66 External
IO pad select: 10 mA
Status Polling Period: 0
Interrupt Check Status Polling Delay : 2
--- Primary Channel  Secondary Channel
-
enabled  enabled
66 Clocking enabled  disabled
   Mode PCI Mode PCI
FIFO Empty   FIFO Empty
--- drive0 - drive1  drive0 -- drive1
--
DMA enabled:yes  yes yes   yes
DMA Mode:   UDMA 4   UDMA 4  NOTSETNOTSET
PIO Mode:   PIO 4PIO 4   NOTSETNOTSET


hdparm can be used to manipulate IDE settings, though honestly I have
never really used it. I turn on DMA in my kernel config(I compile my
own kernels) and never had to use HD parm as far as I can remember.

your controller may have a similar entry in /proc/ide where you can
see the status ..not sure though. I am runing kernel 2.2.19 + ide
patch from www.linux-ide.org.

nate




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




Re: changing the IRQ number

2002-12-20 Thread nate
Osvaldo Mundim Junior said:
> Hi all,
>
> I want to change the IRQ number of a onboard NIC (realtek 8100) because I
> have another hardware using it. I'm trying to use setpci, but I dont know
> the slot's number to set it up.
>
> How can I get the slot number of a onboard NIC (doesn't have one?) ?
>
> Somebody can give a instruction?

tell the bios that that IRQ is an ISA irq and the system should re-map
to another irq. Another way, is to move the "other" hardware to another
slot. many motherboards have slots that have shared IRQs with other slots
and/or onboard devices and it is impossible to change them. usually
the first and last PCI slots are configured this way, so use them last.
check your MB manual for details.

nate




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




boo lexmark (was: Which USB portable memory?)

2002-12-20 Thread Vineet Kumar
* p ([EMAIL PROTECTED]) [021220 11:45]:
> hi,
> 
> for my sd/mmc (secure digital/multimedia
> card), sandisk works flawlessly, mounted
> as /dev/sda1.  
> 
> a lexmark card reader is frigid towards my
> linux box.  ergo, ...can't recommend lexmark.

lexmark also makes printers that won't work without windows, which is
why we wouldn't want our wages in their wallets.

good times,
Vineet
-- 
http://www.doorstop.net/
-- 
#include
int main() {
puts("Reader! Think not that \n"
 "technical information \n"
 "ought not be called speech;");
return 0;
}



msg20309/pgp0.pgp
Description: PGP signature


slowdown when reading from block devices

2002-12-20 Thread Wim De Smet
Hi,

I've noticed in my (woody based) testing/unstable that when I access
block devices such as (very obvious off course) my hard disk or my
cd-rom device, my system hangs for short moments. Meaning heavier and
longer than you would expect it to on an ide system. My kernel version
is 2.2.20, I have an ata 133 ide interface if that helps any. It's
especially annoying when ripping a cd and in the mean time trying to
play some music (with xmms for example). My system is pretty fast in and
of its own so the hardware shouldn't be an issue.

Can anybody help me out, maybe something to do with buffers or the
likes?

Thank you,
Wim


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




Re: Handspring Visor hotsync problem

2002-12-20 Thread nate
Bret Comstock Waldow said:

> Directly attempting the hotsync with pilot-link, a la the HowTo, gets a
> message about pi_bind:
>Unable to bind to port /dev/ttyUSB1
>pi_bind: Permission denied

should be fairly simple, the userid your using does not have access
to /dev/ttyUSB1

I create a group named usb, chmod /dev/ttyUSB1 660 and add myself
to the group, be sure to logout & in again after adding yourself to
the group.

nate




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




console framebuffer in Woody r1

2002-12-20 Thread Bret Comstock Waldow
I've just installed Woody r1.  (At least I was connected to an
apt-source on the net while installing and it downloaded a lot, so I
assume it's r1).

I've been using Redhat 7.3 and SuSE 7.3 before that, and I've been using
framebuffer support for my console sessions (Alt-F1, etc).

I get my 1024x768 display (128x48 text) just fine.

During install of Debian, there was a question about using framebuffer
for consoles, and I believe the answer was 'yes' (whatever it was, I
thought it made sense at the time).

Now, I boot to a GUI, but my consoles are unreadable.  They're simply
blank as installed.  If I add "vga=791" to lilo.conf, I get full-screen
scrambled versions of some of my GUI screen.

I don't even know where to start.  Is this an X86 problem, a Debian
specific issue, what was installed to do with "framebuffers" by Debian I
might need to look at, unscrew, uninstall, re-install?

Any pointers would be helpful.

Thanks in advance.

Bret





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




Re: resolved -- Re: my .muttrc is locked (i.e., read-only)

2002-12-20 Thread Vineet Kumar
* p ([EMAIL PROTECTED]) [021220 11:19]:
> debs,
> 
> firstly, thanks to all that replied.  
> i got good info.  ("world writeable, 
> vi.recover"..."glad to meet-'cha'.") 

> and thirdly, during my morning 75-mile 
> commute to denver, the thought popped 
> into my head that i could remove the 
> ~/vi.recover files, try to move the 
> contents of .muttrc to a new filename, 
> delete .muttrc, and then copy the con-
> tents of that new file back into a 
> _new_ .muttrc.
> 
> in other words: 
> 
> 1)  rm /var/tmp/vi.recover/*

That should be all you need to do.  You can skip steps 2-4.

> 2)  cat .muttrc > new_muttrc_for_testing_1a
> 
> 3)  rm .muttrc
> 
> 4)  cat new_muttrc_for_testing_1a > .muttrc
> 
> (5)) (report back to list.)

(5) is probably still a good idea, though...


good times,
Vineet
-- 
http://www.doorstop.net/
-- 
"Computer Science is no more about computers
than astronomy is about telescopes."  -- E.W. Dijkstra



msg20305/pgp0.pgp
Description: PGP signature


Re: Which USB portable memory?

2002-12-20 Thread p
On Fri, Dec 20, 2002 at 11:20:54AM -0800, Lars Jensen wrote:
> Which brand name portable USB memory works well with linux? I'm thinking
> about getting something like a SanDisk Cruzer or an ImageMate w/Secure
> Digital media, but I'm not sure if it will work.
> 
> Any info apprecuated.
> 
> Thanks,
> Lars.
> 
> --
> Lars Jensen, Truckee Meadows Community College, Reno NV 89512-3999.
> Tel: 775.673.7113 E-mail: [EMAIL PROTECTED]
> 
>

//

hi,

for my sd/mmc (secure digital/multimedia
card), sandisk works flawlessly, mounted
as /dev/sda1.  

a lexmark card reader is frigid towards my
linux box.  ergo, ...can't recommend lexmark.

ymmv.

kthxbye.

b.

//


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




Handspring Visor hotsync problem

2002-12-20 Thread Bret Comstock Waldow
I just installed Woody r1 (presumably, as I connected to sources on the
net while installing, and it downloaded a lot of stuff).  I included
pilot-link, gnome-pilot, evolution, and the things they each said they
depended on.  The kernel is 2.2.20.

I have been running Redhat 7.3, and have been reliably synch'ing my
Handspring Visor Prism for months.  I know this works - I've been doing
it.

It's not happening with Debian so far though.  I've appended some
information at the end of this message.

The visor modules reports as loaded, but the error message seems to say
it's not.  I'm not at all sure how to proceed from here.  I've read the
Visor mini-HowTo - that's how I got it working in Redhat.  Nothing in
that document seems relevant here - I followed all the steps again, and
that doesn't seem to be it.  This appears to be the relevant issue:

Dec 20 10:50:37 ganesha /etc/hotplug/usb.agent: missing kernel or user
mode driver visor 

lsmod says the visor modules is loaded.

Directly attempting the hotsync with pilot-link, a la the HowTo, gets a
message about pi_bind:
   Unable to bind to port /dev/ttyUSB1
   pi_bind: Permission denied


Any thoughts, please?

Bret


Two attempts to hotsync - and the results from /var/log/messages:

Dec 20 10:49:50 ganesha kernel: hub.c: USB new device connect on bus1/1,
assigned device number 3
Dec 20 10:49:50 ganesha kernel: usb.c: USB new device connect, assigned
device number 3
Dec 20 10:49:50 ganesha kernel: usb.c: USB device 3 (vend/prod
0x82d/0x100) is not claimed by any active driver.
Dec 20 10:49:50 ganesha /etc/hotplug/usb.agent: Setup visor for USB
product 82d/100/0100
Dec 20 10:49:50 ganesha kernel: usbserial.c: USB Serial support
registered for Generic
Dec 20 10:49:50 ganesha kernel: usb.c: registered new driver serial
Dec 20 10:49:50 ganesha kernel: usbserial.c: v1.0.0:USB Serial Driver
core
Dec 20 10:49:50 ganesha kernel: usbserial.c: USB Serial support
registered for Handspring Visor
Dec 20 10:49:50 ganesha kernel: usbserial.c: Handspring Visor converter
detected
Dec 20 10:49:50 ganesha kernel: visor.c: Handspring Visor: Number of
ports: 2
Dec 20 10:49:50 ganesha kernel: visor.c: Handspring Visor: port 1, is
for Generic use and is bound to ttyUSB0
Dec 20 10:49:50 ganesha kernel: visor.c: Handspring Visor: port 2, is
for HotSync use and is bound to ttyUSB1
Dec 20 10:49:50 ganesha kernel: usbserial.c: Handspring Visor converter
now attached to ttyUSB0 (or usb/tts/0 for devfs)
Dec 20 10:49:50 ganesha kernel: usbserial.c: Handspring Visor converter
now attached to ttyUSB1 (or usb/tts/1 for devfs)
Dec 20 10:49:50 ganesha kernel: visor.c: v1.0.0:USB HandSpring Visor
driver
Dec 20 10:49:50 ganesha /etc/hotplug/usb.agent: missing kernel or user
mode driver visor 
Dec 20 10:49:57 ganesha kernel: usb.c: USB disconnect on device 3
Dec 20 10:49:57 ganesha kernel: usbserial.c: Handspring Visor converter
now disconnected from ttyUSB0
Dec 20 10:49:57 ganesha kernel: usbserial.c: Handspring Visor converter
now disconnected from ttyUSB1
Dec 20 10:50:37 ganesha kernel: hub.c: USB new device connect on bus1/1,
assigned device number 4
Dec 20 10:50:37 ganesha kernel: usb.c: USB new device connect, assigned
device number 4
Dec 20 10:50:37 ganesha kernel: usbserial.c: Handspring Visor converter
detected
Dec 20 10:50:37 ganesha kernel: visor.c: Handspring Visor: Number of
ports: 2
Dec 20 10:50:37 ganesha kernel: visor.c: Handspring Visor: port 1, is
for Generic use and is bound to ttyUSB0
Dec 20 10:50:37 ganesha kernel: visor.c: Handspring Visor: port 2, is
for HotSync use and is bound to ttyUSB1
Dec 20 10:50:37 ganesha kernel: usbserial.c: Handspring Visor converter
now attached to ttyUSB0 (or usb/tts/0 for devfs)
Dec 20 10:50:37 ganesha kernel: usbserial.c: Handspring Visor converter
now attached to ttyUSB1 (or usb/tts/1 for devfs)
Dec 20 10:50:37 ganesha /etc/hotplug/usb.agent: Setup visor for USB
product 82d/100/0100
Dec 20 10:50:37 ganesha /etc/hotplug/usb.agent: missing kernel or user
mode driver visor 
Dec 20 10:50:42 ganesha kernel: usb.c: USB disconnect on device 4
Dec 20 10:50:42 ganesha kernel: usbserial.c: Handspring Visor converter
now disconnected from ttyUSB0
Dec 20 10:50:42 ganesha kernel: usbserial.c: Handspring Visor converter
now disconnected from ttyUSB1

lsmod:

Module  Size  Used by
visor   6828   0  (unused)
usbserial  16020   0  [visor]
irtty   5020   2  (autoclean)
irda   71341   1  (autoclean) [irtty]
tap02236   1  (autoclean)
lockd  42420   0  (autoclean) (unused)
sunrpc 57816   0  (autoclean) [lockd]
usb-uhci   18220   0  (unused)
usbcore43920   1  [visor usbserial usb-uhci]
vfat9428   2  (autoclean)
eepro100   14888   1 
nls_iso8859-8   2904   0  (unused)
nls_iso8859-15  2904   

Re: simple exim configuration

2002-12-20 Thread David H. Clymer
On Fri, 2002-12-20 at 14:13, Paul Scott wrote:
> Ok.  My /etc/exim/exim.conf has:
> 
> local_delivery:
>   driver = appendfile
>   group = mail
>   mode = 0660
>   mode_fail_narrower = false
>   envelope_to_add = true
>   return_path_add = true
>   file = /var/spool/mail/${local_part}
> 
> but mutt tells me that /var/spool/mail/paul is not a mailbox.

what does: ls /var/mail/paul tell you? is it a file, or a directory?

BTW /var/spool/mail is just a symlink to /var/mail, hence my use of it
above.

> 
> BTW the way where is local_part defined?
> 

${local_part} is taken from the recipiant's email address. if someone
sent you an email (to: [EMAIL PROTECTED]) the exim splits up the address on
the @ and sets two variables:

local_part: paul
domain: foo.com

so if you were doing multiple domains on one box, you could do:

file = /var/spool/mail/${domain}/${local_part}

or some such.


davidc


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




Procmail attachment pruning (was Procmail attachment filtering)

2002-12-20 Thread csj
On Sat, 21 Dec 2002 00:04:03 +1100,
Rob Weir wrote:
> 
> On Fri, Dec 20, 2002 at 05:10:29AM +, Tom Badran wrote:
> > Can someone give me a rule to filter out .exe attachments, or
> > any of the other kind sent by lookout viruses. I seem to get
> > 2 or 3 of these a day and i dont even run bloody windows.
> 
> :0
> * ^Content-Type: multipart/alternative
> { 
>   :0B:
>   * ^Content-Type: (application/octet-stream|audio/x-(midi|wav))
>   * ^Content-Transfer-Encoding: base64
>   spam/virii/
> }
> 
> Stolen off this list, from Colin, IIRC.

For some reason I read Tom's problem differently. Does somebody
have a rule to remove the attachment and retain the text of an
email? Or how do you disentangle the text from an email that has
both text and html parts (as if there are mail readers that can't
handle pure text mail)?


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




Which USB portable memory?

2002-12-20 Thread Lars Jensen
Which brand name portable USB memory works well with linux? I'm thinking
about getting something like a SanDisk Cruzer or an ImageMate w/Secure
Digital media, but I'm not sure if it will work.

Any info apprecuated.

Thanks,
Lars.

--
Lars Jensen, Truckee Meadows Community College, Reno NV 89512-3999.
Tel: 775.673.7113 E-mail: [EMAIL PROTECTED]


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




resolved -- Re: my .muttrc is locked (i.e., read-only)

2002-12-20 Thread p
On Fri, Dec 20, 2002 at 01:18:39AM +, p wrote:
> debs,
> 
> my .muttrc is "read-only."  i need to
> modify it, as i've been able to do
> in the past.  i don't know what i 
> did to make it r/o.  
> 
> (permissions = 666)
> 
> $ ls -la .muttrc
> 
> -rw-rw-rw-1 bt   bt   8503 Oct 31 00:13 .muttrc
> 
> 
> (i am user "bt," so i am in the group.)
> 
> $ groups
> 
> bt mail cdrom floppy audio dip postgres
> 
> 
> help is appreciated.
> 
> b.
> 
> //

//

debs,

firstly, thanks to all that replied.  
i got good info.  ("world writeable, 
vi.recover"..."glad to meet-'cha'.") 
 
secondly, i still don't know how i 
screwed up the perms.

and thirdly, during my morning 75-mile 
commute to denver, the thought popped 
into my head that i could remove the 
~/vi.recover files, try to move the 
contents of .muttrc to a new filename, 
delete .muttrc, and then copy the con-
tents of that new file back into a 
_new_ .muttrc.

in other words: 

1)  rm /var/tmp/vi.recover/*

2)  cat .muttrc > new_muttrc_for_testing_1a

3)  rm .muttrc

4)  cat new_muttrc_for_testing_1a > .muttrc

(5)) (report back to list.)

oh, yeah

kthxbye.

b.

//


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




Re: simple exim configuration

2002-12-20 Thread Paul Scott
Ok.  My /etc/exim/exim.conf has:

local_delivery:
 driver = appendfile
 group = mail
 mode = 0660
 mode_fail_narrower = false
 envelope_to_add = true
 return_path_add = true
 file = /var/spool/mail/${local_part}

but mutt tells me that /var/spool/mail/paul is not a mailbox.  

BTW the way where is local_part defined?

Thanks for any more help,

Paul



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



Re: potato -> woody: E: Internal Error, Couldn't configure a pre-depend

2002-12-20 Thread Karsten M. Self
on Fri, Dec 20, 2002 at 03:03:40PM -0300, Ricardo - Eureka! ([EMAIL PROTECTED]) 
wrote:
> I had the same problem a few months ago, when woody was released.
> 
> I had the solution this way (via http:)
> 
> 1 - apt-get update -uy
> 2 - apt-get dist-upgrade -uy
> 3 - apt-get upgrade -uy
> 
> I hope it works with you!

Thanks, I've actually got through the problem, I think (update now in
process).

Solution in my case was to shoot a few debs by hand.  I started from the
top of the list of installed packages, installing both packages listed
and their dependencies.

Packages included the following, which is probably a superset of the
actual required packages.  I suspect interactions with libc and/or perl
as being the cause of this:

binutils_2.12.90.0.1-4_i386.deb
cpp-2.95_2.95.4-7_i386.deb
cpp_2.95.4-14_i386.deb
debconf_1.0.32_all.deb
g++-2.95_2.95.4-7_i386.deb
g++_2.95.4-14_i386.deb
gcc-2.95_2.95.4-7_i386.deb
gcc_2.95.4-14_i386.deb
libc6-dev_2.2.5-6_i386.deb
libdb2_2.7.7.0-7_i386.deb
libdps1_4.1.0-16_i386.deb
libfreetype6_2.0.9-1_i386.deb
libgtk1.2-common_1.2.10-11_all.deb
libncurses5_5.2.20020112a-7_i386.deb
libstdc++2.10-dev_2.95.4-7_i386.deb
libstdc++2.10-glibc2.2_2.95.4-7_i386.deb
libxaw6-dev_4.1.0-16_i386.deb
libxaw6_4.1.0-16_i386.deb
locales_2.2.5-6_all.deb
perl-5.005_6.3_all.deb
perl-base_5.6.1-7_i386.deb
perl-modules_5.6.1-7_all.deb
perl_5.6.1-7_i386.deb
wmmon_1.0b2-8_i386.deb
xbase-clients_4.1.0-16_i386.deb
xdm_4.1.0-16_i386.deb
xfonts-scalable_4.1.0-16_all.deb
xfree86-common_4.1.0-16_all.deb
xlib6g-dev_4.1.0-16_all.deb
xlib6g_4.1.0-16_all.deb
xlibs-dev_4.1.0-16_i386.deb
xlibs_4.1.0-16_i386.deb
xserver-mach64_3.3.6-44_i386.deb
xutils_4.1.0-16_i386.deb

Peace.

-- 
Karsten M. Self <[EMAIL PROTECTED]>http://kmself.home.netcom.com/
 What Part of "Gestalt" don't you understand?
   CARP smells fishy -- keep Internet Radio alive:
 http://doc.weblogs.com/2002/03/11#crap


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




Re: simple exim configuration

2002-12-20 Thread Paul Scott
Paul Scott wrote:


David H. Clymer wrote:


Ah.  This is one of those areas I haven't quite got down:  How do I 
tell who's listening to port 25?  Do you have any suggestions as to 
what to   


you could try: lsof -i TCP:25
 

That gives me:

inetd   243 root   11u  IPv4 477720   TCP *:smtp (LISTEN)

What program/daemon is listening?

I believe that this means that inetd is listening. I'm no guru, so those
that know better, please correct me, but I believe that inetd monitors
the ports specified in its configuration file (/etc/inetd.conf) and,
using the same config file, depending on the port, and type of
connection, starts whatever program is also specified in that file to
handle it.



my /etc/inetd.conf file has the following line which tells inetd how to
handle smtp connections (the service names on the left are mapped to the
correct port using the /etc/services file, i believe).
#:MAIL: Mail, news and uucp services.
smtpstream  tcp nowait  mail/usr/sbin/exim exim -bs


Thanks so much!  my /etc/inetd.conf has the same line.  I'll see how far 
I can get from there.

Paul



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



Re: simple exim configuration

2002-12-20 Thread David H. Clymer
I just realized that I wasnt sending my replies to the list :) silly me.

davidc

-Forwarded Message-

From: David H. Clymer <[EMAIL PROTECTED]>
To: Paul Scott <[EMAIL PROTECTED]>
Subject: Re: simple exim configuration
Date: 20 Dec 2002 13:20:56 -0500


> That gives me:
> 
> inetd   243 root   11u  IPv4 477720   TCP *:smtp (LISTEN)
> 
> What program/daemon is listening?

I believe that this means that inetd is listening. I'm no guru, so those
that know better, please correct me, but I believe that inetd monitors
the ports specified in its configuration file (/etc/inetd.conf) and,
using the same config file, depending on the port, and type of
connection, starts whatever program is also specified in that file to
handle it.

my /etc/inetd.conf file has the following line which tells inetd how to
handle smtp connections (the service names on the left are mapped to the
correct port using the /etc/services file, i believe).
#:MAIL: Mail, news and uucp services.
smtpstream  tcp nowait  mail/usr/sbin/exim exim -bs


davidc



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




Re: bash

2002-12-20 Thread Michelle Konzack
Hello Bruce,

Am 16:39 2002-12-16 -0500 hat Bruce Park geschrieben:
>
>
>Dear debian users,
>
>My understanding with the original Bourne shell was that when it 
starts up,
>it will execute .profile in the users home directory. How does this 
work in
>bash? I have a .bash_profile but I know that it isn't executed since 
my PATH
>variable isn't updated everytime I log on.

How do you log in ???

From the console use .bash_profile
and under X use '.bashrc' insteed...

>bp

Michelle 


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



Re: postfix/smtpd - illegal address

2002-12-20 Thread Michelle Konzack
Hello Kevin,

Am 08:40 2002-12-16 -0500 hat Kevin Coyner geschrieben:

>Dec 16 08:30:44 sumida postfix/smtpd[26504]: warning: Illegal address  \
>syntax from localhost[127.0.0.1] in MAIL command: 
   ^
   |
  There is something missing

>Dec 16 08:30:49 sumida fetchmail[26341]: SMTP error: 501 Bad address syntax

Its normal if there is a no point between the 'netvigator' and 'com'


Michelle


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



i810 / CAM'97 sound problem - it plays mp3s too fast

2002-12-20 Thread jonas bösch
Hi, 
 
I've installed Sarge onto an ibm r32 thinkpad.. almost everything works
by now except for the sound .. all mp3's are being played wy to
fast. 
 
google told me that those shitty i810 sound chips can only play samples
with a fixed rate so all other samples have to be up/downsampled, and
that this rate could be wrong, but i have no idea how to change it ... 
 
anyone got any idea what to do? 

thanks in advance, 

jonas bösch


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




Re: need some readline tricks

2002-12-20 Thread andrej hocevar
On Wed, Dec 18, 2002 at 03:27:42PM +0100, Michael Naumann wrote:
> If you mean readline in bash, you can add
> 
> "\M-[A": history-search-backward
> 
> to your .inputrc.
> A newly started bash should then handle CURSOR-UP the way you like.

But if I add sequences that already have a meaning (like "\C-s")
it's still the old value that's in effect. Besides, how do I
represent function keys?

andrej

-- 
echo ${girl_name} > /etc/dumpdates


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




Re: potato -> woody: E: Internal Error, Couldn't configure a pre-depend

2002-12-20 Thread Ricardo - Eureka!
I had the same problem a few months ago, when woody was released.

I had the solution this way (via http:)

1 - apt-get update -uy
2 - apt-get dist-upgrade -uy
3 - apt-get upgrade -uy

I hope it works with you!

(Sorry for my english!!!)


-- 
Ricardo A.Frydman - Analista de Sistemas 
Usuario Linux Reg.# 218395 (http://counter.li.org)

Eureka! Respuestas Informaticas 
*** 
Av.Octavio Pinto 2925   (0351) 488-7049  CBA (ARG)
Lunes a Viernes 9:30 a 17:30Sábados: 9:30 a 13:30 
http://www.eureka-linux.com.ar









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




changing the IRQ number

2002-12-20 Thread Osvaldo Mundim Junior
Hi all,

I want to change the IRQ number of a onboard NIC (realtek 8100) because I
have another hardware using it. I'm trying to use setpci, but I dont know the
slot's number to set it up.

How can I get the slot number of a onboard NIC (doesn't have one?) ?

Somebody can give a instruction?

tks in advance!
Osvaldo


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




Re: simple exim configuration

2002-12-20 Thread Paul Scott
David H. Clymer wrote:


Ah.  This is one of those areas I haven't quite got down:  How do I tell 
who's listening to port 25?  Do you have any suggestions as to what to 
   


you could try: lsof -i TCP:25
 

That gives me:

inetd   243 root   11u  IPv4 477720   TCP *:smtp (LISTEN)

What program/daemon is listening?

Thanks,

Paul



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



Re: my .muttrc is locked (i.e., read-only)

2002-12-20 Thread Matthew Weier O'Phinney
-- Glyn Millington <[EMAIL PROTECTED]> wrote
(on Friday, 20 December 2002, 07:29 AM +):
> Are you editing .muttrc while mutt is running?  Does mutt lock its config
> file when it is in action? 
Mutt doesn't lock the config file while running - I've often made
changes to it while running mutt elsewhere.

As others have suggested, it's probably a problem with the OP's editor
-- it may have died unexpectedly while editing that file previously, or
a previous swap file for it may be floating around somewhere.


-- 
Matthew Weier O'Phinney
[EMAIL PROTECTED]


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




Re: 3.0r1 isos -- where?

2002-12-20 Thread bwagner
> Not out yet, AFAIK.  You could just burn an update CD with the changed
> debs though.

What's the usual turn around between the announcement of a new version
being released and the availability of its isos?

Thanks for the reply,

Bill




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




Re: Cups getting tired

2002-12-20 Thread Cam Ellison
* Florian Struck ([EMAIL PROTECTED]) wrote:
> Hash: SHA1
> 
> On Thursday 19 December 2002 04:44, Cam Ellison wrote:
> - -snip-
> > you add the printer, use ipp://name.of.server/printers/xxx is whatever
> > name you have given the printer.  Once I got the name right,
> > everything just worked.
> >
> - -snip-
> 
> I just did a dist-upgrade to sid now everything is fine.
> Thanks for suggestions.
>
You're very welcome.  If you are on a network (aren't we all, one way
or another), you may want to look at this advisory:

http://.idefense.com/advisory/12.19.02.txt

Apparently it has been fixed, but cupsys 1.1.18 is not yet available
in Debian, unless someone was _very_ busy last night.

Cam

-- 
Cam Ellison Ph.D. R.Psych.
From Roberts Creek on B.C.'s incomparable Sunshine Coast
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]


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




changing the IRQ number

2002-12-20 Thread Osvaldo Mundim Junior
Hi all,

I want to change the IRQ number of a onboard NIC (realtek 8100) because I 
have another hardware using it. I'm trying to use setpci, but I dont know the 
slot's number to set it up.

How can I get the slot number of a onboard NIC (doesn't have one?) ?

Somebody can give a instruction?

tks in advance!
Osvaldo


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




Re: Cups getting tired

2002-12-20 Thread Florian Struck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 19 December 2002 04:44, Cam Ellison wrote:
- -snip-
> you add the printer, use ipp://name.of.server/printers/xxx is whatever
> name you have given the printer.  Once I got the name right,
> everything just worked.
>
- -snip-

I just did a dist-upgrade to sid now everything is fine.
Thanks for suggestions.
Florian
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+A1OjrB0qxPd0kAgRAvanAKCIsDlkivRhPF723Z+fQ23lwvjhbwCfdrEt
A/MWgn+vFjpmcKb8pGOf2M0=
=06of
-END PGP SIGNATURE-


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




Re: Which X pkgs to hold? THANKS

2002-12-20 Thread Tony Crawford
Rob Weir wrote (on 20 Dec 2002 at 18:55):

> Ideally, you would have either used the Debian packages, or
> installed into /usr/local/X/ or something and used equivs to satisfy
> apt.  The first option is definitely superior though, especially
> since X 4.1 *is in woody*.

Thanks to Doug MacFarlane, Osamu Aoki, J. W. Dixon and Rob Weir for 
great answers.

Just to clear up why I did what I did, which people understandably 
wondered about: I needed 4.2, not 4.1 (at least, so I was told by a 
guy with the same notebook). At the time I did it, 4.2 was not in 
testing (this was a while ago; I have been very busy since then).

Now I'll try using of the Debianized 4.2 packages people indicated, 
and I will read up on libc6 issues between woody and testing before 
I decide which way to go.

You're a high-performance list, guys!

T.

-- 
-- Tony Crawford
-- [EMAIL PROTECTED]
-- +49-3341-30 99 99
-- 


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




Re: simple exim configuration

2002-12-20 Thread Paul Scott
Pigeon wrote:


On Thu, Dec 19, 2002 at 09:29:55PM -0700, Paul Scott wrote:
 

Pigeon wrote:

   

According to man fetchmail, it delivers it by SMTP to port 25, whence
it is picked up by exim or whatever other MTA you have and delivered
to wherever it has to go.


Ah.  This is one of those areas I haven't quite got down:  How do I tell 
who's listening to port 25?  Do you have any suggestions as to what to 
read to understand this.  I am an experienced programmer and some 
mechanisms I understand better than others.

I set up fetchmail by using fetchmailconf, and as with eximconfig it
just worked and I can't remember any awkwardnesses. That's the problem
with these easy config tools - when it all works you don't learn
anything.


I agree.

Thanks,

Paul


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



Re: Browser identity crisis

2002-12-20 Thread csj
On Thu, 19 Dec 2002 13:38:17 -0800,
Vineet Kumar wrote:
> 
> [1  ]
> * csj ([EMAIL PROTECTED]) [021219 11:05]:
> > A certain site's javascript afaict has checks to identify whether
> > the browser logging on is NS4 or IE4 or greater. Is there a way
> > to get Mozilla to identify itself as proprietary bro Netscrape?
> > This should be possible because I know Konqueror can do it. Using
> > Konqueror I can proceed much further in this site, but with some
> > difficulty, as the html support is less perfect than Mozilla's.
> 
> Yes.  Download the User-Agent sidebar, and you can make Mozilla
> masquerade as whatever you want it to.
> 
> http://mozilla-evangelism.bclary.com/sidebars/

The following greeted me when I reached the site ;-)

Mozilla Evangelism has moved to
http://www.mozilla.org/projects/tech-evangelism/

BTW how dangerous security-wise is downloading and installing all
these Mozilla add-ons like themes and sidebars? The only ones I
have installed are those that came with the Debian package.

The installation link appears to be a reference to an html page
containing the actual User-Agent strings:

http://mozilla-evangelism.bclary.com/sidebars/ua/index.html


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




Re: DONE

2002-12-20 Thread Rodrigo F. Baroni
 Hi all,

   The solution that I got ready:


Get and compile kernel 2.4.18, compile and install
ALSA following the instructions in file INSTALL,
setting /etc/modules.conf (has sad in INSTALL too),
ando so %modprobe mydrive


Hugs,
Merry Cristmas for all!

   Rodrigo





 Rodrigo F.
> Baroni wrote:
> > Hello all,
> > 
> >I'm not getting to set my sound card Avance
> Logic -
> > ALS4000 at Debian 3.0. There isn't any module to
> it in
> > my sndconfig.
> > 
> >Does anybody know about this card ?
> 
 

 

___
Busca Yahoo!
O melhor lugar para encontrar tudo o que você procura na Internet
http://br.busca.yahoo.com/


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




Re: need Ph.D. for sound even with common hardware?

2002-12-20 Thread Steve Juranich
On 20 Dec 2002 14:21:06 +0800, Dan Jacobson wrote:

> I suppose it is too much to ask for a simple way a simple user can use
> sound on Linux version 2.4.18-k7 with VIA VT8233 AC97 Audio
> Controller.  I looked at many a Debian Sound HowTo already.
> http://jidanni.org/comp/system.txt is what I've got.

Many people use this chipset and alsa (including myself).  I'm still
working on my master's degree, so I can assure that no Ph.D. is
necessary. :)

All of the stuff I have is from binary packages, so no compiling should
be necessary.  I know this is the "cool" way to do this, but I'm in grad
school and I don't have time to recompile kernels every few months.

You'll need a kernel to mach your system arch (of course) and the
corresponding package of alsa-modules.

At this point, you really shouldn't need to do much more.  I've got a
little bugginess in my system where I have to manually set the volumes
after every reboot, but you can do this with whatever favorite mixer
tool you use.

My output from lspci (for the device in question) is different only in
IRQ and I/O address (mine are 10 and 0xe800, but I don't think that
makes any difference).

Then, of course, there are the standard caveats about creating the
'audio' group, making sure that you're a member, log out and back in,
etc.

So what do you get when you try and play a sound file?  Are you getting
silence, error messages, or garbage?

--
Stephen W. Juranich [EMAIL PROTECTED]
Electrical Engineering http://students.washington.edu/sjuranic
University of Washingtonhttp://ssli.ee.washington.edu/ssli


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




potato -> woody: E: Internal Error, Couldn't configure a pre-depend

2002-12-20 Thread Karsten M. Self
When attempting an upgrade from Potato to Woody via either apt-get or
dselect, I get the following error:

E: Internal Error, Couldn't configure a pre-depend

This appears after placing disk 1 of the update set into the CDROM tray,
and the disk is read for several seconds.

I've researched this on Google and tracked down several related bugs,
but no solution:

   #58827
   #154670 
   #138217

Part of the problem is that the package(s) whose pre-depends is/are
failing aren't noted.  Google suggests that it's a libc issue, but I
can't confirm this.  Running a 'strace' on apt-get doesn't provide any
clues to me, it ends with the following output:

<...>
munmap(0x40491000, 266240)  = 0
munmap(0x40205000, 2669540) = 0
close(-1)   = -1 EBADF (Bad file descriptor)
write(2, "E: ", 3E: )  = 3
write(2, "Internal Error, Couldn\'t configu"..., 47Internal Error, Couldn't conf
igure a pre-depend) = 47
write(2, "\n", 1
)   = 1
close(3)= 0
munmap(0x40015000, 4096)= 0
munmap(0x40014000, 4096)= 0
_exit(100)


I applied the "" option suggested in the Potato x86 release notes with
no effect.

http://www.debian.org/releases/stable/i386/release-notes/ch-upgrading.en.html  

# apt-get --fix-broken --show-upgraded -o APT::Force-LoopBreak=1 dist-upgrade


I also updated via apt-get http sources to the most recent potato
packages, hoping that this might resolve the problem.  No joy.

dselect output:

Reading Package Lists... Done
Building Dependency Tree... Done
Merging Available information
Replacing available packages info, using /var/cache/apt/available.
Information about 8452 package(s) was updated.
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be REMOVED:
  blt8.0 freetype-tools fvwm-common gnome-print gnotes guile1.3 libguile6
  libguile6-slib librpm1 octave octave-headers pnmtopng python-base python-dev
  tetex-lib vim-rt wmspaceweather xcontrib xpm4g xpm4g-dev 
The following NEW packages will be installed:
  abiword-common abiword-doc abiword-gtk abiword-plugins apt-utils
  asclock-themes atlas2-base bind9-host blas blas-dev bonobo build-essential
  console-common cpp-2.95 cpp-3.0 cupsys-client cupsys-pstoraster curl defoma
  docbook docbook-xml eieio elib esound-clients fsviewer-icons fvwm-icons
  g++-2.95 g77-3.0 gcc-2.95 gcc-3.0 gcc-3.0-base gconf gij-3.0
  gimpprint-locales gnome-applets gnome-mime-data gnupg gnupg-doc groff-base
  gs-common gsfonts-x11 guile-common guile1.4 guile1.4-slib hermes1 ifupdown
  ipchains ipmasqadm iptables jikes-gij klogd libarts libast1 libbonobo2
  libbz2-1.0 libcap1 libcapplet1 libcdparanoia0 libcupsys2 libcurl2
  libdate-manip-perl libdb3 libdb3-util libdigest-md5-perl libdns5 libdps1
  libefs1 libexpat1 libfinance-quote-perl libfreetype6 libgal-data libgal19
  libgc6 libgcc1 libgcj2 libgconf11 libgdk-pixbuf-gnome2 libgdk-pixbuf2
  libggi-target-terminfo libggimisc2 libghttp1 libgimpprint1 libgmp3
  libgnome-vfs-common libgnome-vfs0 libgnomeprint-bin libgnomeprint-data
  libgnomeprint15 libgtk1.2-common libgtkhtml20 libguile9 libguppi16
  libgwrapguile1 libhtml-format-perl libhtml-tableextract-perl
  libhtml-tagset-perl libhtml-tree-perl libimlib2 libisc4 libjcode-pm-perl
  libkpathsea3 liblcms libldap2 libltdl3 liblwres1 libmagick5
  libmailtools-perl libnet-ph-perl libnet-snpp-perl libnetpbm9 libnss-db
  libnss3 liboaf0 libogg0 libole2-0 libpcap0 libpcre3 libperl5.6 libpng3
  libpspell-ispell1 libpspell4 libreadline4-dev librep9 librpm4 libsane
  libsasl7 libscrollkeeper0 libsigc++0 libslp1 libstdc++2.10-glibc2.2
  libstdc++3 libstroke0 libtimedate-perl libttf2 libungif4g libusb-0.1-4
  libvorbis0 libwmf0.2-2 libwraster2 libxaw6 libxaw7 libxaw7-dev libxml2
  libxslt1 mozilla-browser mozilla-mailnews mozilla-psm mtr-tiny nano nas-lib
  net-tools netkit-inetd netkit-ping oaf octave2.0 octave2.1 p4fftwgel2 perl
  perl-doc perl-modules perl-suid portmap psfontmgr psutils python2.1-doc
  r-base-core r-base-dev r-base-html r-base-latex r-recommended sawfish
  scrollkeeper semantic speedbar tcl8.3 tcl8.3-dev texi2html tk8.3 tk8.3-dev
  util-linux-locales vacation x-ttcidfont-conf xfonts-abi xlibs xlibs-dev
  xpdf-common xpdf-utils xscreensaver-gnome xserver-common-v3 xutils 
407 packages upgraded, 190 newly installed, 20 to remove and 0 not upgraded.
Need to get 0B/326MB of archives. After unpacking 407MB will be used.
Do you want to continue? [Y/n] 
Media Change: Please insert the disc labeled 'Debian GNU/Linux 3.0 r0 _Woody_ - 
Official i386 Binary-1 (20020718)' in the drive '/cdrom/' and press enter

E: Internal Error, Couldn't configure a pre-depend


-- 
Karsten M. Self <[EMAIL PRO

Re: simple exim configuration

2002-12-20 Thread Pigeon
On Thu, Dec 19, 2002 at 09:29:55PM -0700, Paul Scott wrote:
> Pigeon wrote:
> 
> >On Thu, Dec 19, 2002 at 09:02:21AM +0100, Tony Crawford wrote:
> >  
> >
> >>Paul Scott wrote (on 18 Dec 2002 at 23:57):
> >>
> >>
> >>
> fetchmail to get the mail, procmail to sort it, mozilla or mutt to
> display it, you're all set.
> 
> 
> 
> >>>That sounds great.   Thanks.
> >>>
> >>>Any ideas why I can't apt-get remove exim without removing mutt?
> >>>  
> >>>
> >>Because the mutt package expects the system to have some kind of 
> >>MTA, I'd guess. An MTA is a normal part of a typical system.
> >>
> >>Options for overriding such dependencies should be covered in the 
> >>man page somewhere.
> >>
> >>
> >
> >It may well be simpler just to use it...
> >
> It looks like I will have to use it get mail from either fetchmail or 
> procmail (if I need it) to the mail folders.

I think this is one of those situations where you don't theoretically
have to, but it's much easier if you do because all the software and
docs are written with that assumption.

> >Run eximconfig and answer some really simple questions, and that's
> >about it. I found it so easy to do the basic setup that I can't
> >remember much about doing it.
> >
> I have done that several times and I won't know whether it's working 
> until I find where fetchmail is putting mail.

According to man fetchmail, it delivers it by SMTP to port 25, whence
it is picked up by exim or whatever other MTA you have and delivered
to wherever it has to go.

I set up fetchmail by using fetchmailconf, and as with eximconfig it
just worked and I can't remember any awkwardnesses. That's the problem
with these easy config tools - when it all works you don't learn
anything.

Pigeon


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




Re: Procmail attachment filtering

2002-12-20 Thread Colin Watson
On Sat, Dec 21, 2002 at 12:04:03AM +1100, Rob Weir wrote:
> On Fri, Dec 20, 2002 at 05:10:29AM +, Tom Badran wrote:
> > Can someone give me a rule to filter out .exe attachments, or any of the other  
> > kind sent by lookout viruses. I seem to get 2 or 3 of these a day and i dont 
> > even run bloody windows.
> 
> :0
> * ^Content-Type: multipart/alternative
> { 
>   :0B:
>   * ^Content-Type: (application/octet-stream|audio/x-(midi|wav))
>   * ^Content-Transfer-Encoding: base64
>   spam/virii/
> }
> 
> Stolen off this list, from Colin, IIRC.

It looks like one of mine indeed, although I'm certain I would never
have spelt viruses as "virii". :)

Cheers,

-- 
Colin Watson  [[EMAIL PROTECTED]]


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




apt-spy failure

2002-12-20 Thread Charles Baker
I've been trying to run apt-spy the last couple of
days and keep getting the following error:

usmghdebian:/etc/apt# apt-spy -d unstable -s \
/root/tops.20021220
::: Will save top sites to /root/tops.20021220.


::: Unrecoverable Error [1]: Could not retrieve list
from DEBIAN.ORG
::: [] Saving TOP FILE LIST.Segmentation fault

In my /etc/apt/apt.conf I have the following:

Acquire::http::Proxy \
"http://proxy.powersystems.rockwell.com:8080";;

So I'm fairly confident that I'm getting out, is the
list in fact there?

=
[EMAIL PROTECTED]
http://www.charleshbaker.com/~chb/
BOFH excuse #222:
I'm not sure.  Try calling the Internet's head office -- it's in the book.

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com


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




Re: Agghh! hostname in Woody install

2002-12-20 Thread Bret Comstock Waldow
On Fri, 2002-12-20 at 09:08, Bret Comstock Waldow wrote:
> > So what happens when you fill in /etc/hostname with your hostname?

I attached the network cable, and then did a new install, using an ftp
mirror to update everything during the install.

Now, I get this:
[bret@ganesha etc]$ ls -l h*
-rw-r--r--1 root root   26 Sep 26  1995 host.conf
-rw-r--r--1 root root8 Dec 19 14:56 hostname
-rw-r--r--1 root root  277 Dec 19 15:02 hosts
-rw-r--r--1 root root  659 Dec 19 22:05 hosts.allow
-rw-r--r--1 root root  659 Dec 19 22:05 hosts.allow.bak
-rw-r--r--1 root root  948 Dec 19 22:05 hosts.deny

and:
[bret@ganesha etc]$ cat hostname
ganesha

So, perhaps it was an install bug in r0.  Unfortunate.  I like to be
able to restore the system when I don't have a network connection (it's
a laptop).  But then, that's what r1 is for - to correct bugs in r0.

So, now I've a reason to get a CD burner.

I've only had a quick look at the rest of the Debian install - I can
already see some problems, but I'll write them as separate messages.

Cheers,
Bret



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




Re: .xsession & wdm

2002-12-20 Thread Tom
> 1) Delete and recreate from scratch with your favourite editor the
> .xsession file, in case somehow there is a stray non-printing character
> that is mucking up wdm in the handoff.

It works. I just don't get it; the .xsession files were literally
*identical*. Still, recreating mine solved the problem.

Mark, thanks for your help.

Tom


-- 
"Alles stimmt, gilt, nimmt teil und bildet
eine Vollzaehligkeit, in der nichts fehlt."


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




Re: LAN IPv6 global connectivity HOWTO

2002-12-20 Thread Jean-Marc V. Liotier
On Thu, 2002-12-19 at 19:52, Jeremy T. Bouse wrote:
>
> [..] Your construction of the EUI-64 is off a bit... [..]

Thanks a million for your explanation : turns out I had really not
understood how to produce an address. As a result, I rewrote sections
6.1 "Setting up the router's LAN interface" and 6.2 "Setting up the
stateless autoconfiguration server". Writing a howto is a good way to
make sure you really understand the subject...

The updated and corrected version is still at the same place : 
http://www.jipo.org/jim/Jims_LAN_IPv6_global_connectivity_howto.html

Now I think that it can really be an useful resource for newcomers to
IPv6.




signature.asc
Description: This is a digitally signed message part


Re: how to build mozilla .deb's from sources?

2002-12-20 Thread Osamu Aoki
On Fri, Dec 20, 2002 at 03:11:46PM +0100, Matus fantomas Uhlar wrote:
> -> On 12/19/02 09:05, Matus "fantomas" Uhlar wrote:
> -> >I'd like to compile mozilla distribution directly from source/CVS.
> -> >Is there any 'easy' way to do it? I see there is already
> -> >build/packages/debian directory in sources from mozilla.org; however i was
> -> >not able to compile mozilla using it. 
> -> >
> -> >Can anyone help me with proper instructions?

Proper and easy way for any source is build it under /usr/local
following source documentation and you set your PATH right.

But what you really needed is install mozilla-snapshot and its friend.

mozilla-snapshot:
  Installed: (none)
  Candidate: 0.0.20021212.09.trunk-1
  Version Table:
 0.0.20021212.09.trunk-1 0
800 http://http.us.debian.org unstable/main Packages

Anyway you want to run latest, you need to be unstable :)  Can you
habdle it?

> -> Here goes my way--not necessarily the _proper_ way (-:
Matus was right.  I agree but I would do this a bit differently If I had to
(I did not do this.)  After adding deb-src for unstable and in
testing environment (or in woody if you are lucky)

So if you wanted to rebuild for slightly old environment than latest
unstable

# apt-get build-dep mozilla-snapshot
# apt-get source -b mozilla-snapshot

Osamu
-- 
~\^o^/~~~ ~\^.^/~~~ ~\^*^/~~~ ~\^_^/~~~ ~\^+^/~~~ ~\^:^/~~~ ~\^v^/~~~ +
Osamu Aoki <[EMAIL PROTECTED]>   Cupertino CA USA, GPG-key: A8061F32
 .''`.  Debian Reference: post-installation user's guide for non-developers
 : :' : http://qref.sf.net and http://people.debian.org/~osamu
 `. `'  "Our Priorities are Our Users and Free Software" --- Social Contract


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




Re: package trees

2002-12-20 Thread Tom Allison
Brian Nelson wrote:

Tom Allison <[EMAIL PROTECTED]> writes:



This will probably get me ejected from the planet or accused of not
understanding how Debian works, but here goes.

There has been a long standing "bitch" by some that Debian is so vary
slow to update their base system.  Personally I stand entirely behind
the philosophies of making stable really stable and releasing updates
when they are ready.

I would not want anything to interfere with this as I believe it to be
one of the greatest assets of Debian.

But...

I recently got burned a few times when I would skip an update to
testing.  There are some dependency problems I ran into where I had to
jump to unstable in order to get all the right versions of the right
software.  And some of them were less stable than others.


[snip rest of explanation]

However, you proposed any solution to the above problem; namely, that
packages in unstable tend to depend explicitly on versions of other
packages that are only in unstable.  This makes it quite difficult to
mix packages between unstable, testing, and stable.

Yes, you can recompile packages, but compiling software against older
libraries will likely uncover a lot of bugs that have already been fixed
in newer versions of the libraries and no one will want to deal with.
Inevitably, I think an implementation of the system you're proposing
would be less stable than any of Debian's current distributions.

Or, if you intend to ensure that a package and all of its dependencies
are "stable enough" before you will use it, then you're just reinventing
the testing distribution.



My experience of late has been contrary to what you say.

I have testing packages that required unstable installations or 
unstable installations that were dependent upon testing packages 
and were incapable of being compatable with their counterpart 
unstable packages.

They have definitely been mixed.  If I run into it again, I'll 
post it in detail.

The only suggestion regarding "stable enough", as you put it (and 
reasonably so) is to cap the age that you consider seeing a 
package in testing if you are using a apt_preferences 
configuration which supports both stable and testing.

This would provide some increase of exposure to the testing 
packages prior to their roll-over into stable.

--
An atom-blaster is a good weapon, but it can point both ways.
		-- Isaac Asimov


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



  1   2   >