Re: [gentoo-user] KAlarm now broken -- suffers many SIGFPE alarms

2006-06-09 Thread Kevin O'Gorman
On 6/8/06, Jesse Hannah [EMAIL PROTECTED] wrote:
Kevin O'Gorman wrote: It doesn't die.And it usually doesn't do it when I'm around, but when I come back to my system in the morning there are usually 200 or so crash dialogs waiting for me, all indicating the application suffered a SIGFPE (floating
 point error?).But it keeps on working anyway. Am I alone with this? ++ kevinProbably not, depends on the version of KAlarm that you're using. But morelikely than anything else is that something didn't quite compile right when
you were emerging whatever KAlarm's parent package (kdepim?) is. I've hadthat happen with other things such as xine-lib, and I've discovered that ifsomething keeps crashing re-emerging it (or its parent package, in KAlarm's
case) usually fixes the problem. And, a SIGFPE is the sort of thing that abuild problem would be the cause of.General rule of thumb: If it crashes, rebuild it. :D--Jesse Hannah

That sounds like really good advice, so I investigated a bit. There indeed
seems some sort of conflict between kdepim and kalarm. There's something
familiar about the pattern of blocking I saw with emerge -pe kalarm kdepim
that made me try unmerging both of them first . I'm doing a new emerge
--oneshot now. Wish me luck. Maybe my list of alarms will survive?
-- Kevin O'Gorman, PhD


Re: [gentoo-user] openoffice not

2006-06-09 Thread Leonardo
Yep,
it's not in the world file; probably when I emerged it last time
(eons ago) I used --oneshot .
The errors I have now in compiling are resolved, they were due
to the hard disk being filled up before end of compilations.

Thanks, ciao
Leo

--- Richard Fish [EMAIL PROTECTED] wrote:

 The most likely reason you didn't see the upgrade is that OOo
 was not
 in your world file.  If you merge something with the --oneshot
 option,
 it will be installed, but not part of world, so will not be
 upgraded
 when you do emerge --deep --newuse --update world
 
 -Richard
 -- 
 gentoo-user@gentoo.org mailing list
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Daevid Vincent
I've been googling and hacking at this for about three hours now. 

Can someone tell me what I am doing wrong?

locutus mnt # cat /etc/udev/rules.d/local.rules
# This is for my Intelligent Stick USB Memory flash drive
BUS==usb, SYSFS{serial}==20031112223132-01, NAME=istick, MODE=0666

locutus linux # cat /etc/fstab
# Intelligent Stick flash drive (UDEV)
/dev/istick  /mnt/istick  vfat defaults,noauto,user,umask=000  0 0

locutus linux # ll /dev/istick
crw-rw-rw- 1 root root 21, 1 Jun  9 00:32 /dev/istick

locutus linux # mount /dev/istick
mount: /dev/istick is not a block device

But after a long night, I tried this and was shocked to see it works:

locutus linux # ll /dev/sda1
brw-rw 1 root disk 8, 1 Jun  9 00:32 /dev/sda1

locutus linux # mount -t vfat /dev/sda1 /mnt/istick/
locutus linux # ls /mnt/istick/
MIDI Files  pwsafe.key

So, why doesn't my /dev/istick work? 
I assume it has to do with that 'b' on /dev/sda1 and the 'c' on /dev/istick
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Dirk Heinrichs
Am Freitag, 9. Juni 2006 10:12 schrieb ext Daevid Vincent:

 Can someone tell me what I am doing wrong?

 locutus mnt # cat /etc/udev/rules.d/local.rules
 # This is for my Intelligent Stick USB Memory flash drive
 BUS==usb, SYSFS{serial}==20031112223132-01, NAME=istick,
 MODE=0666

BUS==scsi and I would also use SYMLINK=istick%n instead of NAME. I'd 
also guess that the SYSFS{serial} is not the one of the stick, but four 
your USB hub.

 locutus linux # cat /etc/fstab
 # Intelligent Stick flash drive (UDEV)
 /dev/istick  /mnt/istick  vfat defaults,noauto,user,umask=000  0 0

 locutus linux # ll /dev/istick
 crw-rw-rw- 1 root root 21, 1 Jun  9 00:32 /dev/istick

This is a character device.

 So, why doesn't my /dev/istick work?
 I assume it has to do with that 'b' on /dev/sda1 and the 'c' on
 /dev/istick

Yes.

You should also read http://www.reactivated.net/writing_udev_rules.html.

HTH...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpEcBuaBp38B.pgp
Description: PGP signature


Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Neil Bothwick
On Fri, 9 Jun 2006 01:12:50 -0700, Daevid Vincent wrote:

 I've been googling and hacking at this for about three hours now. 
 
 Can someone tell me what I am doing wrong?
 
 locutus mnt # cat /etc/udev/rules.d/local.rules
 # This is for my Intelligent Stick USB Memory flash drive
 BUS==usb, SYSFS{serial}==20031112223132-01, NAME=istick,
 MODE=0666

This should be in /etc/udev/rules.d/10-local.rules, so it is processed
before the default rules, but that's not the problem here.

 locutus linux # cat /etc/fstab
 # Intelligent Stick flash drive (UDEV)
 /dev/istick  /mnt/istick  vfat defaults,noauto,user,umask=000  0 0
 
 locutus linux # ll /dev/istick
 crw-rw-rw- 1 root root 21, 1 Jun  9 00:32 /dev/istick
 
 locutus linux # mount /dev/istick
 mount: /dev/istick is not a block device

That's because you are trying to mount the whole device, not the
partition.

 locutus linux # ll /dev/sda1
 brw-rw 1 root disk 8, 1 Jun  9 00:32 /dev/sda1
 
 locutus linux # mount -t vfat /dev/sda1 /mnt/istick/
 locutus linux # ls /mnt/istick/
 MIDI Files  pwsafe.key

Now you are mounting the partition.

 
 So, why doesn't my /dev/istick work? 
 I assume it has to do with that 'b' on /dev/sda1 and the 'c'
 on /dev/istick

Yes, it's not a block device. Change the NAME part of the rule to
NAME=istick%n and mount /dev/istick1. Or just set up a rule to match
the partition. This is the sort of thing I use for a USB stick

BUS==usb,  KERNEL==sd?1, SYSFS{idProduct}==0845, SYSFS{idVendor}==08ec, 
NAME=gigabyte, SYMLINK=%k usb/gigabyte

I don't use fstab, but let KDE/HAL/pmount mount it on /media/gigabyte.
But I could put /dev/gigabyte in fstab if I didn't want automounting.


-- 
Neil Bothwick

