Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Neil Bothwick
On Fri, 21 May 2010 21:49:49 -0400, Daniel D Jones wrote: > find -name *.ext | xargs -0 rm > > I get the result: > > rm: cannot remove `Long File Name One.ext\nLong File Name Two.ext\nLong > File Name Three.ext\n': File name too long. xargs can suck with anything but plain ASCII-without-spaces

Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Patrick Holthaus
Hey! On Saturday 22 May 2010 03:49:49 Daniel D Jones wrote: > Running the command: > > find -name *.ext | xargs -0 rm You might try: find -name *.ext -print0 | xargs -0 rm Cheers Patrick signature.asc Description: This is a digitally signed message part.

[gentoo-user] Emerge building a binary from installed package

2010-05-22 Thread Dale
Hi, I think there is a way to do this but it's not sticking out at me on the emerge man page. I'm doing a install and want to build a binary package from my running system and install it on the new install. Basically, I don't want to recompile, I just want emerge to copy the correct files a

Re: [gentoo-user] Emerge building a binary from installed package

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Dale wrote: > Hi, > > I think there is a way to do this but it's not sticking out at me on the > emerge man page. I'm doing a install and want to build a binary package > from my running system and install it on the new install. Basically, I > don't want to recompile, I j

[gentoo-user] Can't get PulseAudio to work

2010-05-22 Thread Nikos Chantziaras
I decided to test PulseAudio on Gentoo since someone claimed the reason PulseAudio has a "it blows chunks" reputation because of Ubuntu shipping it with a broken configuration. So, I did: USE="alsa pulseaudio -oss" emerge -auDNl --with-bdeps=y world This installed PulseAudio and rebuilt all

Re: [gentoo-user] Can't get PulseAudio to work

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > This installed PulseAudio and rebuilt all applications to drop OSS > support and use ALSA or Pulse instead. > sure?

Re: [gentoo-user] Emerge building a binary from installed package

2010-05-22 Thread Dale
Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Dale wrote: Hi, I think there is a way to do this but it's not sticking out at me on the emerge man page. I'm doing a install and want to build a binary package from my running system and install it on the new install. Basically, I don't

[gentoo-user] Webcam under linux-2.6.34.00

2010-05-22 Thread meino . cramer
Hi, Recently I installed linux-2.6.34.00 (vanilla). I adopted the config file where (I thought) it need to. The previouse kernel I used was linux-2.6.32.13 (vanilla). With the old kernel I was able to use my Web Cam (Sony Playstation Eye/Omnivision ov534 according to usbview -- see bel

Re: [gentoo-user] Preventing a shared interrupt

2010-05-22 Thread Adam
> Does anyone know how to prevent my "nouveau" video card and "ath" wifi > card from sharing interrupt 19? I can't move the video card slot and > I'd rather not move the wifi card slot if possible. > > BTW, does anyone see any other opportunity for interrupt optimization > here? I'm trying to op

[gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Nikos Chantziaras
On 05/22/2010 12:34 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: This installed PulseAudio and rebuilt all applications to drop OSS support and use ALSA or Pulse instead. sure? Never mind, found the problem after googling a lot: http://lists.freebsd.org

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 12:34 PM, Volker Armin Hemmann wrote: > > On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > >> This installed PulseAudio and rebuilt all applications to drop OSS > >> support and use ALSA or Pulse instead. > > > > sure? > > Never m

[gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Nikos Chantziaras
On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 12:34 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: This installed PulseAudio and rebuilt all applications to drop OSS support and use ALSA or P

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: > > On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > >> On 05/22/2010 12:34 PM, Volker Armin Hemmann wrote: > >>> On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > This installed PulseAudi

Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread David W Noon
On Sat, 22 May 2010 10:10:02 +0200, Neil Bothwick wrote about Re: [gentoo-user] xargs and rm funkiness: >On Fri, 21 May 2010 21:49:49 -0400, Daniel D Jones wrote: > >> find -name *.ext | xargs -0 rm >> >> I get the result: >> >> rm: cannot remove `Long File Name One.ext\nLong File Name >> Two.ex

Re: [gentoo-user] Can't get PulseAudio to work

2010-05-22 Thread David W Noon
On Sat, 22 May 2010 12:10:02 +0200, Nikos Chantziaras wrote about [gentoo-user] Can't get PulseAudio to work: [snip] >I rebooted with an ALSA-enabled kernel and with OSSv4 completely >removed. But it doesn't work; everything can use ALSA OK, but not PA. >For example, "mplayer -ao pulse video.mk

Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Neil Bothwick
On Sat, 22 May 2010 12:35:10 +0100, David W Noon wrote: > >find -name *.ext -exe rm "{}" + > > Or simpler still: > > find -name *.ext -delete Neat - I hadn't noticed that option. Anyone for find / -delete ? -- Neil Bothwick Top Oxymorons Number 31: Small crowd signature.asc Description

[gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Nikos Chantziaras
On 05/22/2010 02:37 PM, David W Noon wrote: On Sat, 22 May 2010 12:10:02 +0200, Nikos Chantziaras wrote about [gentoo-user] Can't get PulseAudio to work: [snip] I rebooted with an ALSA-enabled kernel and with OSSv4 completely removed. But it doesn't work; everything can use ALSA OK, but not PA

[gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Nikos Chantziaras
On 05/22/2010 02:24 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 12:34 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziar

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 02:24 PM, Volker Armin Hemmann wrote: > > On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > >> On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: > >>> On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 12:34 PM,

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 02:24 PM, Volker Armin Hemmann wrote: > > On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > >> On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: > >>> On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 12:34 PM,

[gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Nikos Chantziaras
On 05/22/2010 04:03 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 02:24 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziar

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Dale
Nikos Chantziaras wrote: On 05/22/2010 04:03 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 02:24 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: On 05/22/2010 01:46 PM, Volker Armin Hemmann wrote: On Samstag 22

[gentoo-user] spell checking using kile under gnome

2010-05-22 Thread W.Kenworthy
I am using kile under gnome to edit latex files. Its ok, but I am having problems with the spell checker - it works and does the job except it cant "add to dictionary" so once I restart kile, I have to start again with every discrepancy picked up by the spell checker. I suspect its because of usi

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread luis jure
on 2010-05-22 at 16:57 Nikos Chantziaras wrote: >On 05/22/2010 04:03 PM, Volker Armin Hemmann wrote: >> On Samstag 22 Mai 2010, Nikos Chantziaras wrote: >>> On 05/22/2010 02:24 PM, Volker Armin Hemmann wrote: On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 01:46 PM, Volk

Re: [gentoo-user] Re: Can't get PulseAudio to work

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Dale wrote: > > "Another usefull thing you can do is control the volume of every > application seperatly, even if the application can't do it on its own." > > It's the third sentence on the page. I'm not sure how you could miss > that. I need new glasses and have one ey

[gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Christopher Kurtis Koeber
Hello, I am trying to start OpenLDAP (I am following this guide here) but the service fails to start. I get the double exclamations like this: Code: * Starting ldap-server ... [ !! ] When I go to /va

[gentoo-user] Re: nouveau-drm compile failure

2010-05-22 Thread walt
On 05/21/2010 04:42 PM, Grant wrote: I can now start X via the nouveau driver. The only problem I see in Xorg.0.log is: (EE) AIGLX error: dlopen of /usr/lib64/dri/nouveau_dri.so failed (/usr/lib64/dri/nouveau_dri.so: cannot open shared object file: No such file or directory) (EE) AIGLX: revert

Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Daniel D Jones
On Friday 21 May 2010 22:11:49 cov...@ccs.covici.com wrote: > Daniel D Jones wrote: > > Running the command: > > > > find -name *.ext | xargs -0 rm > > > > I get the result: > > > > rm: cannot remove `Long File Name One.ext\nLong File Name Two.ext\nLong > > File Name Three.ext\n': File name too lo

Re: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Robin Atwood
On Saturday 22 May 2010, Christopher Kurtis Koeber wrote: > Hello, > > I am trying to start OpenLDAP (I am following this guide > here) but the service fails > to start. I get the double exclamations like this: > > > Code: > > > > * Starting ldap

[gentoo-user] Re: spell checking using kile under gnome

2010-05-22 Thread walt
On 05/22/2010 07:17 AM, W.Kenworthy wrote: I am using kile under gnome to edit latex files. Its ok, but I am having problems with the spell checker - it works and does the job except it cant "add to dictionary"... I know nothing about kile, and little about latex, but I notice that gedit does

Re: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Robin Atwood
On Saturday 22 May 2010, Christopher Kurtis Koeber wrote: > When I go to /var/log/messages nothing is logged there. Anything I can do > to fix this? Oh wait, /var/log/ldaplog is my customisation of syslog-ng. But slapd messages should be written with facility "local4". Trying it with the --debug

Re: [gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Canek Peláez Valdés
On Fri, May 21, 2010 at 2:29 PM, Nikos Chantziaras wrote: [...] > because you're not using software that needs good latency, like software > synthesizers) but I do. Then you're doing it wrong. If you are doing professional audio (a little fact, that, by the way, you *NEVER* mentioned; you talked

Re: [gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Canek Peláez Valdés
On Sat, May 22, 2010 at 1:21 AM, Nikos Chantziaras wrote: > Latency is the delay between giving the order to play a sound and the sound > actually being played.  It's usually around 30ms here with ALSA/dmix, and > around 10ms with OSS/vmix.  It's not funny trying to play something in a > software

Re: [gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Canek Peláez Valdés wrote: > On Fri, May 21, 2010 at 2:29 PM, Nikos Chantziaras wrote: > [...] > > > because you're not using software that needs good latency, like software > > synthesizers) but I do. > > Then you're doing it wrong. If you are doing professional audio (a

Re: [gentoo-user] Emerge building a binary from installed package

2010-05-22 Thread Crístian Viana
yes it is, quickpkg is part of sys-apps/portage :-) $ equery b /usr/sbin/quickpkg * Searching for /usr/sbin/quickpkg ... sys-apps/portage-2.1.8.3 (/usr/lib64/portage/bin/quickpkg) sys-apps/portage-2.1.8.3 (/usr/sbin/quickpkg -> ../lib64/portage/bin/quickpkg) On Sat, May 22, 2010 at 6:37 AM, Dale

Re: [gentoo-user] Emerge building a binary from installed package

2010-05-22 Thread Dale
Crístian Viana wrote: yes it is, quickpkg is part of sys-apps/portage :-) $ equery b /usr/sbin/quickpkg * Searching for /usr/sbin/quickpkg ... sys-apps/portage-2.1.8.3 (/usr/lib64/portage/bin/quickpkg) sys-apps/portage-2.1.8.3 (/usr/sbin/quickpkg -> ../lib64/portage/bin/quickpkg) Allow me t

[gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Nikos Chantziaras
On 05/22/2010 07:59 PM, Canek Peláez Valdés wrote: On Sat, May 22, 2010 at 1:21 AM, Nikos Chantziaras wrote: Latency is the delay between giving the order to play a sound and the sound actually being played. It's usually around 30ms here with ALSA/dmix, and around 10ms with OSS/vmix. It's not

Re: [gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Volker Armin Hemmann
On Samstag 22 Mai 2010, Nikos Chantziaras wrote: > On 05/22/2010 07:59 PM, Canek Peláez Valdés wrote: > > On Sat, May 22, 2010 at 1:21 AM, Nikos Chantziaras wrote: > >> Latency is the delay between giving the order to play a sound and the > >> sound actually being played. It's usually around 30m

Re: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Ward Poelmans
On Sat, May 22, 2010 at 19:23, Christopher Kurtis Koeber wrote: > OK, I did that, but the output is hard to parse through. Attached is text of > this command: > > /etc/init.d/slapd --debug restart That puts the debug of the init scripts on, not of openldap. Try: slapd -d 65535 That should give y

Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Jan Engelhardt
On Saturday 2010-05-22 09:46, Neil Bothwick wrote: >On Fri, 21 May 2010 21:49:49 -0400, Daniel D Jones wrote: > >> find -name *.ext | xargs -0 rm >> >> I get the result: >> >> rm: cannot remove `Long File Name One.ext\nLong File Name Two.ext\nLong >> File Name Three.ext\n': File name too long. >

Re: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Kaddeh
or... you could run slaptest and get some failure output. I noticed that my slapd was having issues too, I managed to track it down to a bdb version mismatch miniroute ~ # slaptest bdb_back_initialize: BDB library version mismatch: expected Berkeley DB 4.8.26: (2010-03-14), got Berkeley DB 4.8.30:

RE: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Christopher Kurtis Koeber
Hey! Thanks! Much better than sifting in the dark :) Here is my output: XX~ # slaptest hdb_db_open: warning - no DB_CONFIG file found in directory /var/lib/openldap-data: (2). Expect poor performance for suffix "dc= ,dc=XXX". hdb_db_open: database "dc= ,dc

Re: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Ward Poelmans
On Sat, May 22, 2010 at 21:26, Christopher Kurtis Koeber wrote: > XX~ # slaptest > > hdb_db_open: warning - no DB_CONFIG file found in directory > /var/lib/openldap-data: (2). > > Expect poor performance for suffix "dc= ,dc=XXX". > > hdb_db_open: database "dc= ,dc=

[gentoo-user] Java problem

2010-05-22 Thread David Relson
Greetings, I'd like to install eclipse, to experiment with it. Emerging eclipse-sdk wants to pull in a whole lot of packages which is not a bad thing except that about 12 or 15 of the emerges fail, apparently for the same reason: * CPV: dev-java/ant-core-1.8.1 * REPO: gentoo * USE: amd64 el

Re: [gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Canek Peláez Valdés
On Sat, May 22, 2010 at 1:02 PM, Nikos Chantziaras wrote: [snip] > I don't do professional audio.  I have a normal PC.  And just like I > sometimes use a synth in Windows (I'm just a hobbyist), I'd like to do the > same in Linux. You can; but you have to use special software, because yours is a s

Re: [gentoo-user] Re: Phonon + PulseAudio Problem

2010-05-22 Thread Barry Jibb
On 22/05/10 21:26, Canek Peláez Valdés wrote: On Sat, May 22, 2010 at 1:02 PM, Nikos Chantziaras wrote: [snip] I don't do professional audio. I have a normal PC. And just like I sometimes use a synth in Windows (I'm just a hobbyist), I'd like to do the same in Linux. You can; but y

Re: [gentoo-user] Re: nouveau-drm compile failure

2010-05-22 Thread Grant
>> I can now start X via the >> nouveau driver.  The only problem I see in Xorg.0.log is: >> >> (EE) AIGLX error: dlopen of /usr/lib64/dri/nouveau_dri.so failed >> (/usr/lib64/dri/nouveau_dri.so: cannot open shared object file: No >> such file or directory) >> (EE) AIGLX: reverting to software rend

Re: [gentoo-user] Preventing a shared interrupt

2010-05-22 Thread Grant
>> Does anyone know how to prevent my "nouveau" video card and "ath" wifi >> card from sharing interrupt 19?  I can't move the video card slot and >> I'd rather not move the wifi card slot if possible. >> >> BTW, does anyone see any other opportunity for interrupt optimization >> here?  I'm trying

Re: [gentoo-user] Preventing a shared interrupt

2010-05-22 Thread Grant
>>> Does anyone know how to prevent my "nouveau" video card and "ath" wifi >>> card from sharing interrupt 19?  I can't move the video card slot and >>> I'd rather not move the wifi card slot if possible. >>> >>> BTW, does anyone see any other opportunity for interrupt optimization >>> here?  I'm t

Re: [gentoo-user] Java problem

2010-05-22 Thread Kenneth Prugh
On Sat, 22 May 2010 16:10:39 -0400 David Relson wrote: > [...] What does `eselect java-vm list` say? Also, You might need to manually emerge dev-java/ant-junit.

[gentoo-user] {OT} Basic device for a Gentoo router/firewall?

2010-05-22 Thread Grant
Does anyone know of a basic device that would function well as a Gentoo router/firewall? Using typical hardware seems like overkill. I should be able to offload package compilation duties to another local machine on the network. It would also be nice if it were small, cheap, and power-efficient.

[gentoo-user] revdep-rebuild looking for non-existant dev-libs/poppler

2010-05-22 Thread Walter Dnes
I'm doing "revdep-rebuild --library libjpeg.so.7". It finds broken packages, It gets to the point of... = * Generated new 4_raw.rr and 4_owners.rr * Cleaning list of packages to rebuild * Generated new 4_pkgs.rr * Assigning packages to ebuilds * Gene

Re: [gentoo-user] xargs and rm funkiness

2010-05-22 Thread Neil Bothwick
On Sat, 22 May 2010 20:38:53 +0200 (CEST), Jan Engelhardt wrote: > >xargs can suck with anything but plain ASCII-without-spaces > >filenames., > > That's why you use NUL terminators. Simple as that. That only helps with spaces, what if filenames contain other reserved characters? > Also find'

Re: [gentoo-user] revdep-rebuild looking for non-existant dev-libs/poppler

2010-05-22 Thread Brandon Vargo
On Sat, 2010-05-22 at 17:44 -0400, Walter Dnes wrote: > I'm doing "revdep-rebuild --library libjpeg.so.7". It finds broken > packages, It gets to the point of... > = > * Generated new 4_raw.rr and 4_owners.rr > * Cleaning list of packages to rebuild > *

Re: [gentoo-user] Java problem

2010-05-22 Thread David Relson
On Sat, 22 May 2010 17:35:24 -0400 Kenneth Prugh wrote: > On Sat, 22 May 2010 16:10:39 -0400 > David Relson wrote: > > > [...] > > What does `eselect java-vm list` say? > > Also, You might need to manually emerge dev-java/ant-junit. r...@osage ~ # eselect java-vm list Available Java Virtual M

Re: [gentoo-user] Java problem

2010-05-22 Thread Kenneth Prugh
On Sat, 22 May 2010 20:43:54 -0400 David Relson wrote: > [...] > r...@osage ~ # eselect java-vm list > Available Java Virtual Machines: > [1] emul-linux-x86-java-1.6 > [2] sun-jdk-1.6 system-vm > [3] sun-jre-bin-1.6 > > For all 3 packages, version 1.6.0.20 is installed. > > Manual

Re: [gentoo-user] Java problem

2010-05-22 Thread David Relson
On Sat, 22 May 2010 20:51:35 -0400 Kenneth Prugh wrote: > On Sat, 22 May 2010 20:43:54 -0400 > David Relson wrote: > > [...] > > r...@osage ~ # eselect java-vm list > > Available Java Virtual Machines: > > [1] emul-linux-x86-java-1.6 > > [2] sun-jdk-1.6 system-vm > > [3] sun-jre-bin

Re: [gentoo-user] Re: spell checking using kile under gnome

2010-05-22 Thread William Kenworthy
kile to gedit is like openoffice to dos edit! I'd rather not ... BillK On Sat, 2010-05-22 at 09:32 -0700, walt wrote: > On 05/22/2010 07:17 AM, W.Kenworthy wrote: > > I am using kile under gnome to edit latex files. Its ok, but I am > > having problems with the spell checker - it works and doe

Re: [gentoo-user] Java problem

2010-05-22 Thread David Abbott
On Sat, May 22, 2010 at 8:57 PM, David Relson wrote: > On Sat, 22 May 2010 20:51:35 -0400 > Kenneth Prugh wrote: > >> On Sat, 22 May 2010 20:43:54 -0400 >> David Relson wrote: >> > [...] >> > r...@osage ~ # eselect java-vm list >> > Available Java Virtual Machines: >> >   [1]   emul-linux-x86-jav

Re: [gentoo-user] Cannot start Slapd (OpenLDAP)

2010-05-22 Thread Indexer
On 23/05/2010, at 2:09 AM, Robin Atwood wrote: > On Saturday 22 May 2010, Christopher Kurtis Koeber wrote: >> When I go to /var/log/messages nothing is logged there. Anything I can do >> to fix this? > > Oh wait, /var/log/ldaplog is my customisation of syslog-ng. But slapd > messages > should b

[gentoo-user] [SOLVED] revdep-rebuild looking for non-existant dev-libs/poppler

2010-05-22 Thread Walter Dnes
On Sat, May 22, 2010 at 04:55:37PM -0600, Brandon Vargo wrote > The old poppler ebuilds (dev-libs/poppler*) were reunited and became > app-text/poppler awhile back. The old poppler ebuilds should not be > referenced anywhere, but apparently they still are on your system > somewhere. Try remerging

[gentoo-user] Re: Java problem

2010-05-22 Thread walt
On 05/22/2010 01:10 PM, David Relson wrote: * Unable to determine VM for building from dependencies: * Failed to determine VM for building. Well, I've seen those error messages more than once. If I were half-a-bottle more sober, I'm sure I could remember how I fixed the problem. Gentoo

Re: [gentoo-user] {OT} Basic device for a Gentoo router/firewall?

2010-05-22 Thread scott n-h
These are used for router/firewall: http://www.soekris.com/ I would suspect that you could get Gentoo installed on it although I haven't only seen it used w/ the Monowall which was branched from FreeBSD. On Sat, May 22, 2010 at 2:41 PM, Grant wrote: > Does anyone know of a basic device that woul

Re: [gentoo-user] Java problem

2010-05-22 Thread Kenneth Prugh
You might try reselecting java again: `eselect java-vm system 2` (for sun-jdk or whatever your choice is from `eselect java-vm list`) I don't think you need to use java-config directly anymore but I'm not sure. Eselect should create the symlinks for you. Or my lack of coffee might be showing.

[gentoo-user] gd problem

2010-05-22 Thread Hung Dang
Hi all, I compile my system and received the following errors: /usr/lib64/libfontconfig.so /usr/lib64/libfreetype.so /usr/lib64/libexpat.so /usr/lib64/libpng14.so /usr/lib64/libXrender.so /usr/lib64/libX11.so /usr/lib64/libxcb.so /usr/lib64/libXau.so /usr/lib64/libXdmcp.so -lz -lm /usr/lib64/libg

Re: [gentoo-user] USB printer and new cups

2010-05-22 Thread Daniel da Veiga
just remove the usblp module (blacklist it or remove it completely from the kernel, if its already a module, modprobe -r it) and restart cups. Cups uses raw usb devices. It should appear at the web interface. -- Daniel da Veiga