Re: [gentoo-user] Virtualbox VMs not running under 3.0.0-gentoo

2011-07-25 Thread Hilco Wijbenga
 Yes, I believe that would be your issue. I just handled that when I first
 moved over to openrc that i just added:
  modules=vboxdrv vboxnetadp vboxnetflt without even thinking out/dealing
 with kernel versions.

 Give it a whirl and see if it works after you reload 'em.

 Changed my modules file and now it works fine.

 Does what you show above work with the new methods? I'd FAR rather
 have that than this mess:

Yes, it does. I have virtually the same setup as you do (i.e.
VirtualBox + NVIDIA) and I did not have to make any changes when
upgrading to 3.0.



Re: [gentoo-user] root fs moved, but no init

2011-07-25 Thread Neil Bothwick
On Sun, 24 Jul 2011 09:49:21 +1000, Adam Carter wrote:

 When booting the kernel successfully mounts /dev/sdb3 as root fs
 Then the system halts at one of the freeing memory messages, but I
 assume the problem is that init isn't executed from /dev/sdb3

Doesn't the kernel say something along the lines of unable to run init
when it can't find it. You can test whether it is getting as far as
trying to run init by adding init=/bin/sh to your kernel options, which
should drop you straight into a shell.


-- 
Neil Bothwick

Two things are infinite: the universe and human stupidity;
 and I'm not sure about the the universe.
 (Albert Einstein)


signature.asc
Description: PGP signature


[gentoo-user] Running out of space on /var partition

2011-07-25 Thread Mick
After some deliberation I've started emerging libreoffice.  It gave the usual 
office suite warnings at the beginning that there isn't enough space in /var 
(I have 5.8G and it was asking for more than 7G+).

Half way through the emerge I noticed that I have only 74M left and is going 
down fast!  O_O

OpenOffice was able to emerge in the past using this partition size without a 
problem.  I've flushed logs and what not to free some space, but I'm thinking 
of extending the partition somehow.  I don't run LVM on this machine so that's 
not a solution for this circumstance.