Any sufficiently advanced bug is indistinguishable from a feature.


signature.asc
Description: PGP signature


Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Dirk Heinrichs
Am Freitag, 9. Juni 2006 10:35 schrieb ext Neil Bothwick:

 That's because you are trying to mount the whole device, not the
 partition.

Even the whole device should be a block device, shouldn't it? And if it had 
a filesystem, you could even mount it, having one partition is as good as 
having no partition, at least for Linux.

 BUS==usb,  KERNEL==sd?1, SYSFS{idProduct}==0845,
 SYSFS{idVendor}==08ec, NAME=gigabyte, SYMLINK=%k usb/gigabyte

OK, here is what I do :-)

BUS==scsi, KERNEL==sd*, SYSFS{model}==HardDrive   , 
SYSFS{rev}==1.11, SYSFS{vendor}==32MB, SYMLINK=usb/stick%n

This will give me nodes for the device itself and its partitions.

Bye...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpHom1m8TpPt.pgp
Description: PGP signature


Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Neil Bothwick
On Fri, 9 Jun 2006 10:59:13 +0200, Dirk Heinrichs wrote:

  That's because you are trying to mount the whole device, not the
  partition.
 
 Even the whole device should be a block device, shouldn't it?

Yes it should, it's podd that is appears as a character device.

 And if it
 had a filesystem, you could even mount it, having one partition is as
 good as having no partition, at least for Linux.

It's not the same. A filesystem on a single partition filling the device
is not the same as a filesystem on the device itself. Both are possible,
and mountable, but not at the same time. I've just checked with with a
single partition device to be sure, it didn't work.

  BUS==usb,  KERNEL==sd?1, SYSFS{idProduct}==0845,
  SYSFS{idVendor}==08ec, NAME=gigabyte, SYMLINK=%k usb/gigabyte
 
 OK, here is what I do :-)
 
 BUS==scsi, KERNEL==sd*, SYSFS{model}==HardDrive   , 
 SYSFS{rev}==1.11, SYSFS{vendor}==32MB, SYMLINK=usb/stick%n
 
 This will give me nodes for the device itself and its partitions.

I do that for some drives, but my USB sticks are always a single
partition, so I give the name to the partition not the device. I also set
NAME and put %k in SYMLINK, because pmount uses the name to create the
directory in /media, and I want the device mounted
at /media/somethingmeaningful, not /media/sdxn.


-- 
Neil Bothwick

This fortune soaks up 47 times its own weight in excess memory.


signature.asc
Description: PGP signature


[gentoo-user] jpeg compilation error

2006-06-09 Thread Arnau Bria
Hi,

I was doing my weekly world update, when my system stopped the update
at this ebuild:
1149848117:  === (11 of 42) Compiling/Merging 
(media-libs/jpeg-6b-r7::/usr/portage/media-libs/jpeg/jpeg-6b-r7.ebuild)

with next error:

creating Makefile
creating jconfig.h
./libtool-wrap --mode=compile i686-pc-linux-gnu-gcc -march=pentium4 -O2 -pipe 
-fomit-frame-pointer -mtune=i686  -I. -c ./jcapimin.c
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
make: *** [jcapimin.lo] Error 1

On a first google and gentoo forums search[1],  I found that emerge
-oneshot libtool will solve my problem. But, could someone explain me
why do not add the packages to the world profile for later updating
will solve my problem?

The other solution I found [2], is emerge libtool, but, isn't it what
emerge -uD world is trying to do?

[1]http://forums.gentoo.org/viewtopic-t-466916-highlight-libtool+unable+infer+tagged.html
[2]http://forums.gentoo.org/viewtopic-t-446011-highlight-libtool+unable+infer+tagged.html


PS: sorry for not wrapping long lines, but I thought wrapping first one
could generate confusion, and I don't know if I have to cut links.

Cheers!
-- 
Arnau Bria
http://blog.emergetux.net
Flanders, de nada sirve rezar: yo mismo acabo de hacerlo y los dos 
no vamos a ganar
~Homer J. Simpson~
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Dirk Heinrichs
Am Freitag, 9. Juni 2006 12:16 schrieb ext Neil Bothwick:
 On Fri, 9 Jun 2006 10:59:13 +0200, Dirk Heinrichs wrote:
   That's because you are trying to mount the whole device, not the
   partition.
 
  Even the whole device should be a block device, shouldn't it?

 Yes it should, it's podd that is appears as a character device.

It isn't. Read my very first answer.

  And if it
  had a filesystem, you could even mount it, having one partition is as
  good as having no partition, at least for Linux.

 It's not the same. A filesystem on a single partition filling the device
 is not the same as a filesystem on the device itself. Both are possible,
 and mountable, but not at the same time. I've just checked with with a
 single partition device to be sure, it didn't work.

Of course not at the same time, thought that would be clear :-)

 I do that for some drives, but my USB sticks are always a single
 partition, so I give the name to the partition not the device. I also set
 NAME and put %k in SYMLINK, because pmount uses the name to create the
 directory in /media, and I want the device mounted
 at /media/somethingmeaningful, not /media/sdxn.

Good point, I switched to hal/dbus not long ago. Seems I need to rework my 
rules :-)

Bye...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpYoklvEj6PH.pgp
Description: PGP signature


Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Dirk Heinrichs
Am Freitag, 9. Juni 2006 10:12 schrieb ext Daevid Vincent:

Another hint:

 locutus mnt # cat /etc/udev/rules.d/local.rules
 # This is for my Intelligent Stick USB Memory flash drive
 BUS==usb, SYSFS{serial}==20031112223132-01, NAME=istick,
 MODE=0666

 locutus linux # cat /etc/fstab
 # Intelligent Stick flash drive (UDEV)
 /dev/istick  /mnt/istick  vfat defaults,noauto,user,umask=000  0 0

 locutus linux # ll /dev/istick
 crw-rw-rw- 1 root root 21, 1 Jun  9 00:32 /dev/istick

The device has major number 21, and char device 21 is SCSI generic, not SCSI 
disk (which is block device 8, see below). This may come from not having 
KERNEL==sd* in your rule.

 locutus linux # ll /dev/sda1
 brw-rw 1 root disk 8, 1 Jun  9 00:32 /dev/sda1

Bye...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpW6l7NjoYh4.pgp
Description: PGP signature


Re: [gentoo-user] gcc-4.1.1

