Re: [gentoo-user] Mbox vs maildir

2005-03-07 Thread Andreas Vinsander
Neil Bothwick wrote:
On Sun, 06 Mar 2005 18:48:15 -0600, Kashani wrote:

	Actually in large scale stuff you'll need to use shared storage so
	
.maildir/ is still your best choice. You do burn a lot of inodes, but 
it's a decent trade off against the alternatives.

What is the best way to convert an existing mbox setup to maildir?
Reconfiguring the MTA/MDA looks straightforward, but what is the best way
to convert existing mailboxes?

I used the attached scripts while migrating about 25 users to maildir 
about a year ago.
We used IMAP before the switch that's why I had to loop over all folders 
to have it look the same to the users...
The script movemail.sh is the entry point, taking the name of a file 
with all usernames in it as argument. You might have to change 
mbox2maildir.sh to suit your needs. The two other scripts were taken 
from the net (see comments inside them).

/Andreas
#!/usr/bin/env python

"""addtomaildir

Reads an RFC 822 message (possibly with leading "From " line) on stdin
and adds it to a Maildir.  The exact details of where it lands and what
it's called in the Maildir depend on various header values in the input
message:

  * if no "Status" header, the message goes in "new", otherwise in "cur"

  * if "Status" is "O" (old), the filename has no info field

  * if "Status" is "RO" (read old), the filename has ":2,S" appended
as its info field

  * the mtime of the file will be the delivery time of the message,
if we can figure out the delivery time.  Tries the "Delivery-date"
header first, then the "From " line; if neither exists or can
be parsed, leaves the mtime alone.
"""

import sys, os, re
import socket, errno
from time import time, mktime, strptime, ctime, sleep
from rfc822 import Message, parsedate_tz, mktime_tz



class Error (Exception):
pass


def warn (msg):
sys.stderr.write("warning: %s\n" % msg)


def maildir_open (maildir):
# Assumes we're already chdir'd into maildir

hostname = socket.gethostname()
pid = os.getpid()
num_tries = 0
max_tries = 5
while 1:
name = "tmp/%.6f%05d.%s" % (time(), pid, hostname)
ok = 0  # assume the worst
num_tries += 1
try:
os.stat(name)
except OSError, err:
# Good: file called 'name' doesn't already exist.
if err.errno == errno.ENOENT:
ok = 1

if ok:
break
else:
if num_tries > max_tries:
raise Error("error: could not create temporary file in %s/tmp"
% maildir)
sleep(2)   # and try again

fd = os.open(name, os.O_WRONLY|os.O_EXCL|os.O_CREAT, 0600)
return (name, fd)


def grok_status (msg):
# Figure out if this is a new message, an "old" message
# (seen by MUA, but not read by user), or a read message.
status = msg.get("Status")
if status == "O":   # seen by MUA, but not read by user
dir = "cur"
info = ""
elif status == "RO":# read by user
dir = "cur"
info = ":2,S"
else:   # not there, empty, or unknown value
dir = "new"
info = ""

return (dir, info)

def get_delivery_time (msg):
# Figure out the delivery time.
dtime = None
if msg.has_key("Delivery-date"):
# eg. "Thu, 12 Jul 2001 08:47:20 -0400" to 994942040 (seconds
# since epoch in UTC)
dtime = mktime_tz(parsedate_tz(msg["Delivery-date"]))
elif msg.unixfrom:
# Parse eg.
#   "From [EMAIL PROTECTED] Thu Jul 12 08:47:20 2001"
# -- this is the "From " line format used by Exim; hopefully other
# MTAs do the same!
m = re.match(r'^From (\S+) +(\w{3} \w{3}\s+\d\d? \d\d:\d\d:\d\d 
\d{4})$',
 msg.unixfrom)
if not m:
warn("warning: could not parse \"From \" line: %s" % msg.unixfrom)
else:
(return_path, dtime_str) = m.groups()
# Eg. "Thu Jul 12 08:47:20 2001" -> 994945640 -- note that
# this might be different from what we get parsing the same
# date string above, because this one doesn't include the
# timezone.  Sigh.
dtime = mktime(strptime(dtime_str, "%c"))