Is there anything I can do with mount --rbind and could I do this in the 
middle of an emerge?  I have another partition with loads of space in it, but 
it has a different fs on it (reiser4 instead of /var's ext4).
-- 
Regards,
Mick


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


Re: [gentoo-user] root fs moved, but no init

2011-07-25 Thread Albert Hopkins


On Sunday, July 24 at 09:49 (+1000), Adam Carter said:

 Summary;
 Copied / from sda3 to sdb3
 Updated the fstab in the new disk (/dev/sdb3   /
 btrfs   noatime,compress=lzo0 0)
 Updated the kernel line's root=/dev/sda3 to /dev/sdb3 in grub.conf,
 but left the root (hd0,0) as it is. So, kernel is loaded from sda but
 init should run from sdb.
 When booting the kernel successfully mounts /dev/sdb3 as root fs
 Then the system halts at one of the freeing memory messages, but I
 assume the problem is that init isn't executed from /dev/sdb3

I wouldn't assume.  If init isn't executed you should get an explicit
error from the kernel:

Kernel panic - not syncing: No init found. Try passing init=
option to the kernel.






Re: [gentoo-user] root fs moved, but no init

2011-07-25 Thread Adam Carter
On Mon, Jul 25, 2011 at 5:57 PM, Neil Bothwick n...@digimed.co.uk wrote:
 On Sun, 24 Jul 2011 09:49:21 +1000, Adam Carter wrote:

 When booting the kernel successfully mounts /dev/sdb3 as root fs
 Then the system halts at one of the freeing memory messages, but I
 assume the problem is that init isn't executed from /dev/sdb3

 Doesn't the kernel say something along the lines of unable to run init
 when it can't find it. You can test whether it is getting as far as
 trying to run init by adding init=/bin/sh to your kernel options, which
 should drop you straight into a shell.

No message about init, just no more console messages. I'll try the
kernel line. Thanks.



Re: [gentoo-user] Running out of space on /var partition

2011-07-25 Thread YoYo Siska
On Mon, Jul 25, 2011 at 11:02:34AM +0100, Mick wrote:
 After some deliberation I've started emerging libreoffice.  It gave the usual 
 office suite warnings at the beginning that there isn't enough space in /var 
 (I have 5.8G and it was asking for more than 7G+).
 
 Half way through the emerge I noticed that I have only 74M left and is going 
 down fast!  O_O
 
 OpenOffice was able to emerge in the past using this partition size without a 
 problem.  I've flushed logs and what not to free some space, but I'm thinking 
 of extending the partition somehow.  I don't run LVM on this machine so 
 that's 
 not a solution for this circumstance.
 
 Is there anything I can do with mount --rbind and could I do this in the 
 middle of an emerge?  I have another partition with loads of space in it, but 
 it has a different fs on it (reiser4 instead of /var's ext4).

You can mount --bind  a dir from a large partition to /var/tmp/portage
before an emerge, but you can't do that during a running emerge. However
with a reasonable buildsystem, you could in theory stop the emerge, copy
over the files in /var/tmp/portage to new location (preserving
timestamps) and then try resuming the emerge with FEATURES=keepwork
noclean, though i don't know if that works well with openoffice...

Also you don't have to mount anything to /var/tmp/portage, you can just
change the dir by setting PORTAGE_TMPDIR to a directory on a partition
with enough space (I normally have my DISTDIR, PKGDIR and PORTAGE_TMP set
on a different partition...)

yoyo



Re: [gentoo-user] Running out of space on /var partition

2011-07-25 Thread Mick
On Monday 25 Jul 2011 11:24:33 YoYo Siska wrote:
 On Mon, Jul 25, 2011 at 11:02:34AM +0100, Mick wrote:
  After some deliberation I've started emerging libreoffice.  It gave the
  usual office suite warnings at the beginning that there isn't enough
  space in /var (I have 5.8G and it was asking for more than 7G+).
  
  Half way through the emerge I noticed that I have only 74M left and is
  going down fast!  O_O
  
  OpenOffice was able to emerge in the past using this partition size
  without a problem.  I've flushed logs and what not to free some space,
  but I'm thinking of extending the partition somehow.  I don't run LVM on
  this machine so that's not a solution for this circumstance.
  
  Is there anything I can do with mount --rbind and could I do this in the
  middle of an emerge?  I have another partition with loads of space in it,
  but it has a different fs on it (reiser4 instead of /var's ext4).
 
 You can mount --bind  a dir from a large partition to /var/tmp/portage
 before an emerge, but you can't do that during a running emerge. However
 with a reasonable buildsystem, you could in theory stop the emerge, copy
 over the files in /var/tmp/portage to new location (preserving
 timestamps) and then try resuming the emerge with FEATURES=keepwork
 noclean, though i don't know if that works well with openoffice...
 
 Also you don't have to mount anything to /var/tmp/portage, you can just
 change the dir by setting PORTAGE_TMPDIR to a directory on a partition
 with enough space (I normally have my DISTDIR, PKGDIR and PORTAGE_TMP set
 on a different partition...)

Oh yes!  Of course, PORTAGE_TMPDIR  what was I thinking?!!

Thank you.

I never understood properly how the mount --bind/rbind works.  I understand 
that the original partition content becomes visible on a second partition, but 
I'm not at all sure what happens when the space on the first partition runs 
out?
-- 
Regards,
Mick


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


Re: [gentoo-user] Running out of space on /var partition

2011-07-25 Thread Kfir Lavi
On Mon, Jul 25, 2011 at 1:02 PM, Mick michaelkintz...@gmail.com wrote:

 After some deliberation I've started emerging libreoffice.  It gave the
 usual
 office suite warnings at the beginning that there isn't enough space in
 /var
 (I have 5.8G and it was asking for more than 7G+).

 Half way through the emerge I noticed that I have only 74M left and is
 going
 down fast!  O_O

 OpenOffice was able to emerge in the past using this partition size without
 a
 problem.  I've flushed logs and what not to free some space, but I'm
 thinking
 of extending the partition somehow.  I don't run LVM on this machine so
 that's
 not a solution for this circumstance.

 Is there anything I can do with mount --rbind and could I do this in the
 middle of an emerge?  I have another partition with loads of space in it,
 but
 it has a different fs on it (reiser4 instead of /var's ext4).
 --
 Regards,
 Mick

Copy /var/tmp/portage to the partition that you have space, then use 'bind'
command to mount.

Kfir


Re: [gentoo-user] root fs moved, but no init

2011-07-25 Thread Adam Carter
 No message about init, just no more console messages. I'll try the
 kernel line. Thanks.

Ok. i ran init from the shell, and it reported /dev/initctl no such
device or directory.

I hadnt copied the contents of /dev across - i thought it was created
automagically?

Anyway, its copied now and I have booted successfully from the sdb.

Thanks Neil and Albert!



Re: [gentoo-user] Kernel panics and more info

2011-07-25 Thread Joost Roeleveld
On Thursday 21 July 2011 10:53:25 Dale wrote:
 Joost Roeleveld wrote:
  On Thursday 21 July 2011 05:54:32 Dale wrote:
  I been working on gathering information for this for a while.  I just
  tried something else.  I use the download helper plugin in Firefox to
  download videos.  Also, it crashes when I am downloading videos but
  that
  is about all I use Firefox for.  I had a light bulb moment and decided
  to see if the same plugin was available for Seamonkey.  It was
  available
  so I installed it.  It works the same as in Firefox.  So, I closed as
  much stuff as I could and started downloading a couple good size
  videos.  After a few minutes, you guessed it, kernel panic followed by
  a
  reboot.  To make sure it was not a fluke or something, I repeated the
  process and got the same result.
  
  Dale,
  
  I would suspect the download-helper-plugin as that is common in both the
  Firefox and Seamonkey crashes.
  Can you provide a link to the plugin you use to allow others to test
  this to see if it works for them?
 
 I'm not sure you are right but it is possible.  Here is a linky:
 
 https://addons.mozilla.org/en-Us/seamonkey/addon/video-downloadhelper/

Looks nice, actually. Even calls ffmpeg to convert the videos to different 
formats.
Will try it this week and will see if it causes issues for me.

 It's pretty straight forward.  I can get a failure by going to youtube
 and starting the download of two or three fairly long movies.  I usually
 middle click and open the video in a new tab.  Then start the download
 and close the tab.  I usually walk off or watch TV while it downloads.
 I have the slow DSL here so it takes a bit to download but it usually
 crashes in a minute or two.  Firefox crashes faster but Seamonkey only
 takes a couple minutes or something.

In a new tab, that could be part of it. Do you also get it if you use a single 
tab? Eg. open video, start download, then wait?

 If anyone tests this, let me know if it messes up.  I'm on amd64
 multilib too.  That may have some effect.

Same here, so should be an interesting test.
I also use the nvidia-drivers and KDE4, so we're pretty close with the 
installed/used software.

-- 
Joost



[gentoo-user] How to trace the origin of a use-flag setting

2011-07-25 Thread Helmut Jarausch
Hi,

emerge -vp app-office/libreoffice

shows that the USE flag  -java  is in effect.

How to find out where this comes from?

I've checked  /etc/portage/package.use  /usr/portage/profiles  and  /
etc/make.conf

Many thanks for a hint,
Helmut.



Re: [gentoo-user] root fs moved, but no init

2011-07-25 Thread Albert Hopkins

On Monday, July 25 at 21:04 (+1000), Adam Carter said:

  No message about init, just no more console messages. I'll try the
  kernel line. Thanks.
 
 Ok. i ran init from the shell, and it reported /dev/initctl no such
 device or directory.
 
 I hadnt copied the contents of /dev across - i thought it was created
 automagically?
 
 Anyway, its copied now and I have booted successfully from the sdb.

There is always (well usually)* an initial /dev created in root.  This is needed
for before udev kicks in.  You should always copy that (and make sure it's /dev 
on
the root fs, not the udev /dev that gets mounted over it.

* This was the cause of a bug in the stage3 tarballs a few weeks back, where 
some /dev
entries did not exist in the tarball and the result was that people were able 
to 
successfully install Gentoo, but were not able to successfully boot into the
installation.






Re: [gentoo-user] Running out of space on /var partition

2011-07-25 Thread YoYo Siska
On Mon, Jul 25, 2011 at 11:40:55AM +0100, Mick wrote:
 On Monday 25 Jul 2011 11:24:33 YoYo Siska wrote:
  On Mon, Jul 25, 2011 at 11:02:34AM +0100, Mick wrote:
   After some deliberation I've started emerging libreoffice.  It gave the
   usual office suite warnings at the beginning that there isn't enough
   space in /var (I have 5.8G and it was asking for more than 7G+).
   
   Half way through the emerge I noticed that I have only 74M left and is
   going down fast!  O_O
   
   OpenOffice was able to emerge in the past using this partition size
   without a problem.  I've flushed logs and what not to free some space,
   but I'm thinking of extending the partition somehow.  I don't run LVM on
   this machine so that's not a solution for this circumstance.
   
   Is there anything I can do with mount --rbind and could I do this in the
   middle of an emerge?  I have another partition with loads of space in it,
   but it has a different fs on it (reiser4 instead of /var's ext4).
  
  You can mount --bind  a dir from a large partition to /var/tmp/portage
  before an emerge, but you can't do that during a running emerge. However
  with a reasonable buildsystem, you could in theory stop the emerge, copy
  over the files in /var/tmp/portage to new location (preserving
  timestamps) and then try resuming the emerge with FEATURES=keepwork
  noclean, though i don't know if that works well with openoffice...
  
  Also you don't have to mount anything to /var/tmp/portage, you can just
  change the dir by setting PORTAGE_TMPDIR to a directory on a partition
  with enough space (I normally have my DISTDIR, PKGDIR and PORTAGE_TMP set
  on a different partition...)
 
 Oh yes!  Of course, PORTAGE_TMPDIR  what was I thinking?!!
 
 Thank you.
 
 I never understood properly how the mount --bind/rbind works.  I understand 
 that the original partition content becomes visible on a second partition, 
 but 
 I'm not at all sure what happens when the space on the first partition runs 
 out?

Not on a second partition but under another mount point i.e. another
path... When you try to access a file by its filename, the kernel takes
the absolute file name, compares it to all the moutend mount points,
takes the best match and tries to find (create)  the file in that
 filesystem/partition...

Lets say you do something like:

mount /dev/sda1 /  (well... you don't actually do this... ;)
mount /dev/sda2 /mnt/sda2
mount --bind /mnt/sda2/bigtmp  /tmp 

Then path /home/yoyo/something is accessing file home/yoyo/something
on partition sda1.

The path /mnt/sda2/somedir/somefile is accessing file somedir/somefile
on partion sda2.

The path /tmp/somedir/somefile is accessing file
bigtmp/somdir/somefile on partition sda2.


The files (and free space) under /mnt/sda2  and /tmp are actually on
partition sda2, everything else is on sda1...


So if sda1 runs out of space (by writing to other places than /mnt/sda2
and /tmp), it doesn't in any any way affect /mnt/sda2 and /tmp which
have their free space from sda2. Conversely if you fill up sda2 by
writing to /tmp, your system partition still has free space ;)


yoyo



Re: [gentoo-user] How to trace the origin of a use-flag setting

2011-07-25 Thread Pandu Poluan
euse -a

part of gentoolkit, I believe.

Ref: http://en.gentoo-wiki.com/wiki/Gentoolkit

Rgds,


On 2011-07-25, Helmut Jarausch jarau...@igpm.rwth-aachen.de wrote:
 Hi,

 emerge -vp app-office/libreoffice

 shows that the USE flag  -java  is in effect.

 How to find out where this comes from?

 I've checked  /etc/portage/package.use  /usr/portage/profiles  and  /
 etc/make.conf

 Many thanks for a hint,
 Helmut.




-- 
--
Pandu E Poluan - IT Optimizer
My website: http://pandu.poluan.info/



Re: [gentoo-user] Running out of space on /var partition

2011-07-25 Thread Mick
On Monday 25 Jul 2011 12:18:34 YoYo Siska wrote:
 On Mon, Jul 25, 2011 at 11:40:55AM +0100, Mick wrote:

  I never understood properly how the mount --bind/rbind works.  I
  understand that the original partition content becomes visible on a
  second partition, but I'm not at all sure what happens when the space on
  the first partition runs out?
 
 Not on a second partition but under another mount point i.e. another
 path... When you try to access a file by its filename, the kernel takes
 the absolute file name, compares it to all the moutend mount points,
 takes the best match and tries to find (create)  the file in that
  filesystem/partition...
 
 Lets say you do something like:
 
 mount /dev/sda1 /  (well... you don't actually do this... ;)
 mount /dev/sda2 /mnt/sda2
 mount --bind /mnt/sda2/bigtmp  /tmp
 
 Then path /home/yoyo/something is accessing file home/yoyo/something
 on partition sda1.
 
 The path /mnt/sda2/somedir/somefile is accessing file somedir/somefile
 on partion sda2.
 
 The path /tmp/somedir/somefile is accessing file
 bigtmp/somdir/somefile on partition sda2.
 
 
 The files (and free space) under /mnt/sda2  and /tmp are actually on
 partition sda2, everything else is on sda1...
 
 
 So if sda1 runs out of space (by writing to other places than /mnt/sda2
 and /tmp), it doesn't in any any way affect /mnt/sda2 and /tmp which
 have their free space from sda2. Conversely if you fill up sda2 by
 writing to /tmp, your system partition still has free space ;)
 
 
 yoyo

I think I got it.  Thanks!
-- 
Regards,
Mick


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


Re: [gentoo-user] How to trace the origin of a use-flag setting

2011-07-25 Thread Mick
On Monday 25 Jul 2011 12:13:49 Helmut Jarausch wrote:
 Hi,
 
 emerge -vp app-office/libreoffice
 
 shows that the USE flag  -java  is in effect.
 
 How to find out where this comes from?
 
 I've checked  /etc/portage/package.use  /usr/portage/profiles  and  /
 etc/make.conf

euse -i java 

will show you where this flag is set (check man euse for symbols).

-- 
Regards,
Mick


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


Re: [gentoo-user] How to trace the origin of a use-flag setting

2011-07-25 Thread Helmut Jarausch
On 07/25/2011 01:34:39 PM, Pandu Poluan wrote:
 euse -a
 
 part of gentoolkit, I believe.
 
 Ref: http://en.gentoo-wiki.com/wiki/Gentoolkit
 
 Rgds,
 
 
 On 2011-07-25, Helmut Jarausch jarau...@igpm.rwth-aachen.de wrote:
  Hi,
 
  emerge -vp app-office/libreoffice
 
  shows that the USE flag  -java  is in effect.
 
  How to find out where this comes from?
 
  I've checked  /etc/portage/package.use  /usr/portage/profiles  and 
 /
  etc/make.conf

Thanks Pandu,

it turns out, the '-java' use flag is turned on by default.
But I don't know why. I've just noticed that I can turn it on.

Helmut.



Re: [gentoo-user] How to trace the origin of a use-flag setting

2011-07-25 Thread Alan McKinnon
On Monday 25 July 2011 13:50:47 Helmut Jarausch did opine thusly:
 On 07/25/2011 01:34:39 PM, Pandu Poluan wrote:
  euse -a
  
  part of gentoolkit, I believe.
  
  Ref: http://en.gentoo-wiki.com/wiki/Gentoolkit
  
  Rgds,
  
  On 2011-07-25, Helmut Jarausch jarau...@igpm.rwth-aachen.de 
wrote:
   Hi,
   
   emerge -vp app-office/libreoffice
   
   shows that the USE flag  -java  is in effect.
   
   How to find out where this comes from?
   
   I've checked  /etc/portage/package.use 
   /usr/portage/profiles  and
  
  /
  
   etc/make.conf
 
 Thanks Pandu,
 
 it turns out, the '-java' use flag is turned on by default.
 But I don't know why. 

OOo was run out of Sun remember. It uses java for a whole whack of 
scriptable stuff, most notably database integration iirc.


 I've just noticed that I can turn it on.
 
 Helmut.
-- 
alan dot mckinnon at gmail dot com



Re: [gentoo-user] Running out of space on /var partition

2011-07-25 Thread Alan McKinnon
On Monday 25 July 2011 11:02:34 Mick did opine thusly:
 After some deliberation I've started emerging libreoffice.  It gave
 the usual office suite warnings at the beginning that there isn't
 enough space in /var (I have 5.8G and it was asking for more than
 7G+).
 
 Half way through the emerge I noticed that I have only 74M left and
 is going down fast!  O_O
 
 OpenOffice was able to emerge in the past using this partition size
 without a problem.  I've flushed logs and what not to free some
 space, but I'm thinking of extending the partition somehow.  I
 don't run LVM on this machine so that's not a solution for this
 circumstance.
 
 Is there anything I can do with mount --rbind and could I do this in
 the middle of an emerge?  I have another partition with loads of
 space in it, but it has a different fs on it (reiser4 instead of
 /var's ext4).

Mount that spare partition at /var/tmp/portage
emerge openoffice
umount that spare partition


-- 
alan dot mckinnon at gmail dot com



[gentoo-user] Re: New motherboard, usb-problems etc.

2011-07-25 Thread walt
On 07/25/2011 03:44 AM, pk wrote:
 Hi,
 
 I just put together a new computer composed of an Asus motherboard (AMD
 990FX chipset, Sabertooth model, i.e. this one:
 http://www.asus.com/Motherboards/AMD_AM3Plus/SABERTOOTH_990FX/).

 Initially, the onboard usb devices worked fine in AMD64 Gentoo 11.0 live
 cd (via usb stick), which I used to install my system. Now, all usb
 ports (ohci  ehci except the xhci - 3.0 ones) seems dead (and, as it
 seems, the onboard NIC Realtek 8111e). The usb stick that I used for the
 Gentoo live doesn't boot (I've tried it in another computer as well)

So, you're saying that usb stick has actually changed in some way after
the install?  That's certainly possible.  Have you tried making a new
one from the live cd?

If two machines won't boot from your live install usb stick then there
must be something wrong with it, no?

The point is to boot the live cd (usb stick) and make a list of all the
drivers the kernel is using when the hardware is working correctly, and
then build your own kernel using the same drivers.





Re: [gentoo-user] Re: New motherboard, usb-problems etc.

2011-07-25 Thread pk
On 07/25/11 14:24, walt wrote:

 So, you're saying that usb stick has actually changed in some way after
 the install?  That's certainly possible.  Have you tried making a new
 one from the live cd?

No, I'm saying that the usb ports on the motherboard seems dead in my
now brand new Gentoo install... I did redo the usb stick but it refuses
to boot (on both computers); it just hangs after the Gentoo boot screen
(where you can choose what to boot).
 When I first booted the Gentoo live usb I didn't have any problems with
usb (that I noticed)... Now, I've created a live cd (i.e. burnt a
dvd-image since the cd is really dvd-size) and booted with that but I
get the same kernel output (i.e.:
usb 2-3: new high speed USB device using ehci_hcd and address 2
usb 2-3: device descriptor read/64, error -32
- same messages goes for ohci and there's a message saying it's unable
to enumerate USB device on port n - where n is 1,2...10 [ten usb ports
in the rear]).

 If two machines won't boot from your live install usb stick then there
 must be something wrong with it, no?

Yes, I've concluded that as well. But I seem to be able to write and
read from the stick without problems (firmware problems maybe?)... Very
strange.

 The point is to boot the live cd (usb stick) and make a list of all the
 drivers the kernel is using when the hardware is working correctly, and
 then build your own kernel using the same drivers.

Yes, I'm well aware of what hardware drivers I need. I'm just a bit
confused of where I should look next; if it's a hardware problem (i.e.
the usb ports are really dead) then how come they work in the UEFI bios
screen (i.e. I can use my mouse to navigate)? Is is a configuration
problem in the kernel config (conflicting configuration)?

Anyway, thanks for replying!

Best regards

Peter K



Re: [gentoo-user] Problems with Nvidia fake raid array

2011-07-25 Thread Michael Orlitzky
On 07/22/11 21:56, Jeff Cranmer wrote:
 Is there anyone who can help me recover my raid array?
 

 Next, I tried commenting out the previously added DEVICE line, and
 adding
 ARRAY /dev/md0 devices=/dev/sda,/dev/sdb,/dev/sdc

 mdadm --assemble --scan returns something different
 mdadm: /dev/sdb has no superblock - assembly aborted.

I think this one should have worked? It seems to have found the
superblock on /dev/sda, at least.

Anyway, I imagine everyone (myself included) is afraid to tell you to do
anything at this point that might trash your data. My advice now would
be to put it back where it worked, and make a backup.



[gentoo-user] Re: How to trace the origin of a use-flag setting

2011-07-25 Thread James
Helmut Jarausch jarausch at igpm.rwth-aachen.de writes:


 emerge -vp app-office/libreoffice
 shows that the USE flag  -java  is in effect.
 How to find out where this comes from?

equery hasuse java

hth,
James




[gentoo-user] Need for revdep-rebuild

2011-07-25 Thread Peter Humphrey
Hello list,

Just a note to anyone who hasn't already found out the hard way:

After upgrading icu today I found that system-config-printer-common wouldn't 
compile because it couldn't find the right icu library.

Revdep-rebuild was required to fix this - so it does still have a use, after 
all.

-- 
Rgds
Peter   Linux Counter number 5290



[gentoo-user] Re: Need for revdep-rebuild

2011-07-25 Thread Grant Edwards
On 2011-07-25, Peter Humphrey pe...@humphrey.ukfsn.org wrote:

 Just a note to anyone who hasn't already found out the hard way:

 After upgrading icu today I found that system-config-printer-common
 wouldn't compile because it couldn't find the right icu library.

 Revdep-rebuild was required to fix this - so it does still have a
 use, after all.

Was any question about that?

I would guess that after about a third of my updates, revdep-rebuild
finds something that needs to be re-emerged.  Sometimes I forget to
run revdep-rebuild, and it's not uncommon that I stumble across
something broken within a day or so.

-- 
Grant Edwards   grant.b.edwardsYow! I've read SEVEN
  at   MILLION books!!
  gmail.com




Re: [gentoo-user] Need for revdep-rebuild

2011-07-25 Thread David W Noon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 25 Jul 2011 18:27:03 +0100, Peter Humphrey wrote about
[gentoo-user] Need for revdep-rebuild:

After upgrading icu today I found that system-config-printer-common
wouldn't compile because it couldn't find the right icu library.

Revdep-rebuild was required to fix this - so it does still have a use,
after all.

FWIW, I needed to run revdep-rebuild twice. as one of
evolution-data-server's build dependencies needed icu.  So, if you get
build failures during revdep-rebuild, just keep running it until they
all disappear.
- -- 
Regards,

Dave  [RLU #314465]
==
dwn...@ntlworld.com (David W Noon)
==
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)

iEYEARECAAYFAk4tsPIACgkQRQ2Fs59Psv/q6gCg99QsMD3O7gv27FItNrzpr5b2
BNgAnRaXuKif7AjshJ3XyvGqjP5TMMol
=LLyA
-END PGP SIGNATURE-


[gentoo-user] X Freezes With Firefox on Many Post 2.6.38 Kernels

2011-07-25 Thread Todd Goodman
Dale (and whoever else was having problems with Firefox and X hangs,)

I don't know if you've seen it but:

http://lkml.org/lkml/2011/7/24/54

looks like a thread that might be applicable?

Todd



Re: [gentoo-user] Need for revdep-rebuild

2011-07-25 Thread Dale

David W Noon wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 25 Jul 2011 18:27:03 +0100, Peter Humphrey wrote about
[gentoo-user] Need for revdep-rebuild:

   

After upgrading icu today I found that system-config-printer-common
wouldn't compile because it couldn't find the right icu library.

Revdep-rebuild was required to fix this - so it does still have a use,
after all.
 

FWIW, I needed to run revdep-rebuild twice. as one of
evolution-data-server's build dependencies needed icu.  So, if you get
build failures during revdep-rebuild, just keep running it until they
all disappear.
- -- 
Regards,


Dave  [RLU #314465]
==
dwn...@ntlworld.com (David W Noon)
==
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)

iEYEARECAAYFAk4tsPIACgkQRQ2Fs59Psv/q6gCg99QsMD3O7gv27FItNrzpr5b2
BNgAnRaXuKif7AjshJ3XyvGqjP5TMMol
=LLyA
-END PGP SIGNATURE-
   


I just had to run preserved-libs and all is well.  I run the unstable 
portage tho.  Maybe that makes a difference.


I always check that sort of thing after a update.  It's just a good 
thing to do and in most cases, it doesn't take to long to do it.


Dale

:-)  :-)



Re: [gentoo-user] Need for revdep-rebuild

2011-07-25 Thread Florian Philipp
Am 25.07.2011 20:56, schrieb Dale:
 David W Noon wrote:
 On Mon, 25 Jul 2011 18:27:03 +0100, Peter Humphrey wrote about
 [gentoo-user] Need for revdep-rebuild:
 
   
 After upgrading icu today I found that system-config-printer-common
 wouldn't compile because it couldn't find the right icu library.

 Revdep-rebuild was required to fix this - so it does still have a use,
 after all.
  
[...]
 I just had to run preserved-libs and all is well.  I run the unstable
 portage tho.  Maybe that makes a difference.
[...]

Yes, it does. I seriously can't wait until portage-2.2 is stabilized.

BTW: I couldn't find a tracker bug for its stabilization. Is it possible
that it doesn't exist?

Regards,
Florian Philipp




signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] X Freezes With Firefox on Many Post 2.6.38 Kernels

2011-07-25 Thread Dale

Todd Goodman wrote:

Dale (and whoever else was having problems with Firefox and X hangs,)

I don't know if you've seen it but:

http://lkml.org/lkml/2011/7/24/54

looks like a thread that might be applicable?

Todd


   


That does look interesting.  I had a few times where mine would just 
hang and I could use the SysReq keys but most of the time it just plain 
paniced.


I'm not subscribed so if you see something interesting, let me know.  I 
wish I could let them know it also causes kernel panics as well.  I 
suspect tho that whatever fix they come up with, it will fix it all.  I 
may go back to a older kernel too. lol  That may work for a temp fix 
anyway.


Thanks very much for the link.  At least it is not just me and they know 
about it now.


Dale

:-)  :-)