2006-06-09 Thread Vladimir G. Ivanovic
On Thu, 2006-06-08 at 11:05 -0700, Richard Fish wrote:
 There is simply no way to build libstdc++-v3 with the new compiler; it
 would break any programs that need it.  Gcc likes to make incompatible
 changes in the C++ ABI from one version to the next, so building -v3
 with the new gcc would give you the old stdc++ library, but the new
 ABI, and your programs would be broken.
 
 This is one of the major reasons that gcc uses itself to build itself,
 to make sure that it's ABI is consistent.
 
scarlatti ~ $ genlop libstdc++-v3
 * sys-libs/libstdc++-v3

 Wed Dec 21 10:45:38 2005  sys-libs/libstdc++-v3-3.3.4
 Sun Mar  5 07:58:19 2006  sys-libs/libstdc++-v3-3.3.6
 Sat Mar 18 13:23:43 2006  sys-libs/libstdc++-v3-3.3.6
 Sun Apr  2 04:07:24 2006  sys-libs/libstdc++-v3-3.3.6
scarlatti ~ $ equery depends libstdc++-v3
[ Searching for packages depending on libstdc++-v3... ]
sys-devel/gcc-3.4.6-r1

I definitely built libstdc++-v3 with gcc-4.1.1, but interestingly genlop
doesn't report any USE or CFLAGS for it. Hmmm.

scarlatti ~ $ genlop -i libstdc++-v3
 * sys-libs/libstdc++-v3


   Total builds: 4
   Global build time: 59 minutes and 57 seconds.
   Average merge time: 14 minutes and 59 seconds.

   Info about currently installed ebuild:

   * sys-libs/libstdc++-v3-3.3.6
   Install date: Sun Apr  2 04:07:24 2006

Anyway, I haven't had any problems, but maybe that's because no package
I have uses libstdc++-v3.

--- Vladimir

Vladimir G. Ivanovic
Palo Alto, CA 94306
+1 650 678 8014
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] GETPASS_ASTERISKS

2006-06-09 Thread Paul Stear
Hi all,
I am logged into kde 3.5.3 as a user and when I run the superuser konsole I am 
asked for root's password, this I enter as normal but I get the following 
error message:-
configuration error - unknown item 'GETPASS_ASTERISKS' (notify administrator)

It still works for emerges etc.
Is this a problem that needs to be fixed or should I just live with it?

Paul
-- 
This message has been sent using kmail with gentoo linux
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] GETPASS_ASTERISKS

2006-06-09 Thread Dirk Heinrichs
Am Freitag, 9. Juni 2006 14:04 schrieb ext Paul Stear:

 configuration error - unknown item 'GETPASS_ASTERISKS' (notify
 administrator)

See http://bugs.gentoo.org/show_bug.cgi?id=135987. Just comment out this 
variable in /etc/login.defs.

HTH...

Dirk
-- 
Dirk Heinrichs  | Tel:  +49 (0)162 234 3408
Configuration Manager   | Fax:  +49 (0)211 47068 111
Capgemini Deutschland   | Mail: [EMAIL PROTECTED]
Hambornerstraße 55  | Web:  http://www.capgemini.com
D-40472 Düsseldorf  | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net


pgpnyxqPhAK6p.pgp
Description: PGP signature


[gentoo-user] removing esearch leaves /usr/lib/esearch/common.pyc

2006-06-09 Thread Allan Gottlieb
I am trying out eix to replace esearch.  When I did an
  emerge --unmerge --ask esearch
/usr/lib/esearch/common.pyc remains

Am I correct in believing that this is a compiled version of
/usr/lib/esearch/common.py and should be removed?  If so I will file a
bug.

thanks,
allan
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] jpeg compilation error

2006-06-09 Thread Alan McKinnon
On Friday 09 June 2006 12:28, Arnau Bria wrote:
 On a first google and gentoo forums search[1],  I found that emerge
 -oneshot libtool will solve my problem. But, could someone explain
 me why do not add the packages to the world profile for later
 updating will solve my problem?

It's emerge libtool that will solve your problem, it has nothing to do 
with the world file. --oneshot does a full emerge except does not add 
the package to world.

-- 
If only me, you and dead people understand hex, 
how many people understand hex?

Alan McKinnon
alan at linuxholdings dot co dot za
+27 82, double three seven, one nine three five

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Flash and Xorg 7.1?

2006-06-09 Thread Jim
* on the Fri, Jun 09, 2006 at 12:39:40AM -0400, Willie Wong said:
 I am not quite sure what went wrong. 
 
 The result: http://www.math.princeton.edu/~wwong/20061600026.png
 whenever I try to access a website with flash content on it, the
 weird bands of messed-up stuff appear across the screen. It does go
 away after I close the offending tab, and performs some action that
 forces X to redraw. 
 
 This started happening after I did a largish update after being away
 for 2.5 weeks. I think the problem is either with X, firefox, or
 flash, though it might go as far as the video driver. Any ideas?
 (Or, can anyone reproduce the behaviour?)
 
 
 And so I use the built-in radeon drivers. 
 
 Thanks, 
 
   Willie

I have the same issue.  I upgraded gcc to 4.1.x and that has been a mess
since I rebooted.  I need to rebuild world :-)

I get the same flash issue.  Simple flash sites work, flash sites with
video mostly puke now.  I also get display issues with gnome-terminal
where all/most of the text becomes invisible until I hit enter and then
it is redrawn.