# Attempt to detect and correct for DST differences.
# (This works if we parsed a summer time during the winter;
# what about the inverse?)
dtime_str_curtz = ctime(dtime)
if dtime_str_curtz != dtime_str:
dtime_curtz = mktime(strptime(dtime_str_curtz, "%c"))
diff = dtime_curtz - dtime
dtime -= diff

return dtime

def write_message (msg, msg_file, out_fd):
# Write the headers to the temp file.
headers = str(msg) + "\n"
n = os.write(out_fd, headers)
if n != len(headers):
raise Error("failed to write headers (%d/%d by

Re: [gentoo-user] configuration nvidia TNT2 m64

2005-03-04 Thread Andreas Vinsander
Neil Bothwick wrote:
On Fri, 04 Mar 2005 00:15:19 +, Pedro Sousa wrote:

As I'm aware, the nvidia-kernel doesn't suport anymore old card.

That's no longer true. The initial 1.0.6629 releases didn't work with the
TNT2 or GF2, but I'm now using nvidia-glx-1.0.6629-r5 and
nvidia-kernel-1.0.6629-r3 on a TNT2 with no problems.


Kidding? I tried yesterday with exactly those versions u mention and had 
no luck... still garbled display here on my ole' TNT2 m64

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] 6 gigs to clean up

2005-03-04 Thread Andreas Vinsander
George Roberts wrote:
Is there a more reasonable/saner way to maintain my system.
I am wondering is there any places where Portage stashes files that it 
has downloaded, or temp files (other than the tmp directory) that could 
be safely flushed.

You might wanna take a look at tmpwatch (emerge -uDav --newuse tmpwatch) 
which requires you to have a cron daemon (vixie-cron is a good choice).

And if you do maybe add something like this
PORTAGE_TMPDIR="$(/usr/bin/portageq envvar PORTAGE_TMPDIR)/portage"
PORTAGE_LOGDIR="$(/usr/bin/portageq envvar PORT_LOGDIR)"
if [[ -d ${PORTAGE_TMPDIR:-/var/tmp/portage} ]]; then
  ${TMPWATCH} --mtime --all 336 ${PORTAGE_TMPDIR:-/var/tmp/portage}
fi
if [[ -d ${PORTAGE_LOGDIR:-/var/log/portage} ]]; then
  ${TMPWATCH} --mtime --all 336 ${PORTAGE_LOGDIR:-/var/log/portage}
fi
or something similar to the end of /etc/cron.daily/tmpwatch
It will remove anything that haven't been modified for 14 days from some 
common places...
Look through the other commented options found in that file as well.
If the filesystem where your distfiles is situated is mounted without 
'noatime' then consider cleaning that as well...

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: A perfect example - was RE: [gentoo-user] Reply-To: header seems broken-- OT question stimulated by this thread

2005-02-25 Thread Andreas Vinsander
Boyd Stephen Smith Jr. wrote:
On Thursday 24 February 2005 11:10 am, Neil Bothwick <[EMAIL PROTECTED]> 
wrote:

Next you'll be claiming it doesn't matter whether you use vi or emacs
;-)

Let's not get into religion on this list. ;)
Hehe, I use both...
Wonder where that takes me...
/Andreas
--
gentoo-user@gentoo.org mailing list


[gentoo-user] Reply-To: header seems broken

2005-02-23 Thread Andreas Vinsander
Hi!
Seems like the Reply-To: header for this list no longer point to the 
list... is that an intentional change?

I would appreciate having the old behaviour instead.
/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] Strange problem with 3com network cards

2005-02-23 Thread Andreas Vinsander
Zbynek Houska wrote:
Feb 23 12:59:35 mailsrv dhcpcd[6627]: timed out waiting for a valid DHCP
server response
Do you have a proper dhcp server in your local network?
/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] about mysql db backup...