Re: [gentoo-user] X Freezes With Firefox on Many Post 2.6.38 Kernels

2011-07-25 Thread Todd Goodman
* Dale rdalek1...@gmail.com [110725 14:43]:
 Todd Goodman wrote:
  Dale (and whoever else was having problems with Firefox and X hangs,)
 
  I don't know if you've seen it but:
 
  http://lkml.org/lkml/2011/7/24/54
 
  looks like a thread that might be applicable?
 
  Todd
 
 
 
 
 That does look interesting.  I had a few times where mine would just 
 hang and I could use the SysReq keys but most of the time it just plain 
 paniced.

Yes, I remember that.  But depending on your kernel config you could be
getting a panic based on settings (I believe.)

 
 I'm not subscribed so if you see something interesting, let me know.  I 
 wish I could let them know it also causes kernel panics as well.  I 
 suspect tho that whatever fix they come up with, it will fix it all.  I 
 may go back to a older kernel too. lol  That may work for a temp fix 
 anyway.

I'll let you know if I see anything that looks related.  It would be
interesting if going back to 2.6.38 is a temp fix for you.  I know you'd
tried older kernels before but...

As someone else mentioned, you can certainly report it.  However, it
would be very helpful if you can get the panic information.  I know it's
difficult with X hanging and needing X to reproduce the problem but
SSHing to the machine and/or a netconsole might allow something to be
seen.  And the panic information would likely be quite illuminating.

 
 Thanks very much for the link.  At least it is not just me and they know 
 about it now.