I use the binary NVidia driver and thought it was releated to that.
However I am currently downgrading x11-libs/libX11, x11-base/xorg-server
and x11-base/xorg-x11 and all the installed drivers I have under
x11-drivers/*.

I hope this will fix me up because right now I cannot get into Gnome.

Jim
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
You roll an 18 in Dex and see if you
don't end up with a girlfriend
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
JimD
Central FL, USA, Earth, Sol
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Flash and Xorg 7.1?

2006-06-09 Thread JimD
Jim wrote:
 I have the same issue.  I upgraded gcc to 4.1.x and that has been a mess
 since I rebooted.  I need to rebuild world :-)
 
 I get the same flash issue.  Simple flash sites work, flash sites with
 video mostly puke now.  I also get display issues with gnome-terminal
 where all/most of the text becomes invisible until I hit enter and then
 it is redrawn.
 
 I use the binary NVidia driver and thought it was releated to that.
 However I am currently downgrading x11-libs/libX11, x11-base/xorg-server
 and x11-base/xorg-x11 and all the installed drivers I have under
 x11-drivers/*.
 
 I hope this will fix me up because right now I cannot get into Gnome.
 
 Jim

Doing the above got me back in to Gnome.  I am now just having an issue
with gdm, but that is not a big deal.  I am going to do a quick bash
script to grep all the environment.bz2 files under /var/db/pkg and see
which ones were compiled with gcc 3.4.x so I can recompile with gcc
4.1.x.  I don't feel like rebuilding world, it takes too long and I have
rebuilt some packages already.  I should have heeded the warnings about
upgrading gcc :-)

Jim
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
You roll an 18 in Dex and see if you
don't end up with a girlfriend
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
JimD
Central FL, USA, Earth, Sol
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Alan
Wanted to do some installs today and suddenly my portage is puking out
with 

Traceback (most recent call last):
  File /usr/bin/emerge, line 10, in ?
import portage
  File /usr/lib/portage/pym/portage.py, line 7187, in ?

settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
  File /usr/lib/portage/pym/portage.py, line 946, in __init__
mypath = os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
IndexError: list index out of range

This happens with any emerge command.  I'm going to guess that something
got currupted somewhere along the way, any suggestions on how to unbreak
it (without downloading a binary hopefully :)?

The last things in my emerge.log are installing the man-pages package,
and a couple of these:

1149810120: Started emerge on: Jun 08, 2006 16:42:00
1149810120:  *** emerge --ask --verbose jabberd jabber-base yahoo-transport 
twisted-words twisted-web twisted
1149810121:  *** terminating.

(nothing actually installed).

Any ideas?

TIA


Thanks.

-- 
Alan [EMAIL PROTECTED] - http://arcterex.net

Backups are for people who don't pray. -- big Mike
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Zac Medico
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Alan wrote:
 Wanted to do some installs today and suddenly my portage is puking out
 with 
 
 Traceback (most recent call last):
   File /usr/bin/emerge, line 10, in ?
 import portage
   File /usr/lib/portage/pym/portage.py, line 7187, in ?
 
 settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
   File /usr/lib/portage/pym/portage.py, line 946, in __init__
 mypath = os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
 IndexError: list index out of range
 

That's bug 136209.  Here's the fix:

echo '..'  /usr/portage/profiles/default-linux/amd64/parent

Zac
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEibZd/ejvha5XGaMRAj3DAJ0fNqVNjZYPrFMHHyLP2+zA3e7aEACgzDyK
BMM616uI/cqCKiW7WaiIyy0=
=xwgL
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Alan
On Fri, Jun 09, 2006 at 10:56:47AM -0700, Zac Medico wrote:
 Alan wrote:
  Wanted to do some installs today and suddenly my portage is puking out
  with 
  
  Traceback (most recent call last):
File /usr/bin/emerge, line 10, in ?
  import portage
File /usr/lib/portage/pym/portage.py, line 7187, in ?
  
  settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
File /usr/lib/portage/pym/portage.py, line 946, in __init__
  mypath = os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
  IndexError: list index out of range
  
 
 That's bug 136209.  Here's the fix:
 
 echo '..'  /usr/portage/profiles/default-linux/amd64/parent

Perfect, thanks Zac. 

-- 
Alan [EMAIL PROTECTED] - http://arcterex.net

Backups are for people who don't pray. -- big Mike


pgp8cS9fPuFR0.pgp
Description: PGP signature


RE: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Daevid Vincent
Thanks everybody that was the trick. I settled upon this:

BUS==usb, KERNEL==sd?1, SYSFS{idVendor}==0ef5,
SYSFS{idProduct}==2202, SYMLINK=istick%n, MODE=0666

And for my /etc/fstab entry:
/dev/istick1  /mnt/istick  vfat  defaults,noauto,user,umask=000  0 0

Now the second part of this. SOMETIMES, when I plug the stick in (I assume
that's when it happens), KDE gives me a nice little window to view the files
or take no action. But it's not consistent?! What triggers that 'event', and
how can I make it happen all the time?

Also related, is there an easy way to make this stick auto un/mount upon
removal/insertion respectively?

I tried taking out the 'noauto' in fstab, but that didn't do it.

I saw some web search results, but most of them feel outdated, or for other
distros.

DÆVID  


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread znx

On 09/06/06, Daevid Vincent [EMAIL PROTECTED] wrote:

Also related, is there an easy way to make this stick auto un/mount upon
removal/insertion respectively?


Try looking into autofs .. simple to setup and works really well for
me with my USB/CD-ROM devices.

Mark
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] gcc-4.1.1

2006-06-09 Thread Richard Fish

On 6/9/06, Vladimir G. Ivanovic [EMAIL PROTECTED] wrote:

I definitely built libstdc++-v3 with gcc-4.1.1, but interestingly genlop
doesn't report any USE or CFLAGS for it. Hmmm.


Look at the ebuild for libstdc++-v3.  It actually builds gcc-3.3 with
C++ support, and then pulls the libstdc++.so library out of that.  As
we've already discussed, gcc uses itself to build itself, so you
actually built libstdc++-v3 with gcc-3.3.

-Richard
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Richard Fish

On 6/9/06, Daevid Vincent [EMAIL PROTECTED] wrote:

Thanks everybody that was the trick. I settled upon this:

BUS==usb, KERNEL==sd?1, SYSFS{idVendor}==0ef5,
SYSFS{idProduct}==2202, SYMLINK=istick%n, MODE=0666


One problem with this.  Udev will apply all matching rules until it
finds one with a NAME entry.  So you probably want MODE:=0666 to
prevent any later rules from overwriting your mode.

-Richard
--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread neil

-Original Message-

From:  Daevid Vincent [EMAIL PROTECTED]
Subj:  RE: [gentoo-user] help with UDEV and USB flash drive
Date:  Fri 9 Jun 2006 20:32
Size:  848 bytes
To:  gentoo-user@lists.gentoo.org


Now the second part of this. SOMETIMES, when I plug the stick in (I assume
that's when it happens), KDE gives me a nice little window to view the files
or take no action. But it's not consistent?! What triggers that 'event', and
how can I make it happen all the time?

KDE uses HAL for this, but it can take a few seconds to see the device. You 
don't need an fstab entry for this, it may even confuse things.

Also related, is there an easy way to make this stick auto un/mount upon
removal/insertion respectively?

KDE will do that, and open a window too if you want it. It is set in the 
Control Centre.




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Daniel Drake

Richard Fish wrote:

One problem with this.  Udev will apply all matching rules until it
finds one with a NAME entry.  So you probably want MODE:=0666 to
prevent any later rules from overwriting your mode.


This isn't entirely true, udev doesn't stop at NAME any more. It stops 
at the end of the rules files, or when it sees OPTIONS=last_rule.


Daniel

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Mark Knecht

On 6/9/06, Zac Medico [EMAIL PROTECTED] wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Alan wrote:
 Wanted to do some installs today and suddenly my portage is puking out
 with

 Traceback (most recent call last):
   File /usr/bin/emerge, line 10, in ?
 import portage
   File /usr/lib/portage/pym/portage.py, line 7187, in ?
 
settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
   File /usr/lib/portage/pym/portage.py, line 946, in __init__
 mypath = os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
 IndexError: list index out of range


That's bug 136209.  Here's the fix:

echo '..'  /usr/portage/profiles/default-linux/amd64/parent

Zac
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEibZd/ejvha5XGaMRAj3DAJ0fNqVNjZYPrFMHHyLP2+zA3e7aEACgzDyK
BMM616uI/cqCKiW7WaiIyy0=
=xwgL
-END PGP SIGNATURE-
--
gentoo-user@gentoo.org mailing list


Thanks Zac,
  I had the same problem and this fix worked great. (Thanks to the
AMD64 list for pointing me here.)

  At the same time the previous error started I also got this second
error with layman:

lightning ~ # layman -s pro-audio
* Running command /usr/bin/svn update /usr/portage/local/layman/pro-audio...
/usr/bin/svn: symbol lookup error: /usr/lib64/libaprutil-0.so.0:
undefined symbol: gdbm_errno
* Successfully synchronized overlay pro-audio.
lightning ~ #

  Any ideas on this one? It was not fixed using the echo command, but
it seems similar to me. I don't know what libaprutil is. I don't see
it using eix.

Cheers,
Mark
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread James Ausmus

On 6/9/06, Mark Knecht [EMAIL PROTECTED] wrote:

On 6/9/06, Zac Medico [EMAIL PROTECTED] wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Alan wrote:
  Wanted to do some installs today and suddenly my portage is puking out
  with
 
  Traceback (most recent call last):
File /usr/bin/emerge, line 10, in ?
  import portage
File /usr/lib/portage/pym/portage.py, line 7187, in ?
  
settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
File /usr/lib/portage/pym/portage.py, line 946, in __init__
  mypath = os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
  IndexError: list index out of range
 

 That's bug 136209.  Here's the fix:

 echo '..'  /usr/portage/profiles/default-linux/amd64/parent

 Zac
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.3 (GNU/Linux)

 iD8DBQFEibZd/ejvha5XGaMRAj3DAJ0fNqVNjZYPrFMHHyLP2+zA3e7aEACgzDyK
 BMM616uI/cqCKiW7WaiIyy0=
 =xwgL
 -END PGP SIGNATURE-
 --
 gentoo-user@gentoo.org mailing list

Thanks Zac,
   I had the same problem and this fix worked great. (Thanks to the
AMD64 list for pointing me here.)

   At the same time the previous error started I also got this second
error with layman:

lightning ~ # layman -s pro-audio
* Running command /usr/bin/svn update /usr/portage/local/layman/pro-audio...
/usr/bin/svn: symbol lookup error: /usr/lib64/libaprutil-0.so.0:
undefined symbol: gdbm_errno
* Successfully synchronized overlay pro-audio.
lightning ~ #



Run revdep-rebuild, you have some applications of out sync with
updated versions of shared libraries.

-James



   Any ideas on this one? It was not fixed using the echo command, but
it seems similar to me. I don't know what libaprutil is. I don't see
it using eix.

Cheers,
Mark
--
gentoo-user@gentoo.org mailing list



--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] viewing consoles remotely

2006-06-09 Thread Daevid Vincent
 -Original Message-
 From: Ryan Tandy [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, June 01, 2006 9:58 PM
 
 For your situation, assuming I've interpreted it correctly, 
 you should 
 get the user to SSH into your box, set their shell in /etc/passwd to 
 /usr/bin/screen -S (something memorable) /bin/bash, and yourself run 
 sudo screen -x (something memorable) to view it.

I tried this suggestion, but it didn't work. I couldn't login. :(

I would LOVE to make screen (and BASH) my default shell. I'm always ssh'ing
into my servers and getting upset if the connection goes down between me and
them, or I start an emerge and then forgot that I can't actually shut down
my host computer as that will kill the ssh and therefore the emerge.

I want screen to start up automatically as my default shell (as bash, with
all my .bashrc settings, etc) whenever I connect either via console or ssh.
I also would like to automatically re-attach to that screen whenever I login
again.

Is this possible? And if so, what do I need to put in /etc/password or
wherever. I could put it in a .bash* file, but that seems hackish (given the
idea in Ryan's quote above).

DÆVID  


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] sudo requires password twice

2006-06-09 Thread Daevid Vincent
I recently did an update world and had that 'pam'/'shadow' issue. 
Followed these pages:
http://planet.gentoo.org/developers/flameeyes/2006/03/19/the_shadow_and_pam_
login_conflict
http://www.mail-archive.com/gentoo-user@lists.gentoo.org/msg35692.html

Everything seems fine. 
I've rebooted many times since. 
I can login from ssh or console. 

One odd behaviour:

[EMAIL PROTECTED] ~ $ sudo ifconfig
Password:
Password:
eth0  Link encap:Ethernet  HWaddr 00:08:74:E0:5C:3B  
  inet addr:172.16.35.234  Bcast:172.16.63.255  Mask:255.255.224.0
...

Whenever I first type 'sudo' I am prompted twice?! Then of course sudo
remembers me for 5 minutes or whatever the timeout is, so subsequent 'sudo'
calls are not prompted.

I don't know if this is relevant, but perhaps it has to do with the pam
thing above?

locutus ~ # cat /etc/pam.d/sudo
# File autogenerated by pamd_mimic_system in pam eclass

auth   required /lib/security/pam_stack.so service=system-auth
auth   required /lib/security/pam_nologin.so

authinclude system-auth
account include system-auth
passwordinclude system-auth
session include system-auth

ÐÆ5ÏÐ 


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] audiocd:/ kioslave no more working with kde 3.5

2006-06-09 Thread b.n.
Hi,
I did upgrade to kde 3.5 when it got stable. Everything smooth, but
today I was for ripping some audio cd and the audiocd:/ kioslave seems
no more working.

Konqueror does not recognize the audiocd as such and tries to mount it -
failing, of course. If I digit audiocd:/ in konqueror it says Could
not read.

However I'm able to read the cd with XMMS, for example.

What can I do to have my audiocd: kioslave back?

Thanks,
m.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] audiocd:/ kioslave no more working with kde 3.5

2006-06-09 Thread Teresa and Dale
b.n. wrote:

Hi,
I did upgrade to kde 3.5 when it got stable. Everything smooth, but
today I was for ripping some audio cd and the audiocd:/ kioslave seems
no more working.

Konqueror does not recognize the audiocd as such and tries to mount it -
failing, of course. If I digit audiocd:/ in konqueror it says Could
not read.

However I'm able to read the cd with XMMS, for example.

What can I do to have my audiocd: kioslave back?

Thanks,
m.
  


This may worth looking into.  Look and see if it is here: 
/usr/kde/3.5/bin/kioslave.  If not, emerge -pv kdelibs and see if maybe
a flag has been changed or something.  I read where they made some
changes to the way KDE packages are done so that may have something to
do with it.  Equery reports this:

 [EMAIL PROTECTED] / # equery belongs kioslave
 [ Searching for file(s) kioslave in *... ]
 kde-base/kdebase-3.4.1-r1 (/usr/kde/3.4/share/doc/HTML/en/kioslave)
 kde-base/kdemultimedia-kioslaves-3.5.3
 (/usr/kde/3.5/share/doc/HTML/en/kioslave)
 kde-base/kdelibs-3.5.3 (/usr/kde/3.5/bin/kioslave)
 kde-base/kdelibs-3.5.3
 (/usr/kde/3.5/share/doc/HTML/en/kdelibs-apidocs/kioslave)
 kde-base/kdebase-kioslaves-3.5.3 (/usr/kde/3.5/share/doc/HTML/en/kioslave)
 [EMAIL PROTECTED] / #


It looks like the command belongs to kdelibs to me.  Maybe someone else
knows more than me.  ;-)  That's very likely too.  LOL

Dale
:-)  :-)

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Date is always slightly off by a few minutes

2006-06-09 Thread Daevid Vincent
This is just annoying moreso than anything...

Whenever I boot into Gentoo, my clock is always a few minutes off -- usually
between 5 and 7 minutes. I have to do an ntp sync to right it every time.

What is more confusing, is that XP (I dual boot my Dell i8200 notebook) is
the correct time, and so is the actual BIOS !!!?

locutus ~ # date
Fri Jun  9 15:17:35 PDT 2006

locutus ~ # /etc/init.d/ntp-client restart
 * Setting clock via the NTP client 'ntpdate' ... 

locutus ~ # date
Fri Jun  9 15:13:23 PDT 2006

locutus etc # cat /etc/timezone 
America/Los_Angeles

I've tried to 'hwclock --hctosys'

locutus conf.d # cat clock 
# /etc/conf.d/clock

# Set CLOCK to UTC if your system clock is set to UTC (also known as
# Greenwich Mean Time).  If your clock is set to the local time, then 
# set CLOCK to local.  Note that if you dual boot with Windows, then 
# you should set it to local.

CLOCK=local

# If you wish to pass any other arguments to hwclock during bootup, 
# you may do so here.

CLOCK_OPTS=

# If you want to set the Hardware Clock to the current System Time 
# during shutdown, then say yes here.

CLOCK_SYSTOHC=no

ÐÆ5ÏÐ 


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Date is always slightly off by a few minutes

2006-06-09 Thread James Ausmus

On 6/9/06, Daevid Vincent [EMAIL PROTECTED] wrote:

This is just annoying moreso than anything...

Whenever I boot into Gentoo, my clock is always a few minutes off -- usually
between 5 and 7 minutes. I have to do an ntp sync to right it every time.

What is more confusing, is that XP (I dual boot my Dell i8200 notebook) is
the correct time, and so is the actual BIOS !!!?

locutus ~ # date
Fri Jun  9 15:17:35 PDT 2006

locutus ~ # /etc/init.d/ntp-client restart
 * Setting clock via the NTP client 'ntpdate' ...

locutus ~ # date
Fri Jun  9 15:13:23 PDT 2006

locutus etc # cat /etc/timezone
America/Los_Angeles

I've tried to 'hwclock --hctosys'

locutus conf.d # cat clock
# /etc/conf.d/clock

# Set CLOCK to UTC if your system clock is set to UTC (also known as
# Greenwich Mean Time).  If your clock is set to the local time, then
# set CLOCK to local.  Note that if you dual boot with Windows, then
# you should set it to local.

CLOCK=local

# If you wish to pass any other arguments to hwclock during bootup,
# you may do so here.

CLOCK_OPTS=

# If you want to set the Hardware Clock to the current System Time
# during shutdown, then say yes here.

CLOCK_SYSTOHC=no

Change this to yes - your BIOS clock is off, this will set your BIOS
clock to match your updated Gentoo clock when you shutdown Gentoo...

-James




ÐÆ5ÏÐ


--
gentoo-user@gentoo.org mailing list




--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with UDEV and USB flash drive

2006-06-09 Thread Richard Fish

On 6/9/06, Daniel Drake [EMAIL PROTECTED] wrote:

Richard Fish wrote:
 One problem with this.  Udev will apply all matching rules until it
 finds one with a NAME entry.  So you probably want MODE:=0666 to
 prevent any later rules from overwriting your mode.

This isn't entirely true, udev doesn't stop at NAME any more. It stops
at the end of the rules files, or when it sees OPTIONS=last_rule.


Ah, thanks.

Sadly, this change is not noted in
/usr/share/doc/udev-*/RELEASE-NOTES.gz file.  The 057 notes specify
the stop-on-NAME behavior, and nothing newer (at least through 090)
retracts  that statement.