2005-02-14 Thread Andreas Vinsander
Seung Hyun Cho wrote:
Hi,
I've copied db folder in /var/lib/mysql to my new gentoo server from
fedora server.
When I connect to mysql in gentoo, I've got this error message...
like...
MySQL Error: 1017 (Can't find file: './db/table_xxx.frm' (errno: 13))
What is going on here? What should I do??? 
Try exporting the tables the ordinary way (mysqldump) on the fedora box 
and then importing them on the gentoo box.

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] OT: squirrelmail and huge message folders

2005-02-11 Thread Andreas Vinsander
Nick Smith wrote:
i would suggest upping the limit anyway, because the folder will still
continue to grow. ;-)
Nah, I do a cleanup once in a while removing all messages older than 60 
days...
So I keep it pretty constant at 1 messages...

I'm surprised that my tiny server can handle it... (since it's also doin 
spamassassin for all messages)

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] OT: squirrelmail and huge message folders

2005-02-10 Thread Andreas Vinsander
R'twick Niceorgaw wrote:
Try to increase the max_execution_time in php.ini.
Also, enable server side sorting and threading in squirrelmail config (if
your imap server supports it).
Enabling serverside sorting and threading did the trick... I didn't 
touch the timeout limits in php.ini.

Thank you!!!
/Andreas
--
gentoo-user@gentoo.org mailing list


[gentoo-user] OT: squirrelmail and huge message folders

2005-02-10 Thread Andreas Vinsander
Hi!
Being a subscriber to this list, I filter (procmail) all messages from 
the list into a separate folder.

Now I have started playin with squirrelmail, and found out that I get a 
timeout when trying to access folders with many messages (typically this 
list's folder).

Fatal error: Maximum execution time of 30 seconds exceeded in 
/var/www/localhost/htdocs/squirrelmail/functions/mime.php on line 604

Anyone that have seen this and have some solution... (I might consider 
using another webmail solution, if squirrelmails way of doing stuff is a 
bit stupid...)

The box is an old p2 300Mhz with courier-imap, and also running the 
webserver for squirrelmail.

Does anyone know how squirrelmail tries to get hold of the list of 
headers? Since I show only 50 messages/page it would be good if 
squirrelmail only tried to fetch as many messageheaders for the 
folderlist when building each page. But I have started to wonder...

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] squirrelmail