Yes, though hearing from more than one person with the issue might help
get it solved quicker.  There may be similarities between your machines
that point he finger at a certain area...

Todd

 
 Dale
 
 :-)  :-)



Re: [gentoo-user] X Freezes With Firefox on Many Post 2.6.38 Kernels

2011-07-25 Thread Dale

Todd Goodman wrote:

* Dalerdalek1...@gmail.com  [110725 14:43]:
   

Todd Goodman wrote:
 

Dale (and whoever else was having problems with Firefox and X hangs,)

I don't know if you've seen it but:

http://lkml.org/lkml/2011/7/24/54

looks like a thread that might be applicable?

Todd



   

That does look interesting.  I had a few times where mine would just
hang and I could use the SysReq keys but most of the time it just plain
paniced.
 

Yes, I remember that.  But depending on your kernel config you could be
getting a panic based on settings (I believe.)

   


That is true.  I think .39 was the one that always paniced.  It seems 
the later .38 wold sometimes give me a change to use the SysReq keys.  
It' shard to recall now.  :/



I'm not subscribed so if you see something interesting, let me know.  I
wish I could let them know it also causes kernel panics as well.  I
suspect tho that whatever fix they come up with, it will fix it all.  I
may go back to a older kernel too. lol  That may work for a temp fix
anyway.
 