-Richard
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] audiocd:/ kioslave no more working with kde 3.5

2006-06-09 Thread b.n.
Teresa and Dale wrote:
 This may worth looking into.  Look and see if it is here: 
 /usr/kde/3.5/bin/kioslave.  

Yes, I checked, it is. Other kioslaves (sftp, for example) work.

 If not, emerge -pv kdelibs and see if maybe
 a flag has been changed or something.  I read where they made some
 changes to the way KDE packages are done so that may have something to
 do with it.  Equery reports this:

Probably. I checked kdemultimedia-kioslaves USE flags and these are set:
# equery uses kdemultimedia-kioslaves
(snip)
[ Found these USE variables for kde-base/kdemultimedia-kioslaves-3.5.2 ]
 U I
 - - arts: Adds support for aRts: the KDE sound daemon
 - - debug   : Tells configure and the makefiles to build
for debugging. Effects vary across packages, but generally it will at
least add -g to CFLAGS. Remember to set FEATURES=nostrip too
 + + encode  : Adds support for encoding of audio or video files
 + + flac: Adds support for the flac audio codec
 - - kdeenablefinal  : Makes kde ebuilds use the enable-final flag,
yielding big compilation speedups at the cost of very heavy mem usage
 - - kdehiddenvisibility : Makes KDE symbols hidden by default, requires