2005-02-06 Thread Andreas Vinsander
David Corbin wrote:
On Sunday 06 February 2005 01:12 pm, [EMAIL PROTECTED] wrote:
At Sun, 06 Feb 2005 12:36:05 -0500 David Corbin <[EMAIL PROTECTED]> 
wrote:
Correct, but there is a solution.  Enable logging and look only at the
"small second logs".  Here is what I mean.  The last three lines in my
/var/log/portage are
-rw-r--r--  1 root root  365716 Feb  6 09:21 2662-openssl-0.9.7e.log
-rw-r--r--  1 root root   0 Feb  6 09:22 2663-openssl-0.9.7d-r2.log
-rw-r--r--  1 root root 277 Feb  6 09:21 2663-openssl-0.9.7e.log
version 9.7e replaced 9.7d-r2.  But note the second smaller log for
9.7e.  It contained
.[33;01m*.[0m If you do not etc-update now and update
/etc/ssl/misc/der_chop to the new version, your .[33;01m*.[0m system IS
VULNERABLE to a symlink attack as described in bug 68407 .[33;01m*.[0m
refer to http://bugs.gentoo.org/show_bug.cgi?id=68407 if you have any
doubts
(The funny chars are the control chars to make this appear yellow (?)
when output to your screen.)  This is likely the message you want to
read but may well have scrolled off your screen.
The 365K log is the usual boring stuff. :-)
So emerge has thoughtfully separated out the important part.
The only effort needed to get these logs is to add
  PORT_LOGDIR=/var/log/portage
to /etc/make.conf.

Thanks.  Now, if only someone would make emerge show you ONLY those small logs 
automatically.

You can make portage a tad more silent by putting '-s' in the MAKEOPTS 
variable of /etc/make.conf
It wont be completely silent but make will only show warnings and errors 
instead of the whole commandline for each compiled file... at least 
something...

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] simple backups

2005-02-04 Thread Andreas Vinsander
Nick Smith wrote:
well what is the difference between rsync and rdiff-backup if the latter
is based on rsync? was there something added?
Yep, it handles incremental backups and allows you to restore backups 
from a certain date, more like a real backup system than plain rsync.

More info at:
http://www.nongnu.org/rdiff-backup
/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] DistCC + Portage Questions

2005-02-03 Thread Andreas Vinsander
Philip Lawatsch wrote:
My distcc setup is verified to work (compiling something else on the 
machines right now).

My problem is that emerge simply does ignore FEATURES="distcc" and 
instead uses gcc / g++ directly. Either emerge fails to tell the 
packages autoconf script to use distcc as a compiler or something else.
Yep, that sounds strange...
What about environment variables? On my system the distcc ebuild has 
installed the file /etc/env.d/02distcc

Are the variables mentioned in there available in your actual environment?
env-update && source /etc/profile
might be helpful...
Looking at /usr/lib/portage/bin/ebuild.sh there are some references to 
distcc, take look and try to find out if some of the tests found might 
cripple your portage's use of distcc

I have run out of ideas... sorry!
/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] DistCC + Portage Questions

2005-02-03 Thread Andreas Vinsander
Philip Lawatsch wrote:
I know all of that and I've already set up the distccd on the local host 
in this way (not via distcc_hosts but by configuring distccd on 
localhost). BUT, for some reason portage does _not_ use distcc at all 
but the "normal" gcc and this will result in -jN jobs running on localhost.

Ok, then what do u have in /etc/conf.d/distccd on the different hosts
U need to configure it to listen to connections from your subnet or 
specific hosts

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] DistCC + Portage Questions

2005-02-03 Thread Andreas Vinsander
Philip Lawatsch wrote:
The other machines are in /etc/distcc/hosts and I cant ping / ssh to them.
tv1 / # distcc-config --get-hosts
localhost icebear icebird
Still emerge does not use distcc to compile for instance xine-lib or 
bison or perl.

I'm not sure what I missed to do, perhaps someone here has a hint for me.
And, another far worse problem I have is that in my case I'm having at 
least 8 parallel compile jobs running on my machine which really criples 
it. As far as I understood if the Makefile does support parallel 
building I should also be able to use distcc. But it looks like all the 
autoconf scripts try to use gcc / g++ instead of distcc for as the 
compiler.

Some packages can't be built in parallel, your best bet to not cripple 
the localhost is the put a limit on how many jobs it should allow
Example:
distcc-config --set-hosts "localhost/2 icebear icebird"

Will limit localhost to 2 active compile jobs at a time...
Take a look at the distcc manual and the nice document Lisa has put 
together on the Gentoo web

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] simple backups

2005-02-03 Thread Andreas Vinsander
Nick Smith wrote:
On Thu, 2005-02-03 at 11:04 -0500, Nick Smith wrote:
i read up on the man page of rsync and got that this command will backup
my server to another external drive i have:
mail root # rsync -avz / /mnt/backup/
You should at least exclude /sys /proc /dev from the backup
A better alternative might be to use rdiff-backup which will do pretty 
much what u want including incremental backups and restores...

/Andreas
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] Distributed Gentoo Package management?

2004-02-12 Thread Andreas Vinsander
Konstantinos Agouros wrote:

The distcc idea mentioned in the other answer also came to my mind.
Is there btw a way, that an emerge -u that needs more than one package
uses existing packages if they are in /usr/portage/packages?
 

Take a look at emerge -k, 'man emerge' is your friend!
We have a central host driving our distcc compile-farm doing the builds 
for others of the same arch and emerge -u pulls the packages fine from 
our NFS mounted packages/arch/cpu-type directory...

/Andreas

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Private Rsync Mirrors

2003-12-10 Thread Andreas Vinsander
lucas wrote:

I was just wonding, just what is the "regular mirrior system" and what 
do i need to do to set it up???

Take a look at /etc/make.conf... look for "SYNC"

/Andreas



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Moving /usr/portage

2003-11-14 Thread Andreas Vinsander
Mark Knecht wrote:

On Thu, 2003-11-13 at 19:00, Jason Stubbs wrote:
 

On Friday 14 November 2003 11:47, Mark Knecht wrote:
   

  Can /usr/portage just a be a link to a directory on another
partition? I'm out of space on my main drive and I'd like to move the
data, but I was thinking I don't want to change a configuration file
since some future etc-update will likely hose that up.
 

If you move it and symlink it, then you don't need to do anything further. If 
you don't want to symlink it, change the reference in /etc/make.conf and 
resymlink /etc/make.profile and that's it.

Jason
   

Thanks Jason. I moved it to /mnt/data/portage and then did a simlink.
We'll see how that works for a while.
Cheers,
Mark
 

Why not mount the other partition at /usr/portage ?

/Andreas

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Printing uris

2003-10-20 Thread Andreas Vinsander
Mike Williams wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Monday 20 October 2003 07:41, Alberto G. Hierro wrote:
 

Hi all,
	We're planning to install Gentoo in 50 workstations in my high school.
These workstations won't have access to internet , so i'm planning to set
up a rsync server in another machine which has internet access and then
share it using nfs. For the distfiles, then only solution apperaring in my
mind is print uris to a file, then upload this file to a server and use
wget to fetch the files. The prob is emerge can't do that ATM, so anybody
has any better solution? Will be this feature implemented soon?
   

Erm, if you are sharing /usr/portage via NFS you are sharing the distfiles 
too. If the file they want isn't there the machine will fetch it.
If only root and portage have access then no user can mess with it.

- -- 
Mike Williams
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/k7xjInuLMrk7bIwRAhEGAJ9JpOkXrelMorxBGhCWlwrZlvcrqgCeMzRt
nkhUacYGF4+QE7nnSMVFVYA=
=V0mm
-END PGP SIGNATURE-
--
[EMAIL PROTECTED] mailing list
 

I suppose there is no internet access from the target hosts.
Take a look at http://forums.gentoo.org/viewtopic.php?t=59134 it might 
be what u are lookin for...

/Andreas

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Possibly OT: NAS / USB Print Server Suggestions?

2003-10-06 Thread Andreas Vinsander
I suppose u need the extra storage, but why don't you convert the 
windoze box to gentoo and use it as print and fileserver?
I use an old PII 300Mhz as NFS, samba (both PDC and plain fileserver) 
and USB print-server (for my Epson Stylus C82), it works like a charm!

/Andreas

Matt Neimeyer wrote:

Hey All,

I've currently got an old Pentium box serving as an NFS, AppleTalk and
Samba file server and another old windows box set up as a print server
for a USB connected HP deskjet (the office color printer). My goal is
something like the Gallantry GW500 that we use for our web/mail server
but I can't find those for sale anywhere anymore.
Can anyone recommend anything off the shelf that won't break the bank?
Everything I've been able to find doesn't support NFS or Appletalk (not
a biggie for appletalk) or doesn't support USB printers.
Given the right hardware form factor I am more than willing to rebuild
the OS with Gentoo like I did with the Gallantry.
Thanks!

Matt

--
[EMAIL PROTECTED] mailing list
 



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] openssl perl script

2003-09-30 Thread Andreas Vinsander
If the goal is to find out what you need to recompile, just follow the 
advice in the ebuild...
For instance: revdep-rebuild --soname libssl.so.0.9.6 -p

Look at the man-page...

/Andreas

Andrew Gaffney wrote:

Brett wrote:

Greetings,
Can somebody help me with the following script, I cannot get it to work
properly. It should output a list of packages which depend on openssl
(As I understand it) but I receive no output at all. I have tried
fiddling with it but that didn't work wither :-)
"http://dev.gentoo.org/~aliz/openssl_update.sh";