I'll let you know if I see anything that looks related.  It would be
interesting if going back to 2.6.38 is a temp fix for you.  I know you'd
tried older kernels before but...

As someone else mentioned, you can certainly report it.  However, it
would be very helpful if you can get the panic information.  I know it's
difficult with X hanging and needing X to reproduce the problem but
SSHing to the machine and/or a netconsole might allow something to be
seen.  And the panic information would likely be quite illuminating.

   


I'm not subscribed there and that is a very high traffic list.  I did 
take a look at the option of subscribing tho.  I also tried to ssh into 
my rig from my old rig, it refused.  It couldn't even find my box.  It 
worked fine after I rebooted tho.




Thanks very much for the link.  At least it is not just me and they know
about it now.
 

Yes, though hearing from more than one person with the issue might help
get it solved quicker.  There may be similarities between your machines
that point he finger at a certain area...

Todd

   

Dale

:-)  :-)
 


Yea, having more info would be helpful but it appears that more than I 
have has already been given.  I may see if I can email someone directly 
or something.  Maybe that will work, if I don't go to spam or something.


Is this related to a specific nic driver?  I wasn't able to really tell 
much from all the error messages they posted.  I still haven't tried a 
different nic.  I sort of been busy.


Dale

:-)  :-)



[gentoo-user] Problem with eclean-pkg