GCC 4.1 (experimental)
 + + mp3 : Add support for reading mp3 files
 + + vorbis  : Adds support for the OggVorbis audio codec
 - - xinerama: Add support for the xinerama X11 extension,
which allows you to stretch your display across multiple monitors

...encode, mp3 and flac -that look relevant to me- are all enabled...

m.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Mark Knecht

On 6/9/06, James Ausmus [EMAIL PROTECTED] wrote:

On 6/9/06, Mark Knecht [EMAIL PROTECTED] wrote:
 On 6/9/06, Zac Medico [EMAIL PROTECTED] wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  Alan wrote:
   Wanted to do some installs today and suddenly my portage is puking out
   with
  
   Traceback (most recent call last):
 File /usr/bin/emerge, line 10, in ?
   import portage
 File /usr/lib/portage/pym/portage.py, line 7187, in ?
   
settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
 File /usr/lib/portage/pym/portage.py, line 946, in __init__
   mypath = os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
   IndexError: list index out of range
  
 
  That's bug 136209.  Here's the fix:
 
  echo '..'  /usr/portage/profiles/default-linux/amd64/parent
 
  Zac
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.4.3 (GNU/Linux)
 
  iD8DBQFEibZd/ejvha5XGaMRAj3DAJ0fNqVNjZYPrFMHHyLP2+zA3e7aEACgzDyK
  BMM616uI/cqCKiW7WaiIyy0=
  =xwgL
  -END PGP SIGNATURE-
  --
  gentoo-user@gentoo.org mailing list

 Thanks Zac,