#!/bin/bash

#replace this with the currently installed version
openssl_installed="0.9.6"
for i in $(find / -type f -name '*.so*' 2>/dev/null) \
  $(find $(echo $PATH | sed 's/:/ /g') -type f -perm +0111 
2>/dev/null); do
  ldd ${i} 2>&1 | grep -e 
"libcrypto.so.${openssl_installed} => not found" \
  -e "libssl.so.${openssl_installed} => not 
found" - >/dev/null \
  && qpkg -f -nc  -v $i
  done


Thanks for any assistance,
Brett
NB:(yes I have gentoolkit (qpkg) merged)


Ya know, you can just 'qpkg -q -nc -I openssl'



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Kbd and mouse hang

2003-09-29 Thread Andreas Vinsander
I am using PS/2 kbd and mouse, should I still expect USB hub to be the 
reason?
On the machine that is working, I have the same GPU, but the integrated 
ethernet unit is a VIA rhine instead of a realtek.
Right now I feel like a big questionmark... :-(

/Andreas

Juha-Mikko Ahonen wrote:

On ma, 2003-09-29 at 15:52, Andreas Vinsander wrote:
 

Some more information.

In addition to moving the mouse fast I can make the mouse hang by 
switching (ctrl + alt + ) to and from X.

The MB includes video and sound controllers (cheap thing).

I have a similar machine running (not the same MB, though) flawlessly, 
that's why I suspect something kernel related.
   

Try disabling one or both of your USB hubs from BIOS and see if it
still hangs. Some integrated GPUs have problem working with Linux.
You could update your kernel to the latest 2.4 release if you're
not already running one.
 



This message has been 'sanitized'.  This means that potentially
dangerous content has been rewritten or removed.  The following
log describes which actions were taken.
Sanitizer (start="1064842489"):
 Forcing message to be multipart/mixed, to facilitate logging.
 Writer (pos="781"):
   Part (pos="950"):
 Part (pos="191"):
   SanitizeFile (filename="unnamed.txt", mimetype="text/plain"):
 Match (names="unnamed.txt", rule="9"):
   Enforced policy: accept
 Part (pos="978"):
   SanitizeFile (filename="signature.asc", mimetype="application/pgp-signature"):
 Match (names="signature.asc", rule="15"):
   ScanFile (file="/var/quarantine/att-signature.asc-3f7834f9.S9"):
 Scan succeeded, file is clean.
   Enforced policy: accept

Anomy 0.0.0 : Sanitizer.pm
Sanitizer version 1.63 (Debian GNU/Linux)
 



--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Kbd and mouse hang

2003-09-29 Thread Andreas Vinsander
Some more information.

In addition to moving the mouse fast I can make the mouse hang by 
switching (ctrl + alt + ) to and from X.

The MB includes video and sound controllers (cheap thing).

I have a similar machine running (not the same MB, though) flawlessly, 
that's why I suspect something kernel related.

/Andreas

Andreas Vinsander wrote:

Hi!
I'm experiencing hangs of my kbd and mouse while using X (or switching 
between X and console).

It seems like the hang is showing up when moving the mouse "fast". I 
can still ssh into the machine.

Symptoms: kbd and/or mouse is non-responsive

I'm starting to wonder if it can have anything to do with me enabling 
Local APIC support for uniprocessors and IO-APIC support for 
uniprocessors.

Anybody having the same or similar experiences, that can point me in 
the right directions?

/Andreas

--
[EMAIL PROTECTED] mailing list
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 6
model   : 8
model name  : AMD Athlon(tm) XP 2200+
stepping: 0
cpu MHz : 1795.585
cache size  : 256 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat 
pse36 mmx fxsr sse syscall mmxext 3dnowext 3dnow
bogomips: 3578.26

PCI devices found:
  Bus  0, device   0, function  0:
Host bridge: VIA Technologies, Inc. VT8375 [KM266] Host Bridge (rev 0).
  Master Capable.  Latency=8.  
  Prefetchable 32 bit memory at 0xd000 [0xd7ff].
  Bus  0, device   1, function  0:
PCI bridge: VIA Technologies, Inc. VT8633 [Apollo Pro266 AGP] (rev 0).
  Master Capable.  No bursts.  Min Gnt=12.
  Bus  0, device   9, function  0:
SCSI storage controller: Adaptec AIC-7892A U160/m (rev 2).
  IRQ 17.
  Master Capable.  Latency=32.  Min Gnt=40.Max Lat=25.
  I/O at 0xd000 [0xd0ff].
  Non-prefetchable 64 bit memory at 0xe300 [0xe3000fff].
  Bus  0, device  14, function  0:
Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 
16).
  IRQ 19.
  Master Capable.  Latency=32.  Min Gnt=32.Max Lat=64.
  I/O at 0xd400 [0xd4ff].
  Non-prefetchable 32 bit memory at 0xe3001000 [0xe30010ff].
  Bus  0, device  16, function  0:
USB Controller: VIA Technologies, Inc. USB (rev 128).
  IRQ 16.
  Master Capable.  Latency=32.  
  I/O at 0xd800 [0xd81f].
  Bus  0, device  16, function  1:
USB Controller: VIA Technologies, Inc. USB (#2) (rev 128).
  IRQ 17.
  Master Capable.  Latency=32.  
  I/O at 0xdc00 [0xdc1f].
  Bus  0, device  16, function  2:
USB Controller: VIA Technologies, Inc. USB (#3) (rev 128).
  IRQ 18.
  Master Capable.  Latency=32.  
  I/O at 0xe000 [0xe01f].
  Bus  0, device  16, function  3:
USB Controller: VIA Technologies, Inc. USB 2.0 (rev 130).
  IRQ 19.
  Master Capable.  Latency=32.  
  Non-prefetchable 32 bit memory at 0xe3002000 [0xe30020ff].
  Bus  0, device  17, function  0:
ISA bridge: VIA Technologies, Inc. VT8235 ISA Bridge (rev 0).
  Bus  0, device  17, function  1:
IDE interface: VIA Technologies, Inc. VT82C586/B/686A/B PIPC Bus Master IDE (rev 
6).
  IRQ 16.
  Master Capable.  Latency=32.  
  I/O at 0xe400 [0xe40f].
  Bus  0, device  17, function  5:
Multimedia audio controller: VIA Technologies, Inc. VT8233 AC97 Audio Controller 
(rev 80).
  IRQ 18.
  I/O at 0xe800 [0xe8ff].
  Bus  1, device   0, function  0:
VGA compatible controller: S3 Inc. VT8751 [ProSavageDDR P4M266] VGA Controller 
(rev 0).
  IRQ 16.
  Master Capable.  Latency=32.  Min Gnt=4.Max Lat=255.
  Non-prefetchable 32 bit memory at 0xe100 [0xe107].
  Prefetchable 32 bit memory at 0xd800 [0xdfff].

--
[EMAIL PROTECTED] mailing list

[gentoo-user] Kbd and mouse hang

2003-09-29 Thread Andreas Vinsander
Hi!
I'm experiencing hangs of my kbd and mouse while using X (or switching 
between X and console).

It seems like the hang is showing up when moving the mouse "fast". I can 
still ssh into the machine.

Symptoms: kbd and/or mouse is non-responsive

I'm starting to wonder if it can have anything to do with me enabling 
Local APIC support for uniprocessors and IO-APIC support for uniprocessors.

Anybody having the same or similar experiences, that can point me in the 
right directions?

/Andreas

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] How can I find why kde likes to downgrade gnome?

2003-09-22 Thread Andreas Vinsander
Do u need gnome at all?
Else I would do:
USE="-gnome -gtk" emerge -upD kde
/Andreas

Norbert Kamenicky wrote:
Thanks for the explanation, in the rest I run emerge in debug mode ...
in the output is (little bit hidden) answer to my question :-).
Renat Golubchyk wrote:

If the "D" sign is missing then the package will *not* be downgraded, 
it will be installed in a different slot. The portage idea of "slots" 
is for packages with different versions that can coexist on a system ...





--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] rsync daemon logs alot

2003-09-19 Thread Andreas Vinsander
Thnx!
/Andreas
Mike Williams wrote:
On Thursday 18 September 2003 14:59, Andreas Vinsander wrote:

Hi!
I have setup one of our local hosts to be a gentoo rsync-mirror, for use
within our private network.
My problem is that the rsync daemon (on the server) logs so much when
one of the clients syncs against it, that the sync is halted until I
restart the metalog daemon.
Every process using the syslog facilities are halted the same way when
this happens = effectively locking all access to the machine if I didn't
happen to have a shell open on the server where I can restart the
metalog daemon.
What possibilities do I have?
* Silencing the rsync daemon. How?
* Switching to another syslog daemon. Which one?
* Anything else?


/etc/rsync/rsyncd.conf
transfer logging = no
It'll only log the connections after that.

--
Mike Williams
--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


[gentoo-user] baselayout merge failed?

2003-09-18 Thread Andreas Vinsander
Hi!

When mergeing baselayout I got the following problem:

The ebuild tries to copy a '.keep' file to my /home filesys.
The thing is that I automount each user directory (/home/) 
from my server, which means that /home is not writable by anybody.

When doing emerge -up baselayout it states that i don't need to update 
anything, so it appears that the emerge did what it should anyway... I'm 
a bit confused...

What can/should I do?

/Andreas

--
[EMAIL PROTECTED] mailing list


[gentoo-user] rsync daemon logs alot

2003-09-18 Thread Andreas Vinsander
Hi!
I have setup one of our local hosts to be a gentoo rsync-mirror, for use 
within our private network.

My problem is that the rsync daemon (on the server) logs so much when 
one of the clients syncs against it, that the sync is halted until I 
restart the metalog daemon.
Every process using the syslog facilities are halted the same way when 
this happens = effectively locking all access to the machine if I didn't 
happen to have a shell open on the server where I can restart the 
metalog daemon.

What possibilities do I have?
* Silencing the rsync daemon. How?
* Switching to another syslog daemon. Which one?
* Anything else?
/Andreas

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Saying hello!

2003-09-18 Thread Andreas Vinsander
Hi!
Since I became a member of this list today, I just wanted to say hello 
to all fellow gentoo users.

I have been using gentoo on my machines at work since april-may 2003.
During the summer I also setup a web/mail-server at home using gentoo. 
Have yet to move my home day-to-day box over to gentoo...

I also happen to be the incharge sysadmin of a local church. We are in 
the coming days (read: during the weekend) goin to switch over from an 
old RedHat based server to a new gentoo based one. After that we are 
starting to switch OS on the workstations (there are 10 of them) from 
WinNT4 to gentoo.

Well now u know what I'm upto when not working... ;-)

Live long and prosper!
/Andreas
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Mail Server error...

2003-09-18 Thread Andreas Vinsander
Look at this snippet from ezmlm manual:

[EMAIL PROTECTED](*)
Get the latest 30 messages from the archive. If the list has a 
digest, the messages returned are the messages received since the latest 
digest (the last message of the latest digest is returned so that there 
always will be at least one message).

[EMAIL PROTECTED](*)
Get messages 45-67 from the archive. No more than 100 messages can 
be returned per request. If the first argument is larger than the 
highest message number in the archive, you'll instead receive the latest 
30 or so messages from the archive. For a list with a digest, you'll get 
the messages that have arrived since the last digest as well as the last 
up to 30 messages of that digest.

Maybe that is what you are looking for?
/Andreas
Angel Gabriel wrote:
... I'm very sorry people, I found that my mail server was overloaded,
and was bouncing all the mail I got, and like an idiot, I was sat there
all day long waiting fr emails to come! Anyway, would I would like to
know, is how can I get all of yesterdays postings? Is it possible?


--
[EMAIL PROTECTED] mailing list