2011-07-25 Thread Peter Humphrey
Hello list,

I want to clean out some dross before my routine backup, but eclean falls 
over with this error:

# eclean-pkg
 * Building file list for packages cleaning...
 * Cleaning binary packages...
!!! Could not get stat info for:/usr/portage/packages/dev-lang/python-3.1.2-
r4.tbz2

!!! Error: [Errno 2] No such file or directory: '/usr/portage/packages/dev-
lang/python-3.1.2-r4.tbz2'


eix doesn't show such a version of python, so where is it coming from?

-- 
Rgds
Peter   Linux Counter number 5290



Re: [gentoo-user] Problem with eclean-pkg

2011-07-25 Thread Mark Knecht
On Mon, Jul 25, 2011 at 3:04 PM, Peter Humphrey
pe...@humphrey.ukfsn.org wrote:
SNIP

 !!! Error: [Errno 2] No such file or directory: '/usr/portage/packages/dev-
 lang/python-3.1.2-r4.tbz2'


 eix doesn't show such a version of python, so where is it coming from?

Cruft left over somewhere? Possibly try:

locate python-3.1.2-r4

HTH,
Mark



[gentoo-user] revdep-rebuild question

2011-07-25 Thread Hartmut Figge
Greetings,

after the emerge -uDN world of today i proceeded with revdep-rebuild
which found nothing to to. But i noticed, that the emerge recommended to
execute revdep-rebuild --library='libosp.so.*'. Doing this two packages
were found and emerged.

Now, shouldn't these have been found already by the previous revdep-rebuild?

Hartmut
-- 
Usenet-ABC-Wiki http://www.usenet-abc.de/wiki/
Von Usern fuer User  :-)




Re: [gentoo-user] revdep-rebuild question

2011-07-25 Thread Paul Hartman
On Mon, Jul 25, 2011 at 5:20 PM, Hartmut Figge h.fi...@gmx.de wrote:
 Greetings,

 after the emerge -uDN world of today i proceeded with revdep-rebuild
 which found nothing to to. But i noticed, that the emerge recommended to
 execute revdep-rebuild --library='libosp.so.*'. Doing this two packages
 were found and emerged.

 Now, shouldn't these have been found already by the previous revdep-rebuild?

I believe --library rebuilds everything that uses that library, not
broken packages.



Re: [gentoo-user] revdep-rebuild question

2011-07-25 Thread Paul Hartman
On Mon, Jul 25, 2011 at 5:30 PM, Paul Hartman
paul.hartman+gen...@gmail.com wrote:
 On Mon, Jul 25, 2011 at 5:20 PM, Hartmut Figge h.fi...@gmx.de wrote:
 Greetings,

 after the emerge -uDN world of today i proceeded with revdep-rebuild
 which found nothing to to. But i noticed, that the emerge recommended to
 execute revdep-rebuild --library='libosp.so.*'. Doing this two packages
 were found and emerged.

 Now, shouldn't these have been found already by the previous revdep-rebuild?

 I believe --library rebuilds everything that uses that library, not
 broken packages.

To test my theory you can run the command again and see if it finds
the same 2 packages again. :)



[gentoo-user] Re: revdep-rebuild question

2011-07-25 Thread Hartmut Figge
Hartmut Figge:

 Now, shouldn't these have been found already by the previous revdep-rebuild?