I had the same problem and this fix worked great. (Thanks to the
 AMD64 list for pointing me here.)

At the same time the previous error started I also got this second
 error with layman:

 lightning ~ # layman -s pro-audio
 * Running command /usr/bin/svn update /usr/portage/local/layman/pro-audio...
 /usr/bin/svn: symbol lookup error: /usr/lib64/libaprutil-0.so.0:
 undefined symbol: gdbm_errno
 * Successfully synchronized overlay pro-audio.
 lightning ~ #


Run revdep-rebuild, you have some applications of out sync with
updated versions of shared libraries.

-James


James,
  Sorry. Should have said that I had done that already. Seemed
obvious that some library was missing but revdep-rebuild didn't find
one to install. It says the machine is clean.

  I also did a number of emerge --deep --update --newuse world
operations trying to find things that might be neede dor updatable but
nothing turned up.

Stumped,
Mark
--
gentoo-user@gentoo.org mailing list



SOLVED - Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Mark Knecht

emerge subversion took care of it. Whatever was wrong was not caught
by revdep-rebuild. I'm not sure if this is a bug. should it be
submitted to bugzilla?

Thanks for your help.

Cheers,
Mark

On 6/9/06, Mark Knecht [EMAIL PROTECTED] wrote:

On 6/9/06, James Ausmus [EMAIL PROTECTED] wrote:
 On 6/9/06, Mark Knecht [EMAIL PROTECTED] wrote:
  On 6/9/06, Zac Medico [EMAIL PROTECTED] wrote:
   -BEGIN PGP SIGNED MESSAGE-
   Hash: SHA1
  
   Alan wrote:
Wanted to do some installs today and suddenly my portage is puking out
with
   
Traceback (most recent call last):
  File /usr/bin/emerge, line 10, in ?
import portage
  File /usr/lib/portage/pym/portage.py, line 7187, in ?

settings=config(config_profile_path=PROFILE_PATH,config_incrementals=portage_const.INCREMENTALS)
  File /usr/lib/portage/pym/portage.py, line 946, in __init__
mypath = 
os.path.normpath(mypath+///+grabfile(mypath+/parent)[0])
IndexError: list index out of range
   
  
   That's bug 136209.  Here's the fix:
  
   echo '..'  /usr/portage/profiles/default-linux/amd64/parent
  
   Zac
   -BEGIN PGP SIGNATURE-
   Version: GnuPG v1.4.3 (GNU/Linux)
  
   iD8DBQFEibZd/ejvha5XGaMRAj3DAJ0fNqVNjZYPrFMHHyLP2+zA3e7aEACgzDyK
   BMM616uI/cqCKiW7WaiIyy0=
   =xwgL
   -END PGP SIGNATURE-
   --
   gentoo-user@gentoo.org mailing list
 
  Thanks Zac,
 I had the same problem and this fix worked great. (Thanks to the
  AMD64 list for pointing me here.)
 
 At the same time the previous error started I also got this second
  error with layman:
 
  lightning ~ # layman -s pro-audio
  * Running command /usr/bin/svn update 
/usr/portage/local/layman/pro-audio...
  /usr/bin/svn: symbol lookup error: /usr/lib64/libaprutil-0.so.0:
  undefined symbol: gdbm_errno
  * Successfully synchronized overlay pro-audio.
  lightning ~ #
 

 Run revdep-rebuild, you have some applications of out sync with
 updated versions of shared libraries.

 -James

James,
   Sorry. Should have said that I had done that already. Seemed
obvious that some library was missing but revdep-rebuild didn't find
one to install. It says the machine is clean.

   I also did a number of emerge --deep --update --newuse world
operations trying to find things that might be neede dor updatable but
nothing turned up.

Stumped,
Mark


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] KAlarm now broken -- suffers many SIGFPE alarms

2006-06-09 Thread Kevin O'Gorman
Yep, that did it. Kalarm is now happy and behaving itself.Thanks, Jesse.++ kevinOn 6/8/06, Kevin O'Gorman 
[EMAIL PROTECTED] wrote:
On 6/8/06, Jesse Hannah [EMAIL PROTECTED] wrote:

Kevin O'Gorman wrote: It doesn't die.And it usually doesn't do it when I'm around, but when I come back to my system in the morning there are usually 200 or so crash dialogs waiting for me, all indicating the application suffered a SIGFPE (floating
 point error?).But it keeps on working anyway. Am I alone with this? ++ kevinProbably not, depends on the version of KAlarm
 that you're using. But morelikely than anything else is that something didn't quite compile right when
you were emerging whatever KAlarm's parent package (kdepim?) is. I've hadthat happen with other things such as xine-lib, and I've discovered that ifsomething keeps crashing re-emerging it (or its parent package, in 
KAlarm's
case) usually fixes the problem. And, a SIGFPE is the sort of thing that abuild problem would be the cause of.General rule of thumb: If it crashes, rebuild it. :D--Jesse Hannah