And after the next revdep-rebuild --library='libosp.so.*' the same two
packages are found and rebuild. And so on.

i5 hafi #  revdep-rebuild -p --library='libosp.so.*'
[...]
 * Checking dynamic linking
[ 22% ]  *   found /usr/bin/onsgmls
 *   found /usr/bin/openjade
 *   found /usr/bin/osgmlnorm
 *   found /usr/bin/ospam
 *   found /usr/bin/ospcat
 *   found /usr/bin/ospent
 *   found /usr/bin/osx
[ 67% ]  *   found /usr/lib/libospgrove.so.0.0.1
 *   found /usr/lib/libostyle.so.0.0.1
[ 100% ]
 * Generated new 3_broken.rr
[...]
Calculating dependencies... done!
[ebuild   R] app-text/opensp-1.5.2-r2
[ebuild   R] app-text/openjade-1.3.2-r3

Hm. *g*

Hartmut
-- 
Usenet-ABC-Wiki http://www.usenet-abc.de/wiki/
Von Usern fuer User  :-)




[gentoo-user] Re: revdep-rebuild question

2011-07-25 Thread Hartmut Figge
Paul Hartman:
 On Mon, Jul 25, 2011 at 5:30 PM, Paul Hartman

 I believe --library rebuilds everything that uses that library, not
 broken packages.
 
 To test my theory you can run the command again and see if it finds
 the same 2 packages again. :)

You are right and to quick to to hold back my own previous reply. ;)

Hartmut
-- 
Usenet-ABC-Wiki http://www.usenet-abc.de/wiki/
Von Usern fuer User  :-)




[gentoo-user] Re: revdep-rebuild question

2011-07-25 Thread Hartmut Figge
Hartmut Figge:

 You are right and to quick to to hold back my own previous reply. ;)

Hard to understand a sentence with such many errors. A challenge. :)

Hartmut
-- 
Usenet-ABC-Wiki http://www.usenet-abc.de/wiki/
Von Usern fuer User  :-)




Re: [gentoo-user] Re: revdep-rebuild question

2011-07-25 Thread Paul Hartman
On Mon, Jul 25, 2011 at 5:49 PM, Hartmut Figge h.fi...@gmx.de wrote:
 Hartmut Figge:

 You are right and to quick to to hold back my own previous reply. ;)

 Hard to understand a sentence with such many errors. A challenge. :)

I like puzzles but I understood perfectly what you said. :)



[gentoo-user] Re: New motherboard, usb-problems etc.

2011-07-25 Thread walt
On 07/25/2011 06:44 AM, pk wrote:
 On 07/25/11 14:24, walt wrote:
 
 So, you're saying that usb stick has actually changed in some way after
 the install?  That's certainly possible.  Have you tried making a new
 one from the live cd?
 
  ...I did redo the usb stick but it refuses to boot (on both computers);

Hm.  Does the second machine have an EFI BIOS too?

 ...Now, I've created a live cd (i.e. burnt a
 dvd-image since the cd is really dvd-size) and booted with that but I
 get the same kernel output (i.e.:
 usb 2-3: new high speed USB device using ehci_hcd and address 2
 usb 2-3: device descriptor read/64, error -32

Hm again.  I see only 11 possibilities -- that's a binary three. (Thanks
to Neil for that clever idea.)

1) You failed to notice those same errors the first time you booted the
   usb stick.  (But something important has changed with your machine
   because it won't boot from usb now, but boots the same code from dvd.)

2) The live cd install disk lacks the correct drivers for your hardware.
   (But then how did it boot the first time?)

3) There is some EFI setting that you changed while fiddling with the EFI
   GUI menu system.  (Is there a way to restore the EFI default settings?)




[gentoo-user] Re: Need for revdep-rebuild

2011-07-25 Thread walt
On 07/25/2011 10:27 AM, Peter Humphrey wrote:
 Hello list,
 
 Just a note to anyone who hasn't already found out the hard way:
 
 After upgrading icu today I found that system-config-printer-common wouldn't 
 compile because it couldn't find the right icu library.

Just one package?  You got off easy.  I shudder when I see an icu update
because my three biggest packages depend on it:  libreoffice, boost, and
webkit-gtk.  The icu update+revdep-rebuild always runs all night (or longer).
My electricity bill goes up that month :(




[gentoo-user] Re: X Freezes With Firefox on Many Post 2.6.38 Kernels

2011-07-25 Thread walt
On 07/25/2011 01:00 PM, Dale wrote:
 
 I'm not subscribed and [lkml] is a very high traffic list.

Only a masochist or a kernel dev would subscribe to that list.
A far better way is to track the family of kernel-related lists
on gmane.org, e.g. the gmane.linux.kernel newsgroup.

You can even post to mailing lists if you're willing to give
gmane.org a working email address.





Re: [gentoo-user] Problems with Nvidia fake raid array

2011-07-25 Thread Jeff Cranmer
On Mon, 2011-07-25 at 10:45 -0400, Michael Orlitzky wrote:
 On 07/22/11 21:56, Jeff Cranmer wrote:
  Is there anyone who can help me recover my raid array?
  
 
  Next, I tried commenting out the previously added DEVICE line, and
  adding
  ARRAY /dev/md0 devices=/dev/sda,/dev/sdb,/dev/sdc
 
  mdadm --assemble --scan returns something different
  mdadm: /dev/sdb has no superblock - assembly aborted.
 
 I think this one should have worked? It seems to have found the
 superblock on /dev/sda, at least.
 
 Anyway, I imagine everyone (myself included) is afraid to tell you to do
 anything at this point that might trash your data. My advice now would
 be to put it back where it worked, and make a backup.
 
I already




Re: [gentoo-user] Problems with Nvidia fake raid array

2011-07-25 Thread Jeff Cranmer
On Mon, 2011-07-25 at 10:45 -0400, Michael Orlitzky wrote:
 On 07/22/11 21:56, Jeff Cranmer wrote:
  Is there anyone who can help me recover my raid array?
  
 
  Next, I tried commenting out the previously added DEVICE line, and
  adding
  ARRAY /dev/md0 devices=/dev/sda,/dev/sdb,/dev/sdc
 
  mdadm --assemble --scan returns something different
  mdadm: /dev/sdb has no superblock - assembly aborted.
 
 I think this one should have worked? It seems to have found the
 superblock on /dev/sda, at least.
 
 Anyway, I imagine everyone (myself included) is afraid to tell you to do
 anything at this point that might trash your data. My advice now would
 be to put it back where it worked, and make a backup.
 
I already have a backup of the data (much of it in multiple locations).
If it gets trashed, I can recover all critical data.  Right now, I just
want to get the storage space back.

Jeff




Re: [gentoo-user] revdep-rebuild question

2011-07-25 Thread Bill Kenworthy
On Mon, 2011-07-25 at 17:30 -0500, Paul Hartman wrote:
 On Mon, Jul 25, 2011 at 5:30 PM, Paul Hartman
 paul.hartman+gen...@gmail.com wrote:
  On Mon, Jul 25, 2011 at 5:20 PM, Hartmut Figge h.fi...@gmx.de wrote:
  Greetings,
 
  after the emerge -uDN world of today i proceeded with revdep-rebuild
  which found nothing to to. But i noticed, that the emerge recommended to
  execute revdep-rebuild --library='libosp.so.*'. Doing this two packages
  were found and emerged.
 
  Now, shouldn't these have been found already by the previous 
  revdep-rebuild?
 
  I believe --library rebuilds everything that uses that library, not
  broken packages.
 
 To test my theory you can run the command again and see if it finds
 the same 2 packages again. :)
 

A quick look at the ebuild for opensp shows that it will always print
that message - doesnt test if its really needed, and the revdep-rebuild
reccomendation will always rebuild all matching libs it finds - not
just ones that really need building.

BillK





Re: [gentoo-user] Problems with Nvidia fake raid array

2011-07-25 Thread Michael Orlitzky
On 07/25/2011 08:00 PM, Jeff Cranmer wrote:
 On Mon, 2011-07-25 at 10:45 -0400, Michael Orlitzky wrote:
 On 07/22/11 21:56, Jeff Cranmer wrote:
 Is there anyone who can help me recover my raid array?


 Next, I tried commenting out the previously added DEVICE line, and
 adding
 ARRAY /dev/md0 devices=/dev/sda,/dev/sdb,/dev/sdc

 mdadm --assemble --scan returns something different
 mdadm: /dev/sdb has no superblock - assembly aborted.

 I think this one should have worked? It seems to have found the
 superblock on /dev/sda, at least.

 Anyway, I imagine everyone (myself included) is afraid to tell you to do
 anything at this point that might trash your data. My advice now would
 be to put it back where it worked, and make a backup.

 I already have a backup of the data (much of it in multiple locations).
 If it gets trashed, I can recover all critical data.  Right now, I just
 want to get the storage space back.

If you have the data elsewhere, you can just wipe the disks and recreate
the array, right?

I usually use this rather than read the mdadm --create manpage:

http://en.gentoo-wiki.com/wiki/Software_RAID_Install#Setting_up_the_RAID

If you want it to work in Windows... Well, I'm not sure how to *create*
a fakeraid with mdadm. The last time I tried (6 years ago?), dmraid was
the only way. In that case I would spend $25 on a bargain bin Adaptec
card and consider it an investment in future-you's mental health.



Re: [gentoo-user] Need for revdep-rebuild

2011-07-25 Thread Pandu Poluan
On Tue, Jul 26, 2011 at 02:06, Florian Philipp li...@binarywings.net wrote:

 Am 25.07.2011 20:56, schrieb Dale:
  David W Noon wrote:
  On Mon, 25 Jul 2011 18:27:03 +0100, Peter Humphrey wrote about
  [gentoo-user] Need for revdep-rebuild:
 
 
  After upgrading icu today I found that system-config-printer-common
  wouldn't compile because it couldn't find the right icu library.
 
  Revdep-rebuild was required to fix this - so it does still have a use,
  after all.
 
 [...]
  I just had to run preserved-libs and all is well.  I run the unstable
  portage tho.  Maybe that makes a difference.
 [...]

 Yes, it does. I seriously can't wait until portage-2.2 is stabilized.

 BTW: I couldn't find a tracker bug for its stabilization. Is it possible
 that it doesn't exist?


Wouldn't it be better to do both `emerge @preserved-libs` and `revdep-rebuild`?

I think I read somewhere that `emerge @preserved-libs` and
`revdep-rebuild` actually do different things, but with significant
overlap...

Can't remember where I read that, though...

Rgds,
--
Pandu E Poluan
~ IT Optimizer ~

 • Blog : http://pepoluan.tumblr.com
 • Linked-In : http://id.linkedin.com/in/pepoluan



Re: [gentoo-user] mysqld invoked oom-killer

2011-07-25 Thread Grant
 Sounds like a case for a swap partition that can be activated when you
 need it for big emerges. I hit the same thing with firefox-5 oddly
 enough.

 I have one smallish swap partition at PRI=10 and a bigger one at PRI=1.

 As for OOo, long ago I figured the pain wasn't worth the gain so now I
 use the -bin packages.

 Or switch to Libre Office. Its compiler requirements seem lighter than OO.o.

I tried libreoffice with the same result.  Much more strangely, I
enabled a 10GB swap file and got the same error.  I thought it was a
virtual memory problem at first but now that I look more closely it
looks like a java problem:

Error occurred during initialization of VM
Could not reserve enough space for code cache
JavaVM: JNI_CreateJavaVM called _exit, caught by abort_handler in javavm.cxx
[Java framework] sunjavaplugin.soCan not create JavaVirtualMachine,
abort handler was called.
[Java framework] The JRE specified by the bootstrap variable
UNO_JAVA_JFW_JREHOME  or  UNO_JAVA_JFW_ENV_JREHOME  could not be
recognized. Check the values and make sure that you use a plug-in
library that can recognize that JRE.
register component
'file:///var/tmp/portage/app-office/libreoffice-3.3.1/work/libreoffice-build-3.3.1.2/build/libreoffice-3.3.1.2/testtools/source/bridgetest/../../unxlngx6.pro/class/testComponent.jar'
in registry '../../unxlngx6.pro/lib/uno_services.rdb' failed!
error (CannotRegisterImplementationException): Could not create Java
implementation loader
dmake:  Error code 1, while making '../../unxlngx6.pro/lib/uno_services.rdb'

Is this because I've eselect'ed icedtea6-bin instead of sun-jdk-1.6?

BTW, can anyone tell me why I'm using icedtea6-bin instead of icedtea?

- Grant