That sounds like really good advice, so I investigated a bit. There indeed
seems some sort of conflict between kdepim and kalarm. There's something
familiar about the pattern of blocking I saw with emerge -pe kalarm kdepim
that made me try unmerging both of them first . I'm doing a new emerge
--oneshot now. Wish me luck. Maybe my list of alarms will survive?
-- Kevin O'Gorman, PhD

-- Kevin O'Gorman, PhD


Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Paul Varner
On Fri, 2006-06-09 at 17:40 -0700, Mark Knecht wrote:
  At the same time the previous error started I also got this second
   error with layman:
  
   lightning ~ # layman -s pro-audio
   * Running command /usr/bin/svn update 
   /usr/portage/local/layman/pro-audio...
   /usr/bin/svn: symbol lookup error: /usr/lib64/libaprutil-0.so.0:
   undefined symbol: gdbm_errno
   * Successfully synchronized overlay pro-audio.
   lightning ~ #
Sorry. Should have said that I had done that already. Seemed
 obvious that some library was missing but revdep-rebuild didn't find
 one to install. It says the machine is clean.
 

Mark,

unfortunately, you've hit one of the cases that revdep-rebuild can't
detect.  Run 'equery belongs /usr/lib64/libaprutil-0.so.0' and rebuild
the identified package.

Regards,
Paul
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] An alternative to http-replicator

2006-06-09 Thread Walter Dnes
  We want to be kinder and gentler to the Gentoo mirrors.  I have 2
machines; my main machine and a 1999 450 mhz PIII as hot backup.  I
try to keep the backup up to date with apps duplicating the main
machine, so that if the main machine dies, I can restore some data from
backups and be running in a couple of hours.

  The procedure for emerge --rsync using the main machine as server is
simple.  I'll now present my solution for /usr/portage/distfiles.  This
obviously works best for machines with a similar set of apps.  Run
emerge update on the server machine first.  It'll get the tarballs it
needs, and they'll be sitting in /usr/portage/distfiles, waiting to be
served out to other machines in your LAN that need the same tarballs.

  I use the boa webserver.  It's lighweight, simple to configure, and
you can run multiple instances simultaneously.  That is the best way to
separate privileges for different clients.

  *IMPORTANT*  Gentoo's emerge command always looks in the distfiles
folder below whatever URL it's given for a mirror.  E.g. if I specify
http://www.bad.example.com; as the mirror to use, emerge will look in
http://www.bad.example.com/distfiles;.  The Alias declaration in
boa.conf handles this.  The secondary machine's /etc/make.conf has the
line...

GENTOO_MIRRORS=http://192.168.123.252:1024 ftp://ftp.ndlug.nd.edu/pub/gentoo/ 
http://mirror.datapipe.net/gentoo;

so it'll try my main machine (192.168.123.252 on port 1024) first.  I
invoke the portage server dedicated boa with the command...
boa -c /root/.boa/portage/
which implies that the config file to use is /root/.boa/portage/boa.conf

My /root/.boa/portage/boa.conf currently looks like so...

Port 1024
Listen 192.168.123.252
User nobody
Group nogroup
ErrorLog /var/log/boa/portage/error_log
AccessLog /var/log/boa/portage/access_log
DocumentRoot /usr/portage/distfiles/
UseLocaltime
DirectoryMaker /usr/lib/boa/boa_indexer
KeepAliveMax 1000
KeepAliveTimeout 10
MimeTypes /etc/boa/mime.types
DefaultType text/plain
Alias /distfiles /usr/portage/distfiles

  Note that in addition to using a dedicated I/O port, the portage
instance of boa also has its own log files.

-- 
Walter Dnes [EMAIL PROTECTED] In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sudden portage error list index out of range

2006-06-09 Thread Mark Knecht

On 6/9/06, Paul Varner [EMAIL PROTECTED] wrote:

On Fri, 2006-06-09 at 17:40 -0700, Mark Knecht wrote:
  At the same time the previous error started I also got this second
   error with layman:
  
   lightning ~ # layman -s pro-audio
   * Running command /usr/bin/svn update 
/usr/portage/local/layman/pro-audio...
   /usr/bin/svn: symbol lookup error: /usr/lib64/libaprutil-0.so.0:
   undefined symbol: gdbm_errno
   * Successfully synchronized overlay pro-audio.
   lightning ~ #
Sorry. Should have said that I had done that already. Seemed
 obvious that some library was missing but revdep-rebuild didn't find
 one to install. It says the machine is clean.


Mark,

unfortunately, you've hit one of the cases that revdep-rebuild can't
detect.  Run 'equery belongs /usr/lib64/libaprutil-0.so.0' and rebuild
the identified package.

Regards,
Paul
--
gentoo-user@gentoo.org mailing list




Indeed Paul, that's essentially what I did but since it was
/usr/bin/svn that was complaining I did equery on it:

lightning ~ # equery belongs /usr/bin/svn
[ Searching for file(s) /usr/bin/svn in *... ]
dev-util/subversion-1.2.3-r2 (/usr/bin/svn)
lightning ~ #

After emerging subversion the problem went away. However your
suggestion might have worked also:

lightning ~ # equery belongs /usr/lib64/libaprutil-0.so
[ Searching for file(s) /usr/lib64/libaprutil-0.so in *... ]
dev-libs/apr-util-0.9.7 (/usr/lib64/libaprutil-0.so - libaprutil-0.so.0.9.7)
lightning ~ #

Anyway, it's fixed and I appreciate the ideas.

Thanks,
Mark
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] An alternative to http-replicator

2006-06-09 Thread Anielkis Herrera Gonzalez
try torpage http://www.kroon.co.za/torpage.php
-- 

   Ing. Anielkis Herrera González
 Desarrollador de Nova LNX
 Linux User #377809

Universidad de las Ciencias Informáticas
Cuba


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] An alternative to http-replicator

2006-06-09 Thread Michael Weyershäuser
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I don't really see the need for such elaborate setups. I just export
/usr/portage/distfiles via NFS on the server and mount it on all other
boxes...
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEilHV6q4f+IV6B/wRAplLAJ42ZqDtFziHj8FUMX7kNtvDebGZIgCfVEwl
LWe+m+T6khyrTc42tJFIvE4=
=WtNo
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] An alternative to http-replicator

2006-06-09 Thread Teresa and Dale
Michael Weyershäuser wrote:

 I don't really see the need for such elaborate setups. I just export
 /usr/portage/distfiles via NFS on the server and mount it on all other
 boxes...


That is a good way to do it.  I was going to before but I had http thing
set up already.  If you think about it and have all the boxes on the
same network, it would work like a charm.

Dale
:-)  :-)
-- 
gentoo-user@gentoo.org mailing list