[gentoo-user] k3b, konqueror DCOP error on start

2007-04-02 Thread Jed R. Mallen

I suddenly got this upon starting k3b, konqueror after an emerge -uDN world:

===
Processing '/home/nocti/.joerc'...Processing '/etc/joe/ftyperc'...done
   IW   /mnt/usb/k3b-error   Row 1Col 1   11:46  Ctrl-K H for help
/usr/bin/iceauth: /tmp/dcopPfMg8b:1:  bad "add" command line
/usr/bin/iceauth: /tmp/dcopPfMg8b:2:  bad "add" command line
ICE Connection rejected!

DCOPClient::attachInternal. Attach failed Authentication Rejected, reason : Non
ICE Connection rejected!

DCOPClient::attachInternal. Attach failed Authentication Rejected, reason : Non
DCOPServer self-test failed.
kdeinit: DCOPServer could not be started, aborting.
ERROR: KUniqueApplication: Can't setup DCOP communication.
===

revdep-rebuild says all is ok.

i checked dcop and came up with kdcop which is not installed but it's
not on the dependency of the above kde apps.

what could be wrong? thanks.

--
Jed R. Mallen | GPG key ID: 81E575A3 fp: 4E1E CBA5 7E6A 2F8B 8756
660A E54C 39D6 81E5 75A3 | http://jed.sitesled.com
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] RAID-0 with LVM - is there any point?

2007-04-02 Thread Daniel Iliev
Neil Bothwick wrote:
> LVM stripes data
> across the drives anyway, am I gaining anything from the RAID-0? Would I
> be just as well off by adding the two partitions directly to the LVM
> group?
>
>
>   


Hi, Neil

I have to admit I've never made such tests and I'm guessing here but I
would say that you may be even slowing down the system this way. One
subsystem passing the data to another subsystem..well it seems logical
that you would gain performance if you could exclude one of those.

Actually I'd be glad to read some results from a "Fake RAID-0 vs LVM"
tests. My bet would be that RAID-0 w/o LVM would give the best speeds

-- 
Best regards,
Daniel


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] netfilter tarpit target

2007-04-02 Thread Daniel Iliev
Ryan Curtin wrote:
> Instead of using iptables, you may want to try DenyHosts
> (app-admin/denyhosts).  It's a simple Python script that parses through
> /var/log/secure (or whatever your sshd logs to) and finds IPs who have
> failed authentication a certain number of times, then adds those IPs to
> /etc/hosts.deny.  Naturally, the threshold for blocking a host can be
> configured, and many other options can too.  It's worked great for me,
> and I've used it for about half a year now.
>
> The website for the DenyHosts project is:
> http://denyhosts.sourceforge.net/
>
> I hope that I read your question right and that this will help.
>
> Ryan Curtin
> [EMAIL PROTECTED]
>
>   
>

Thanks, Ryan, but I really want to stick with the tar pit solution. I
had already solved the real problem when I asked for help here. I want
to play with  the tar pit module for..let's say "academic purposes" ;-)

Unfortunately I had no luck. Clean kernel, the latest patch-o-matic, the
latest iptables and the same result. Obviously gentoo-sources is
incompatible with tar pit module. ;-(

I'm attaching here a file called "tarpit.txt" containing the commands I
issued and the relevant output from them in hope that someone could show
a mistake I'm repeating.

-- 
Best regards,
Daniel


test ~ # cd /usr/src
test src # rm -rf linu*
test src # emerge -C gentoo-sources ; emerge gentoo-sources
test src # svn co https://svn.netfilter.org/netfilter/trunk/iptables
test iptables # cd iptables
test iptables # svn update
At revision 6786.
test src # cd ..
test src # svn co https://svn.netfilter.org/netfilter/trunk/patch-o-matic-ng
test src # cd patch-o-matic-ng
test patch-o-matic-ng # svn update
At revision 6786.
test patch-o-matic-ng # ./runme TARPIT
Hey! KERNEL_DIR is not set.
Where is your kernel source directory? [/usr/src/linux]
Hey! IPTABLES_DIR is not set.
Where is your iptables source code directory? [/usr/src/iptables]
Loading patchlet definitions. done


Welcome to Patch-o-matic ($Revision: 6736 $)!

Kernel:   2.6.19, /usr/src/linux
Iptables: 1.3.7, /usr/src/iptables
Each patch is a new feature: many have minimal impact, some do not.
Almost every one has bugs, so don't apply what you don't need!
---
Already applied:
Testing TARPIT... not applied
The TARPIT patch:
   Author: "Aaron Hopkins" <[EMAIL PROTECTED]>
   Status: Works for me



Adds a TARPIT target to iptables, which captures and holds incoming TCP
connections using no local per-connection resources.  Connections are
accepted, but immediately switched to the persist state (0 byte window), in
which the remote side stops sending data and asks to continue every 60-240
seconds.  Attempts to close the connection are ignored, forcing the remote
side to time out the connection in 12-24 minutes.

This offers similar functionality to LaBrea
 but doesn't require dedicated hardware
or IPs.  Any TCP port that you would normally DROP or REJECT can instead
become a tarpit.

To tarpit connections to TCP port 80 destined for the current machine:

  iptables -A INPUT -p tcp -m tcp --dport 80 -j TARPIT

To significantly slow down Code Red/Nimda-style scans of unused address
space, forward unused ip addresses to a Linux box not acting as a router
(e.g. "ip route 10.0.0.0 255.0.0.0 ip.of.linux.box" on a Cisco), enable IP
forwarding on the Linux box, and add:

  iptables -A FORWARD -p tcp -j TARPIT
  iptables -A FORWARD -j DROP

You probably don't want the conntrack module loaded while you are using
TARPIT, or you will be using resources per connection.

-
Do you want to apply this patch [N/y/t/f/a/r/b/w/q/?] t
Patch TARPIT applies cleanly
-
Do you want to apply this patch [N/y/t/f/a/r/b/w/q/?] y

Excellent! Source trees are ready for compilation.

test patch-o-matic-ng # cd /usr/src/linux
test linux # make menuconfig
test linux # grep tarpit -i .config
CONFIG_IP_NF_TARGET_TARPIT=m
test linux # make
--snip--

Root device is (3, 1)
Boot sector 512 bytes.
Setup is 4730 bytes.
System is 1622 kB
Kernel: arch/i386/boot/bzImage is ready  (#1)
  Building modules, stage 2.
  MODPOST 159 modules
WARNING: "neigh_hh_output" [net/ipv4/netfilter/ipt_TARPIT.ko] undefined!
make[1]: *** [__modpost] Error 1
make: *** [modules] Error 2
test linux #




[gentoo-user] Warning: Missing charsets in String to FontSet conversion

2007-04-02 Thread Shaochun Wang
Every time I execute programs such as xdvi xcalc, I get the following
message:

Warning: Missing charsets in String to FontSet conversion
Warning: Unable to load any usable fontset

My locale is zh_CN.UTF-8, as following

LANG=
LC_CTYPE=zh_CN.UTF-8
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=

-- 
Shaochun Wang <[EMAIL PROTECTED]>

Jabber: [EMAIL PROTECTED]
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Mutt and CC%CC$CC6 characters

2007-04-02 Thread Juho Rosqvist
OK, I solved the problem.

For the record: it's worth checking whether the problem persists with a
near-empty muttrc. It did not, so I went through the rc file with a fine
comb once again. The culprit turned out to be this line:

set meta_key = yes

Unsetting the variable removes the problem. In hindsight, it's pretty
obvious, as explained by the Mutt manual:

--- quote ---
meta_key
Type: boolean
Default: no
If set, forces Mutt to interpret keystrokes with the high bit (bit 8) set
as if the user had pressed the ESC key and whatever key remains after having
the high bit removed. For example, if the key pressed has an ASCII value of
0xf4, then this is treated as if the user had pressed ESC then ``x''. This is
because the result of removing the high bit from ``0xf4'' is ``0x74'', which
is the ASCII character ``x''.
--- end quote ---

Thank you for pushing me towards the solution. I might have switched to
a mail client that 'sucks more' without your support ;-)

Regards, Juho

-- 
When you have eliminated the impossible, whatever remains, however
improbable, must be the truth. -- Sir Arthur Conan Doyle
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How to resolve policy conflicts?

2007-04-02 Thread Dave Jones
Hi Marcus

Markus Schönhaber wrote on 03/04/07 00:13:

>>> ATM we have the situation where the current stable version of OpenOffice
>>> (2.1.0-r1) won't compile (at least on a lot of machines) unless an ~arch
>>> version of STLport is installed:
>>> http://bugs.gentoo.org/show_bug.cgi?id=172860
>>> What is there to do?
>> It seems that we will have to be patient. The various bug reports have
>> been marked resolved or duplicate, but as yet there no sign of an
>> updated STLport in portage - except for the ~arch STLport-5.1.2.

> I'm already running OOo 2.1.0-r1 (having package-keyworded STLport 5.1.2) 
> and, 
> AFAICT, it runs fine.
> OTOH your reluctance is understandable. But what makes the situation even 
> more 
> delicate as the OOo build seems to be, is that OOo 2.1 contains some security 
> fixes.

I've used OOo 2.04 for months, a few days more probably won't hurt much.
> I was just asking out of curiosity - the bug doesn't hurt me personally. 
> Since 
> although the situation atm is obviously not the way it's meant to be, it's a 
> thing that can happen and propably will happen again eventually.

I'm very reluctant to mix stable & unstable packages.

You're braver than I am; I have back-trouble, a big yellow stripe all
the way down it.

> I was simply curious how this will be handled now and (maybe differently) in 
> the future. But since further comments on the bug seem to imply that there is 
> a lot of discussion on what is to be done, and since I don't have the 
> groundbreaking idea that makes all problems disappear, you're propably right: 
> we will have to be patient...

I'm sure that the Gentoo developers are doing their best to resolve the
issues. Unfortunately, I'm not talented enough myself to be able to
contribute to a speedier solution to the problem.

Recently there has been a lot of unpleasant noise about conflicts and
disagreements among the Gentoo developers. I hope that they will resolve
their (mainly political) problems soon. The stories have not been good
for the image of Gentoo, either as an organisation or as a distribution.
 As it stands, Gentoo continues to be my distro of choice. It would take
a lot of grief to make me swap to another distro.

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



Re: [gentoo-user] fcron

2007-04-02 Thread W.Kenworthy
Cant believe I am the only one who has this - 3 systems I have checked
so far are all the same - root cant access its crontab.  Ive tried
rebuilding one without pam (fcron only), but no change.

bunyip ~ # esearch fcron
[ Results for search key : fcron ]
[ Applications found : 1 ]

*  sys-process/fcron
  Latest version available: 3.0.2-r1
  Latest version installed: 3.0.2-r1
  Size of downloaded files: [no/bad digest]
  Homepage:http://fcron.free.fr/
  Description: A command scheduler with extended capabilities over
cron and anacron
  License: GPL-2


bunyip ~ # ls -al  /var/spool/cron/
total 0
drwxr-x--- 5 root  cron  176 Dec 10 00:01 .
drwxr-xr-x 9 root  root  240 Jun  8  2006 ..
-rw-r--r-- 1 root  root0 Dec 10 00:01 .keep_sys-process_cronbase-0
drwxr-x--- 2 root  cron   72 Feb 18  2005 crontabs
drwsrws--- 2 fcron fcron 200 Apr  3 06:46 fcrontabs
drwxr-x--- 2 root  root  224 Apr  2 22:26 lastrun
bunyip ~ # 

bunyip ~ # ls -al  /var/spool/cron/fcrontabs/
total 16
drwsrws--- 2 fcron fcron  200 Apr  3 06:46 .
drwxr-x--- 5 root  cron   176 Dec 10 00:01 ..
-rw-r--r-- 1 root  fcron0 Apr  3 06:46 .keep_sys-process_fcron-0
-rw--- 1 root  root  1681 Apr  3 06:21 root
-rw-r- 1 fcron fcron 1132 Feb 17 14:24 root.orig
-rw--- 1 root  root   184 Apr  3 06:21 wdk
-rw-r- 1 fcron fcron  173 Nov 22 14:14 wdk.orig
bunyip ~ #



On Mon, 2007-04-02 at 17:20 +0200, Alan McKinnon wrote:
> On Monday 02 April 2007, Etaoin Shrdlu wrote:
> > On Monday 2 April 2007 16:49, Alan McKinnon wrote:
> > > > moriah ~ # crontab -e
> > > > 22:05:13 Could not chdir to /var/spool/cron/fcrontabs: Permission
> > > > denied moriah ~ #
> > > >
> > > > BillK
> > >
> > > You HAVE to do that as root
> >
> > The # character in the prompt usually indicates a root shell...so I
> > guess the OP was already issuing those commands as root.
> 
> doh! /me whacks self on head with a clue by 4 
> 
> The OP has an interesting problem here, as root can cd into any 
> directory even if all permissions are removed.
> 
> Bill, a bit of a shot in the dark here, but what's the output 
> from 'ls -al  /var/spool/cron/'?
> 
> And are you running a hardened profile using selinux?
> 
> alan
> 
> -- 
> Optimists say the glass is half full,
> Pessimists say the glass is half empty,
> Developers say wtf is the glass twice as big as it needs to be?
> 
> 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] Mutt and CC%CC$CC6 characters

2007-04-02 Thread Juho Rosqvist
On Mon, Apr 02, 2007 at 22:18:46 +0200, Michal 'vorner' Vaner wrote:
> On Mon, Apr 02, 2007 at 09:10:58PM +0300, Juho Rosqvist wrote:
> > On Mon, Apr 02, 2007 at 13:49:46 +0200, Michal 'vorner' Vaner wrote:
> > 
> > I agree that my problem is probably input related. By your reply I
> > presume that mutt uses readline for input; is this correct?
> 
> I'm not sure, it is just a guess. It is only the direction I would try
> first if I had this problem, nothing definite...

I checked the ebuilds, and sys-libs/readline doesn't appear to be a
dependency of mutt. Not even an indirect dep. Although mutt's input
behaves a _lot_ like readline.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How to resolve policy conflicts?

2007-04-02 Thread Markus Schönhaber
Dave Jones wrote:

> Markus Schönhaber wrote on 02/04/07 02:27:
> > ATM we have the situation where the current stable version of OpenOffice
> > (2.1.0-r1) won't compile (at least on a lot of machines) unless an ~arch
> > version of STLport is installed:
> > http://bugs.gentoo.org/show_bug.cgi?id=172860
> > Looking at comments 34 and 37
> > http://bugs.gentoo.org/show_bug.cgi?id=172860#c34
> > http://bugs.gentoo.org/show_bug.cgi?id=172860#c37
> > it seems to me there is a conflict in policies but I don't see how this
> > situation should be / will be handled.
> > What is there to do?
>
> It seems that we will have to be patient. The various bug reports have
> been marked resolved or duplicate, but as yet there no sign of an
> updated STLport in portage - except for the ~arch STLport-5.1.2.
>
> Bug #172680 indicates that this ~arch version of STLport resolves the
> OpenOffice compilation problem.  However, I am very reluctant to use an
>  ~arch ebuild to compile such a massive (but apparently delicate) ebuild
> as OpenOffice.

I'm already running OOo 2.1.0-r1 (having package-keyworded STLport 5.1.2) and, 
AFAICT, it runs fine.
OTOH your reluctance is understandable. But what makes the situation even more 
delicate as the OOo build seems to be, is that OOo 2.1 contains some security 
fixes.

> Oh well, patience is a virtue. Or so they say.

I was just asking out of curiosity - the bug doesn't hurt me personally. Since 
although the situation atm is obviously not the way it's meant to be, it's a 
thing that can happen and propably will happen again eventually.
I was simply curious how this will be handled now and (maybe differently) in 
the future. But since further comments on the bug seem to imply that there is 
a lot of discussion on what is to be done, and since I don't have the 
groundbreaking idea that makes all problems disappear, you're propably right: 
we will have to be patient...

Regards
  mks
-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] How to prevent www-client/mozilla-firefox when I have www-client/mozilla-firefox-bin

2007-04-02 Thread Daevid Vincent
> Hello Daevid Vincent,
> 
> > > > But I have the -bin version installed...  
> > > 
> > > Some packages require the firefox or seamonkey source, to 
> > > build against.  
> > 
> > I also have this in /etc/make.conf
> 
> The mplayer-plug-in ebuild contains
> 
> DEPEND="...
> || ( www-client/mozilla-firefox
> www-client/seamonkey
> )
> 
> i.e. it depends on either seamonkey or mozilla-firefox, NOT 
> firefox-bin.
> You'll have to emerge firefox from source to use this plugin.

Sorta makes the -bin useless (except in very rare circumstances) then
doesn't it?

Perhaps there should be a www-client/mozilla-firefox-headers or something
that contains the .h files or whatever are needed for other dependant
programs. Or better still, just have the -bin version install those wherever
they need to be, so other things can compile.


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How to prevent www-client/mozilla-firefox when I have www-client/mozilla-firefox-bin

2007-04-02 Thread Neil Bothwick
Hello Daevid Vincent,

> > > But I have the -bin version installed...  
> > 
> > Some packages require the firefox or seamonkey source, to 
> > build against.  
> 
> I also have this in /etc/make.conf

The mplayer-plug-in ebuild contains

DEPEND="...
|| ( www-client/mozilla-firefox
www-client/seamonkey
)

i.e. it depends on either seamonkey or mozilla-firefox, NOT firefox-bin.
You'll have to emerge firefox from source to use this plugin.


-- 
Neil Bothwick

Me, indecisive? I'm not so sure about that.


signature.asc
Description: PGP signature


Re: [gentoo-user] The next step in AV

2007-04-02 Thread Grant

> I currently have an HDTV hooked up to a desktop computer running
> Gentoo and xfce4, all controlled by a wireless keyboard/mouse from the
> couch.  It's awesome.  However, I think the next step is to control
> everything from a laptop on the couch.  There would be a normal xfce4
> desktop on the laptop, but you could issue certain commands to have
> video or audio played through the desktop connected to the TV across
> the room.
>
> How would you set this up?  Maybe the actual xfce4 session is being
> run on the desktop and the laptop uses VNC or NX to control that
> session?  Is there a way to have certain audio or video launched on
> the laptop via VNC or NX, but outputted by the desktop?
>
> - Grant

Short answer - yes :-)

Your idea sounds about right too.

Some reading.

http://gentoo-wiki.com/HOWTO_X-forwarding


Thanks, I'll check that out.

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



Re: [gentoo-user] Thermal cpu

2007-04-02 Thread Sylvain Chouleur

I tried to install and use lm_sensors but it don't detect any sensors.
Moreover, I think it's a problem of acpi or the kernel configuration because 
on my debian, I don't use lm_sensors, just acpi.


May be detection is bad made or may be cpu id bad used, but top show me 
that:

top - 23:01:52 up 23 min,  6 users,  load average: 0.28, 0.25, 0.25
Tasks:  86 total,   3 running,  82 sleeping,   0 stopped,   1 zombie
Cpu(s): 10.3%us,  1.7%sy,  0.0%ni, 69.4%id, 16.9%wa,  1.7%hi,  0.0%si,  
0.0%st

Mem:448112k total,   305916k used,   142196k free,29056k buffers
Swap:   747012k total,0k used,   747012k free,   161780k cached

and acpi -t:
Thermal 1: ok, 65.0 degrees C

And at this state, on debian, the thermal is at 53 degrees C so and don't 
understand.


Is there some option to activate in the kernel to support better the thermal 
or cpu use?


(I'm using a mobile AMD Athlon(tm) XP2400+, 1788.817Mhz)

Thank you for your help!


On Fri, 30 Mar 2007 02:49:31 -0800 luis . emc2 wrote:

On Fri, Mar 30, 2007 at 11:10:58AM +0200, Sylvain Chouleur wrote:

I check the temperatures whith acpi:
>acpi -t


I think some chipset don't give the temperature directly, actually return a
numerical value and you have to
run a math formula to calculate the correct temperatura.

With the app lmsensors

*  sys-apps/lm_sensors
 Latest version available: 2.10.1
 Latest version installed: 2.10.1
 Size of downloaded files: 2,663 kB
 Homepage:http://www.lm-sensors.org/
 Description: Hardware Monitoring user-space utilities
 License: GPL-2

in the file /etc/lmsensors.conf you must config the formula

With acpi I don't know how configurate, but I think you can use lmsensors to
read acpi information.

If you don't find how to configure acpi, try lmsensors

_
Gagnez des écrans plats avec Live.com http://www.image-addict.fr/

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Building Shared Libraries

2007-04-02 Thread Manish Marathe

On 4/2/07, Boyd Stephen Smith Jr. <[EMAIL PROTECTED]> wrote:


On Monday 02 April 2007, "Manish Marathe" <[EMAIL PROTECTED]> wrote
about '[gentoo-user] Building Shared Libraries':
> I want to build all components as shared libraries.

Welcome to Gentoo.  That's policy, unless there are significant barriers,
in which case static linking can be used as an interim solution or for
binary (non-compiled) packages.




Thank You Boyd and Volker.


--

Boyd Stephen Smith Jr. ,= ,-_-. =.
[EMAIL PROTECTED]  ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-'
http://iguanasuicide.org/  \_/




RE: [gentoo-user] How to prevent www-client/mozilla-firefox when I have www-client/mozilla-firefox-bin

2007-04-02 Thread Daevid Vincent
 

> -Original Message-
> From: Neil Bothwick [mailto:[EMAIL PROTECTED] 
> Sent: Monday, April 02, 2007 12:45 PM
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] How to prevent 
> www-client/mozilla-firefox when I have www-client/mozilla-firefox-bin
> 
> Hello Daevid Vincent,
> 
> > locutus ~ # emerge -at bittorrent mplayerplug-in xine-ui 
> > 
> > These are the packages that would be merged, in reverse order:
> > 
> > Calculating dependencies... done!
> > [ebuild U ] media-video/xine-ui-0.99.5_pre20060716 [0.99.4-r5]
> > USE="-debug%" 
> > [ebuild U ] net-www/mplayerplug-in-3.35 [3.31-r1] 
> > [ebuild U ] net-p2p/bittorrent-5.0.5 [4.4.0] 
> > [nomerge  ] net-www/mplayerplug-in-3.35 [3.31-r1] 
> > [ebuild  N]  www-client/mozilla-firefox-2.0.0.2  USE="gnome ipv6
> > -bindist -debug -filepicker -java -mozdevelop -moznopango
> > -restrict-javascript -xforms -xinerama -xprint" LINGUAS="-af -ar -be
> > -bg -ca -cs -da -de -el -en_GB -es -es_AR -es_ES -eu -fi 
> -fr -fy -fy_NL
> > -ga -ga_IE -gu -gu_IN -he -hu -it -ja -ka -ko -ku -lt -mk -mn -nb
> > -nb_NO -nl -nn -nn_NO -pa -pa_IN -pl -pt -pt_BR -pt_PT -ru 
> -sk -sl -sv
> > -sv_SE -tr -zh -zh_CN -zh_TW" 
> > 
> > Would you like to merge these packages? [Yes/No] 
> 
> Please run again with --verbose.

locutus ~ # emerge -atv bittorrent mplayerplug-in xine-ui

These are the packages that would be merged, in reverse order:

Calculating dependencies... done!
[ebuild U ] media-video/xine-ui-0.99.5_pre20060716 [0.99.4-r5] USE="X
ncurses nls readline -aalib -curl -debug% -libcaca -lirc -vdr -xinerama"
1,893 kB 
[ebuild U ] net-www/mplayerplug-in-3.35 [3.31-r1] USE="gtk quicktime
-divx -gmedia -realmedia -wmp" 213 kB 
[ebuild U ] net-p2p/bittorrent-5.0.5 [4.4.0] USE="gtk" 2,428 kB 
[nomerge  ] net-www/mplayerplug-in-3.35 [3.31-r1] USE="gtk quicktime
-divx -gmedia -realmedia -wmp" 
[ebuild  N]  www-client/mozilla-firefox-2.0.0.2  USE="gnome ipv6
-bindist -debug -filepicker -java -mozdevelop -moznopango
-restrict-javascript -xforms -xinerama -xprint" LINGUAS="-af -ar -be -bg -ca
-cs -da -de -el -en_GB -es -es_AR -es_ES -eu -fi -fr -fy -fy_NL -ga -ga_IE
-gu -gu_IN -he -hu -it -ja -ka -ko -ku -lt -mk -mn -nb -nb_NO -nl -nn -nn_NO
-pa -pa_IN -pl -pt -pt_BR -pt_PT -ru -sk -sl -sv -sv_SE -tr -zh -zh_CN
-zh_TW" 36,301 kB 

Total: 4 packages (3 upgrades, 1 new), Size of downloads: 40,834 kB

> > But I have the -bin version installed...
> 
> Some packages require the firefox or seamonkey source, to 
> build against.

I also have this in /etc/make.conf

USE="udev nptl nptlonly -cups -debug acpi wifi mysql evo mmx vhosts X alsa
arts gtk gtk2 kde gnome pcmcia p
da sse svga nvidia apache2 php ruby bzip2 firefox-bin lm_sensors cdr dvd gpm
madwifi bin fpu vme de pse tsc
 msr pae mce cx8 sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr
sse sse2 ss ht tm pbe up cid -un
icode -cjk"

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] dhcpcd don't create resolv.conf

2007-04-02 Thread Sylvain Chouleur
but I want that when I launch dhcpcd manually, the resolv.conf file be 
created/updated

And I didn't see anything about that in the manpage



From: "Boyd Stephen Smith Jr." <[EMAIL PROTECTED]>
Reply-To: gentoo-user@lists.gentoo.org
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] dhcpcd don't create resolv.conf
Date: Mon, 2 Apr 2007 15:06:39 -0500

On Monday 02 April 2007, "Sylvain Chouleur" <[EMAIL PROTECTED]> wrote
about '[gentoo-user] dhcpcd don't create resolv.conf':
> I know that this problem is may be not in rapport with gentoo, but i
> try: When I call dhcpcd on an interface, it don't create or replace the
> file /etc/resolv.conf
>
> Is there an option or anything to do in order to update this file?

You should configure your network devices using /etc/conf.d/net.  Read the
example /etc/conf.d/net.example for how to set up dhcp, witch, by default,
will re-write this file.

There might also be a file or two mentioned the dhcpcd man page that
control it's behavior.

--
Boyd Stephen Smith Jr. ,= ,-_-. =.
[EMAIL PROTECTED]  ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-'
http://iguanasuicide.org/  \_/




<< attach3 >>


_
Gagnez des écrans plats avec Live.com http://www.image-addict.fr/

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How to resolve policy conflicts?

2007-04-02 Thread Dave Jones
Hi Marcus

Markus Schönhaber wrote on 02/04/07 02:27:
> ATM we have the situation where the current stable version of OpenOffice 
> (2.1.0-r1) won't compile (at least on a lot of machines) unless an ~arch 
> version of STLport is installed:
> http://bugs.gentoo.org/show_bug.cgi?id=172860
> Looking at comments 34 and 37
> http://bugs.gentoo.org/show_bug.cgi?id=172860#c34
> http://bugs.gentoo.org/show_bug.cgi?id=172860#c37
> it seems to me there is a conflict in policies but I don't see how this 
> situation should be / will be handled.
> What is there to do?

Bug # 172860 has been reopened.

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



Re: [gentoo-user] Mutt and CC%CC$CC6 characters

2007-04-02 Thread Michal 'vorner' Vaner
On Mon, Apr 02, 2007 at 09:10:58PM +0300, Juho Rosqvist wrote:
> On Mon, Apr 02, 2007 at 13:49:46 +0200, Michal 'vorner' Vaner wrote:
> > Hello
> > 
> > On Sat, Mar 31, 2007 at 06:31:34AM +0100, Graham Murray wrote:
> > > Juho Rosqvist <[EMAIL PROTECTED]> writes:
> > > 
> > > > Now, the subject _should_ read:
> > > > Mutt and ÅåÄäÖö characters
> > > [snip]
> > > > I'm really at a loss as to what causes this problem, or how to fix it.
> > > > Help would be appreciated.
> > > 
> > > The problem is that if mail headers (especially to, from and subject)
> > > contain non US-Ascii characters (as your email does), then the mail
> > > program is supposed to use the mechanism described in RFC2047. Your
> > > emailer is not doing this, but is sending the 'raw' Scandinavian
> > > characters. As to how to fix it, I am sorry but I cannot be of any
> > > help.  
> > 
> > I do not think this would be the problem, since MUTT does encode them
> > (at last my mutt with Czech characters and utf-8 charset). I would try
> > some other TUI application like mc or links. Vim handles the input
> > directly AFAIK, but these use readline library for it.
> 
> I agree that my problem is probably input related. By your reply I
> presume that mutt uses readline for input; is this correct?

I'm not sure, it is just a guess. It is only the direction I would try
first if I had this problem, nothing definite...

-- 
Wait few minutes before opening this email. The temperature difference 
could lead to vapour condensation.

Michal "vorner" Vaner


pgpQjdkfooWaE.pgp
Description: PGP signature


Re: [gentoo-user] How to resolve policy conflicts?

2007-04-02 Thread Dave Jones
Hi Markus

Markus Schönhaber wrote on 02/04/07 02:27:

> ATM we have the situation where the current stable version of OpenOffice 
> (2.1.0-r1) won't compile (at least on a lot of machines) unless an ~arch 
> version of STLport is installed:
> http://bugs.gentoo.org/show_bug.cgi?id=172860
> Looking at comments 34 and 37
> http://bugs.gentoo.org/show_bug.cgi?id=172860#c34
> http://bugs.gentoo.org/show_bug.cgi?id=172860#c37
> it seems to me there is a conflict in policies but I don't see how this 
> situation should be / will be handled.
> What is there to do?

It seems that we will have to be patient. The various bug reports have
been marked resolved or duplicate, but as yet there no sign of an
updated STLport in portage - except for the ~arch STLport-5.1.2.

Bug #172680 indicates that this ~arch version of STLport resolves the
OpenOffice compilation problem.  However, I am very reluctant to use an
 ~arch ebuild to compile such a massive (but apparently delicate) ebuild
as OpenOffice.

The patches in bug # 172680 mention an STLport-5.1.0-r1, but it has not
yet appeared in portage.

There is a request # 173175 to stabilise STLport-5.1.2 in bugzilla.

Oh well, patience is a virtue. Or so they say.

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



Re: [gentoo-user] dhcpcd don't create resolv.conf

2007-04-02 Thread Boyd Stephen Smith Jr.
On Monday 02 April 2007, "Sylvain Chouleur" <[EMAIL PROTECTED]> wrote 
about '[gentoo-user] dhcpcd don't create resolv.conf':
> I know that this problem is may be not in rapport with gentoo, but i
> try: When I call dhcpcd on an interface, it don't create or replace the
> file /etc/resolv.conf
>
> Is there an option or anything to do in order to update this file?

You should configure your network devices using /etc/conf.d/net.  Read the 
example /etc/conf.d/net.example for how to set up dhcp, witch, by default, 
will re-write this file.

There might also be a file or two mentioned the dhcpcd man page that 
control it's behavior.

-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
[EMAIL PROTECTED]  ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.org/  \_/ 


pgpFBVh1gl66q.pgp
Description: PGP signature


Re: [gentoo-user] Re: Can I share my /boot and swap partitions with other Linux installs?

2007-04-02 Thread Boyd Stephen Smith Jr.
On Monday 02 April 2007, [EMAIL PROTECTED] wrote about '[gentoo-user] Re: 
Can I share my /boot and swap partitions with other Linux installs?':
> And what's about sharing /root ? is there any problem or not ? I never
> did it but was wondering about.

No, different distros will require slightly different layouts in /etc 
(which is normally part of the same mount as /) and, in particular, will 
install (and confuse each other with) distro-specific scripts 
in /etc/init.d.

-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
[EMAIL PROTECTED]  ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.org/  \_/ 


pgp9V19MHFqOY.pgp
Description: PGP signature


Re: [gentoo-user] How to prevent www-client/mozilla-firefox when I have www-client/mozilla-firefox-bin

2007-04-02 Thread Neil Bothwick
Hello Daevid Vincent,

> locutus ~ # emerge -at bittorrent mplayerplug-in xine-ui 
> 
> These are the packages that would be merged, in reverse order:
> 
> Calculating dependencies... done!
> [ebuild U ] media-video/xine-ui-0.99.5_pre20060716 [0.99.4-r5]
> USE="-debug%" 
> [ebuild U ] net-www/mplayerplug-in-3.35 [3.31-r1] 
> [ebuild U ] net-p2p/bittorrent-5.0.5 [4.4.0] 
> [nomerge  ] net-www/mplayerplug-in-3.35 [3.31-r1] 
> [ebuild  N]  www-client/mozilla-firefox-2.0.0.2  USE="gnome ipv6
> -bindist -debug -filepicker -java -mozdevelop -moznopango
> -restrict-javascript -xforms -xinerama -xprint" LINGUAS="-af -ar -be
> -bg -ca -cs -da -de -el -en_GB -es -es_AR -es_ES -eu -fi -fr -fy -fy_NL
> -ga -ga_IE -gu -gu_IN -he -hu -it -ja -ka -ko -ku -lt -mk -mn -nb
> -nb_NO -nl -nn -nn_NO -pa -pa_IN -pl -pt -pt_BR -pt_PT -ru -sk -sl -sv
> -sv_SE -tr -zh -zh_CN -zh_TW" 
> 
> Would you like to merge these packages? [Yes/No] 

Please run again with --verbose.

> But I have the -bin version installed...

Some packages require the firefox or seamonkey source, to build against.


-- 
Neil Bothwick

"Do not handicap your children by making their lives easy."
 -- Robert Heinlein


signature.asc
Description: PGP signature


[gentoo-user] dhcpcd don't create resolv.conf

2007-04-02 Thread Sylvain Chouleur

Hello

I know that this problem is may be not in rapport with gentoo, but i try:
When I call dhcpcd on an interface, it don't create or replace the file 
/etc/resolv.conf


Is there an option or anything to do in order to update this file?

Thanks

Sylvain Chouleur

_
Personnalisez votre Messenger avec Live.com 
http://www.windowslive.fr/livecom/


--
gentoo-user@gentoo.org mailing list



[gentoo-user] How to prevent www-client/mozilla-firefox when I have www-client/mozilla-firefox-bin

2007-04-02 Thread Daevid Vincent
I keep noticing this kind of thing. 

locutus ~ # emerge -at bittorrent mplayerplug-in xine-ui 

These are the packages that would be merged, in reverse order:

Calculating dependencies... done!
[ebuild U ] media-video/xine-ui-0.99.5_pre20060716 [0.99.4-r5]
USE="-debug%" 
[ebuild U ] net-www/mplayerplug-in-3.35 [3.31-r1] 
[ebuild U ] net-p2p/bittorrent-5.0.5 [4.4.0] 
[nomerge  ] net-www/mplayerplug-in-3.35 [3.31-r1] 
[ebuild  N]  www-client/mozilla-firefox-2.0.0.2  USE="gnome ipv6
-bindist -debug -filepicker -java -mozdevelop -moznopango
-restrict-javascript -xforms -xinerama -xprint" LINGUAS="-af -ar -be -bg -ca
-cs -da -de -el -en_GB -es -es_AR -es_ES -eu -fi -fr -fy -fy_NL -ga -ga_IE
-gu -gu_IN -he -hu -it -ja -ka -ko -ku -lt -mk -mn -nb -nb_NO -nl -nn -nn_NO
-pa -pa_IN -pl -pt -pt_BR -pt_PT -ru -sk -sl -sv -sv_SE -tr -zh -zh_CN
-zh_TW" 

Would you like to merge these packages? [Yes/No] 


But I have the -bin version installed...

locutus ~ # esearch firefox
[ Results for search key : firefox ]
[ Applications found : 2 ]

*  www-client/mozilla-firefox
  Latest version available: 2.0.0.2
  Latest version installed: [ Not Installed ]
  Size of downloaded files: [no/bad digest]
  Homepage:http://www.mozilla.org/projects/firefox/
  Description: Firefox Web Browser
  License: MPL-1.1 GPL-2 LGPL-2.1

*  www-client/mozilla-firefox-bin
  Latest version available: 2.0.0.2
  Latest version installed: 2.0.0.2
  Size of downloaded files: [no/bad digest]
  Homepage:http://www.mozilla.org/projects/firefox
  Description: Firefox Web Browser
  License: MPL-1.1 GPL-2 LGPL-2.1


So how do I prevent portage from trying to emerge the source version?

ÐÆ5ÏÐ 

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Building Shared Libraries

2007-04-02 Thread Hemmann, Volker Armin
On Montag, 2. April 2007, Manish Marathe wrote:
> Hello,
>
> I want to build all components as shared libraries. So I wanted to know, is
> there any global USE Flag or any other global change I can make to the
> portage environment to make all components build as shared libraries rather
> than changing each component's ebuild file to make it build as a shared
> lib.
>

äääh. What?

By default all libs are shared libs.
--
gentoo-user@gentoo.org mailing list



[gentoo-user] Building Shared Libraries

2007-04-02 Thread Manish Marathe

Hello,

I want to build all components as shared libraries. So I wanted to know, is
there any global USE Flag or any other global change I can make to the
portage environment to make all components build as shared libraries rather
than changing each component's ebuild file to make it build as a shared lib.

Thanks much

-Manish
SpikeSource, Inc
http://dev.spikesource.com


Re: [gentoo-user] Mutt and CC%CC$CC6 characters

2007-04-02 Thread Juho Rosqvist
On Mon, Apr 02, 2007 at 13:49:46 +0200, Michal 'vorner' Vaner wrote:
> Hello
> 
> On Sat, Mar 31, 2007 at 06:31:34AM +0100, Graham Murray wrote:
> > Juho Rosqvist <[EMAIL PROTECTED]> writes:
> > 
> > > Now, the subject _should_ read:
> > > Mutt and ÅåÄäÖö characters
> > [snip]
> > > I'm really at a loss as to what causes this problem, or how to fix it.
> > > Help would be appreciated.
> > 
> > The problem is that if mail headers (especially to, from and subject)
> > contain non US-Ascii characters (as your email does), then the mail
> > program is supposed to use the mechanism described in RFC2047. Your
> > emailer is not doing this, but is sending the 'raw' Scandinavian
> > characters. As to how to fix it, I am sorry but I cannot be of any
> > help.  
> 
> I do not think this would be the problem, since MUTT does encode them
> (at last my mutt with Czech characters and utf-8 charset). I would try
> some other TUI application like mc or links. Vim handles the input
> directly AFAIK, but these use readline library for it.

I agree that my problem is probably input related. By your reply I
presume that mutt uses readline for input; is this correct?

Midnight Commander displays åäö correctly, but not the corresponding
capital letters ÅÄÖ, which is confusing to say the least. Links works 
after switching to UTF-8 I/O and ISO 8859-1 character set (UTF-8 is not
available?), although some symbols are not displayed, e.g. the euro
currency symbol € is replaced by EUR -- but this is due to the symbol
missing from the charset, I believe.
-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] The next step in AV

2007-04-02 Thread Wayne Oliver
> -Original Message-
> From: Grant [mailto:[EMAIL PROTECTED]
> Sent: 02 April 2007 05:50
> To: Gentoo mailing list
> Subject: [gentoo-user] The next step in AV
> 
> I currently have an HDTV hooked up to a desktop computer running
> Gentoo and xfce4, all controlled by a wireless keyboard/mouse from the
> couch.  It's awesome.  However, I think the next step is to control
> everything from a laptop on the couch.  There would be a normal xfce4
> desktop on the laptop, but you could issue certain commands to have
> video or audio played through the desktop connected to the TV across
> the room.
> 
> How would you set this up?  Maybe the actual xfce4 session is being
> run on the desktop and the laptop uses VNC or NX to control that
> session?  Is there a way to have certain audio or video launched on
> the laptop via VNC or NX, but outputted by the desktop?
> 
> - Grant

Short answer - yes :-)

Your idea sounds about right too. 

Some reading.

http://gentoo-wiki.com/HOWTO_X-forwarding

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



[gentoo-user] Font size based on access method

2007-04-02 Thread Grant

I have the font sizes cranked up in xfce4 on my HDTV because I view it
from across the room.  I also NX in to it from my laptop though, and
then I have to deal with the huge fonts on my laptop.  How would you
handle this situation?  I could set up a different user, but I want to
be able to control the apps for the "TV" user from my laptop as well
as have access to the same files as the TV user.

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



[gentoo-user] The next step in AV

2007-04-02 Thread Grant

I currently have an HDTV hooked up to a desktop computer running
Gentoo and xfce4, all controlled by a wireless keyboard/mouse from the
couch.  It's awesome.  However, I think the next step is to control
everything from a laptop on the couch.  There would be a normal xfce4
desktop on the laptop, but you could issue certain commands to have
video or audio played through the desktop connected to the TV across
the room.

How would you set this up?  Maybe the actual xfce4 session is being
run on the desktop and the laptop uses VNC or NX to control that
session?  Is there a way to have certain audio or video launched on
the laptop via VNC or NX, but outputted by the desktop?

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



Re: [gentoo-user] headphones don't work since upgrade to kernel 2.6.19???

2007-04-02 Thread Crayon
On Monday 02 April 2007 17:47, Daniel Pielmeier wrote:

> For me alsa-driver (not kernel-alsa) did not work with kernel 2.6.19
> too. I upgraded to kernel 2.6.20 and latest alsa-driver, and my
> problem was solved.

HDA Intel has been nothing but a total disaster for me. I built a new 
system a few months ago using an AsRock ConRoe945G-DVI motherboard. After 
the system has been up for a while (it could be anywhere from a few 
minutes to a few days) the sound device would "lockup". 
eg "cat /etc/passwd > /dev/sound/dsp" would just pause and never 
finishes. Sometimes "/etc/init.d/alsasound restart" gets it going again, 
other a reboot. Another thing was that the mixing was very flaky, it 
sometimes worked and sometimes didn't. 

I started off with the kernel alsa drivers then changed to alsa-driver but 
the problem persisted. So I got fed up and a couple of weeks ago I just 
bought a cheapo sound card to replace the onboard one, and haven't had a 
problem since.

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



Re: [gentoo-user] fcron

2007-04-02 Thread Alan McKinnon
On Monday 02 April 2007, Etaoin Shrdlu wrote:
> On Monday 2 April 2007 16:49, Alan McKinnon wrote:
> > > moriah ~ # crontab -e
> > > 22:05:13 Could not chdir to /var/spool/cron/fcrontabs: Permission
> > > denied moriah ~ #
> > >
> > > BillK
> >
> > You HAVE to do that as root
>
> The # character in the prompt usually indicates a root shell...so I
> guess the OP was already issuing those commands as root.

doh! /me whacks self on head with a clue by 4 

The OP has an interesting problem here, as root can cd into any 
directory even if all permissions are removed.

Bill, a bit of a shot in the dark here, but what's the output 
from 'ls -al  /var/spool/cron/'?

And are you running a hardened profile using selinux?

alan

-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

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] fcron

2007-04-02 Thread Alexis Lahouze
gpg: [stdin]: clearsign failed: Bad passphrase
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] fcron

2007-04-02 Thread Etaoin Shrdlu
On Monday 2 April 2007 16:49, Alan McKinnon wrote:

> > moriah ~ # crontab -e
> > 22:05:13 Could not chdir to /var/spool/cron/fcrontabs: Permission
> > denied moriah ~ #
> >
> > BillK
>
> You HAVE to do that as root

The # character in the prompt usually indicates a root shell...so I guess 
the OP was already issuing those commands as root.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] which package?

2007-04-02 Thread Boris Fersing

2007/4/2, Alan McKinnon <[EMAIL PROTECTED]>:

On Monday 02 April 2007, [EMAIL PROTECTED] wrote:
> Is there a command to provide me with the package name to which a
> given file belongs ?
> Man equery seems of little help

If you want to know which package installed an existing file, use:

equery belongs 

If you know which file you want to have and would like to know which
package provides it, well there's no tool for that, the solution would
be horrific. Instead, you ask here and usually someone who has it
already will run equery belongs for you :-)


I use this database :
http://www.rommel.stw.uni-erlangen.de/~fejf/cgi-bin/pfs-web.pl

HTH.

Boris



Be aware that not all existing files were installed during an emerge, so
quite often you get zero results.

alan



--
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

Alan McKinnon
alan at linuxholdings dot co dot za
+27 82, double three seven, one nine three five
--
gentoo-user@gentoo.org mailing list





--
$ ruby -e'puts " .:@BFegiklnorst".unpack("x4ax7aaX6ax5aX15ax4aax6aaX7ax2 \
aX5aX8axaX3ax8aX4ax6aX3aX6ax3ax3aX9ax4ax2aX9axaX6ax3aX2ax4 \
ax3aX4aXaX12ax10aaX7a").join'
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] fcron

2007-04-02 Thread Alan McKinnon
On Monday 02 April 2007, W.Kenworthy wrote:
> Looks like fcron has changed its user group from cron to fcron.  Once
> I realised this I have been able to add users to fcron and it works -
> for users.
>
> However I have quite a number of system level root jobs that I cant
> list or edit using crontab -e or -l on multiple systems
>
> moriah ~ # crontab -e
> 22:05:13 Could not chdir to /var/spool/cron/fcrontabs: Permission
> denied moriah ~ #
>
> BillK

You HAVE to do that as root

-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

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] fcron

2007-04-02 Thread Alexis Lahouze
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


W.Kenworthy a écrit :
> Looks like fcron has changed its user group from cron to fcron.  Once I
> realised this I have been able to add users to fcron and it works - for
> users.
>
> However I have quite a number of system level root jobs that I cant list
> or edit using crontab -e or -l on multiple systems
>
> moriah ~ # crontab -e 22:05:13 Could not chdir to
> /var/spool/cron/fcrontabs: Permission denied
> moriah ~ #
I think you need to add theses users to the fcron group (as root):
gpasswd -a [user] fcron

You'll also be interested into remove theses users from cron group which
is no more needed:
gpasswd -d [user] cron

and then retry fcrontab -e

- --
Alexis Lahouze - [EMAIL PROTECTED]
Gradignan (Bordeaux) - France - Terre
clé pgp : 0x7729E023 (subkeys.pgp.net)
fingerprint : 43F9 589F CDF7 7A21 A43E  048D A45E E8CA 7729 E023

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.3 (GNU/Linux)

iD8DBQFGERYZpF7oyncp4CMRAkVCAJ433iPF2r1YfcHYKbLZ3qCsxRJ5tgCdEdke
epYrpoQWze3sQq7n1EfTtuc=
=x4CI
-END PGP SIGNATURE-
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] which package?

2007-04-02 Thread Alan McKinnon
On Monday 02 April 2007, [EMAIL PROTECTED] wrote:
> Is there a command to provide me with the package name to which a
> given file belongs ?
> Man equery seems of little help

If you want to know which package installed an existing file, use:

equery belongs 

If you know which file you want to have and would like to know which 
package provides it, well there's no tool for that, the solution would 
be horrific. Instead, you ask here and usually someone who has it 
already will run equery belongs for you :-)

Be aware that not all existing files were installed during an emerge, so 
quite often you get zero results.

alan



-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

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] Cant emerge gnome on my P4 box?

2007-04-02 Thread Fabio

In the future, please include also the output of emerge --info.

Best regards,

On 31/03/07, Bo Ørsted Andresen <[EMAIL PROTECTED]> wrote:

On Saturday 31 March 2007 16:38:02 Jesper Taxbøl wrote:
> I have tried emerging gnome on my P4 box, to do some programming work
> in Eclipse.
>
> My box fails when emerging gnome. The specific package that fails is orbit.
>
> I have attached my make.conf and the build log from orbit.

From the build.log:
> make[5]: Warning: File `/usr/include/unistd.h' has modification time 1.4e+07 
s in the future
> make[2]: Warning: File `/usr/include/stdio.h' has modification time 1.4e+07 s 
in the future
> make[2]: Warning: File `/usr/include/sys/wait.h' has modification time 
1.4e+07 s in the future
> make[4]: Warning: File `/usr/include/string.h' has modification time 1.4e+07 
s in the future

Please search bugzie.. :)

http://bugs.gentoo.org/show_bug.cgi?id=171032#c2

--
Bo Andresen





--
Fabio A. Correa D.

Physics Dept, Universidad Nacional, Bogota, Colombia
[EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
My webpage and OpenPGP key at http://facorread.150m.com
My alexandria.cc address is not available anymore.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] which package?

2007-04-02 Thread Fabio

equery   belongs   /path/to/file

You must be root or member of the portage group.

Cheers!

On 02/04/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

Is there a command to provide me with the package name to which a given file
belongs ?
Man equery seems of little help

--
gentoo-user@gentoo.org mailing list





--
Fabio A. Correa D.

Physics Dept, Universidad Nacional, Bogota, Colombia
[EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
My webpage and OpenPGP key at http://facorread.150m.com
My alexandria.cc address is not available anymore.
--
gentoo-user@gentoo.org mailing list



[gentoo-user] which package?

2007-04-02 Thread alain . didierjean
Is there a command to provide me with the package name to which a given file
belongs ?
Man equery seems of little help

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] fcron

2007-04-02 Thread W.Kenworthy
Looks like fcron has changed its user group from cron to fcron.  Once I
realised this I have been able to add users to fcron and it works - for
users.

However I have quite a number of system level root jobs that I cant list
or edit using crontab -e or -l on multiple systems

moriah ~ # crontab -e
22:05:13 Could not chdir to /var/spool/cron/fcrontabs: Permission denied
moriah ~ #

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



RE: [gentoo-user] [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread Adam Carter
> I know I've once known and used a command that listed the nameservers
> serving a given IP.
> 
> I don't remember if it was nslookup, host, dig or what but not finding
> it in those various man pages.

I have made a different assumtion about what your question means than
other posters - assuming you want to find which nameserver is hosting
the reverse lookup zone, with gentoo.org's IP address as an example;

[EMAIL PROTECTED] ~ $ host gentoo.org
gentoo.org has address 204.74.99.100
gentoo.org mail is handled by 10 mail.gentoo.org.
gentoo.org mail is handled by 40 mx2.gentoo.org.

So to find out who's hosting the reverse record for 204.74.99.100 we
reverse the first three octets and add in.addr.arpa, ie;

[EMAIL PROTECTED] ~ $ host -t NS 99.74.202.in-addr.arpa.
99.74.202.in-addr.arpa name server hk-dns1.hk.prserv.net.
99.74.202.in-addr.arpa name server hk-dns2.hk.prserv.net.

Rgs,
Adam
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread Uwe Thiem
On 02 April 2007, Alexander Skwar wrote:
> [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > I know I've once known and used a command that listed the nameservers
> > serving a given IP.
>
> What do you with that? There's no such thing - any nameserver _can_
> return any IP.

Authoritative answers can only be obtained from name servers responsible for 
that particular domain.

nslookup
server xxx.yyy.zzz.ttt   (insert any name server kown to you)
set type=ns
domain.in.question

Uwe

-- 
A fast and easy generator of fractals for KDE:
http://www.SysEx.com.na/iwy-1.0.tar.bz2
Proof of concept of a TSP solver for KDE:
http://www.SysEx.com.na/epat-0.1.tar.bz2
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread James
Alan McKinnon  linuxholdings.co.za> writes:

> 
> On Monday 02 April 2007, Alexander Skwar wrote:
> > reader  newsguy.com  newsguy.com> wrote:
> > > I know I've once known and used a command that listed the
> > > nameservers serving a given IP.
> >
> > What do you with that? There's no such thing - any nameserver _can_
> > return any IP.
> 
> He's actually after the NS record from the authoritative server for the 
> zone, but doesn't have the FQDN yet, only an IP. The answer he'll get 
> from dig is necessarily fuzzy, but hey, them's the breaks


Maybe he curious about query's starting at the root servers? For example:



dig @A.ROOT-SERVERS.net gentoo.org




hth,
James

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Gentoo Installation on Dell Inspiron Laptop

2007-04-02 Thread Colleen Beamer
Iain Buchanan wrote:
> On Sun, 2007-04-01 at 14:29 -0400, Colleen Beamer wrote:
> 
> 
>> Will consider memtest as an option, but again, the memory is reasonably
>> new - it was upgraded recently to have more memory on the laptop.
> 
> aha! that rings alarm bells... new memory?  no possibility it's faulty?
> or was fitted with a tiny bit of dust on one of the pins?  you never
> know...  If it fails on the big compiles like gcc, kernel, etc., then I
> would bet it's the RAM...


Yeah, memory was upgraded "recently", but that was prior to the last
time i upgraded - say maybe 4 or 5 months ago.  So my point was that the
memory was reasonably new.

Take care,

Colleen

-- 

Registered Linux User #411143 with the Linux Counter, http://counter.li.org
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread Alan McKinnon
On Monday 02 April 2007, Alexander Skwar wrote:
> [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > I know I've once known and used a command that listed the
> > nameservers serving a given IP.
>
> What do you with that? There's no such thing - any nameserver _can_
> return any IP.

He's actually after the NS record from the authoritative server for the 
zone, but doesn't have the FQDN yet, only an IP. The answer he'll get 
from dig is necessarily fuzzy, but hey, them's the breaks


alan

-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

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] netfilter tarpit target

2007-04-02 Thread Ryan Curtin
On Sun, Apr 01, 2007 at 04:03:48PM +0300, Daniel Iliev wrote:
> Hi, guys
> 
> Recently I was looking through my logs when I got  pissed off (again) by
> the big number of lines showing something like 'sshd: auth. error:
> unknown user "XXX" from "some IP address"'. I wrote a script which
> automatically sets all connections from those IP addresses to be
> dropped. Next I decided to change "-j DROP" with "-j TARPIT" and I
> realized that gentoo-sources doesn't provide the netfilter target "TARPIT".

Instead of using iptables, you may want to try DenyHosts
(app-admin/denyhosts).  It's a simple Python script that parses through
/var/log/secure (or whatever your sshd logs to) and finds IPs who have
failed authentication a certain number of times, then adds those IPs to
/etc/hosts.deny.  Naturally, the threshold for blocking a host can be
configured, and many other options can too.  It's worked great for me,
and I've used it for about half a year now.

The website for the DenyHosts project is:
http://denyhosts.sourceforge.net/

I hope that I read your question right and that this will help.

Ryan Curtin
[EMAIL PROTECTED]

-- 

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread Alexander Skwar
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> I know I've once known and used a command that listed the nameservers
> serving a given IP.

What do you with that? There's no such thing - any nameserver _can_
return any IP.

> I know there are online sites that will do it, 

Like?

Alexander Skwar

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread Remy Blank
[EMAIL PROTECTED] wrote:
> I know I've once known and used a command that listed the nameservers
> serving a given IP.

dig -x 123.45.67.89

HTH.
-- Remy



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread Boyd Stephen Smith Jr.
On Sunday 01 April 2007, [EMAIL PROTECTED] wrote about '[gentoo-user]  [OT 
DNS] common way to discover nameservers for an IP':
> I know I've once known and used a command that listed the nameservers
> serving a given IP.
>
> I don't remember if it was nslookup, host, dig or what but not finding
> it in those various man pages.

You probably want:
dig NS -x $IP

-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
[EMAIL PROTECTED]  ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.org/  \_/ 


pgpZwmZLJtOnZ.pgp
Description: PGP signature


[gentoo-user] fontconfig causes segment faults!

2007-04-02 Thread Helmut Jarausch
Hi,

I just want to tell everybody that spurious segment faults with
ooffice / xsane / xcdroast and probably many more packages
are caused by media-libs/fontconfig .

Once I upgraded from 2.3.2-r2 to 2.4.2
the problem was solved (it was just a bit hard to find out)

I guess that any of the following packages does not play well
with fontconfig-2.3.2-r2 (the corresponding ebuilds don't check this)

x11-libs/gtk+-2.10.11
dev-libs/glib-2.12.11
x11-libs/pango-1.14.10


-- 
Helmut Jarausch

Lehrstuhl fuer Numerische Mathematik
RWTH - Aachen University
D 52056 Aachen, Germany

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] [OT DNS] common way to discover nameservers for an IP

2007-04-02 Thread reader
I know I've once known and used a command that listed the nameservers
serving a given IP.

I don't remember if it was nslookup, host, dig or what but not finding
it in those various man pages.

I know there are online sites that will do it, but does anyone know a
command line tool that gives that information once given the right syntax?

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Gentoo Installation on Dell Inspiron Laptop

2007-04-02 Thread Iain Buchanan
On Sun, 2007-04-01 at 14:29 -0400, Colleen Beamer wrote:


> Will consider memtest as an option, but again, the memory is reasonably
> new - it was upgraded recently to have more memory on the laptop.

aha! that rings alarm bells... new memory?  no possibility it's faulty?
or was fitted with a tiny bit of dust on one of the pins?  you never
know...  If it fails on the big compiles like gcc, kernel, etc., then I
would bet it's the RAM...

cya,
-- 
Iain Buchanan 

This is a good time to punt work.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] headphones don't work since upgrade to kernel 2.6.19???

2007-04-02 Thread Daniel Pielmeier

I've rebooted today with kernel 2.6.19 (used 2.6.18 before). I have a
Intel 945G/GZ/P/PL motherboard and a Intel hda on board soundcard
(Alsamixer says "Card: HDA Intel" and "Chip: Realtek ALC260").


Look for the Bugs concerning the kernel and hda-intel drivers
http://bugs.gentoo.org/buglist.cgi?quicksearch=ALL+alsa+hda

For me alsa-driver (not kernel-alsa) did not work with kernel 2.6.19
too. I upgraded to kernel 2.6.20 and latest alsa-driver, and my
problem was solved.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] headphones don't work since upgrade to kernel 2.6.19???

2007-04-02 Thread Roger Luethi
On Mon, 02 Apr 2007 07:51:58 +0200, Wolfgang Liebich wrote:
> I've rebooted today with kernel 2.6.19 (used 2.6.18 before). I have a
> Intel 945G/GZ/P/PL motherboard and a Intel hda on board soundcard
[...]
> Kernel version:
> Linux atpcbygc 2.6.19-gentoo-r5

I don't know anything about the Gentoo kernel, but there have been
significant changes affecting snd-hda-intel in the mainline kernel after
2.6.19. You could try 2.6.21-rc5 and see if that helps.

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



Re: [gentoo-user] Any consequences to package.mask'ing newer kernels?

2007-04-02 Thread Neil Bothwick
On Mon, 2 Apr 2007 01:35:42 -0400, Walter Dnes wrote:

>   I got bitten in the latest stable kernel (2.6.19-r5).  It moved SATA
> support out of SCSI, and into a separate section altogether.  I plowed
> through "make oldconfig", hitting "N" for every option.  Because I have
> a SATA drive, the result was kernel panic when I rebooted into the new
> kernel.

Same here, and it was the only time I've had a problem with make
oldconfig since switching to 2.6 however long ago. That really was a one
off situation that should have been addressed with a suitable ewarn, but
hindsight makes that easy.


-- 
Neil Bothwick

deja vous - the act of forgetting someone's name /again/ despite being
introduced to them several times.


signature.asc
Description: PGP signature


Re: [gentoo-user] Any consequences to package.mask'ing newer kernels?

2007-04-02 Thread Neil Bothwick
On Mon, 2 Apr 2007 01:02:32 -0400, Walter Dnes wrote:

>   I don't mind the 30 or 40 megs for the source tarball+patches in my
> distfiles directory.  But the quarter gig for each minor "r" bump, most
> of which I never build, is a bit much.

Why install it if you're not going to build it?

r bumps are necessarily minor, as they often contain security fixes.


-- 
Neil Bothwick

(A)bort (R)etry (T)ake an axe to it?


signature.asc
Description: PGP signature


Re: [gentoo-user] Re: Can I share my /boot and swap partitions with other Linux installs?

2007-04-02 Thread Neil Bothwick
On Mon, 02 Apr 2007 08:41:18 +0200, Alexander Skwar wrote:

> No, you don't NEED to have seperate /boot partitions. The problem
> might be, that the default filenames "overlap" in Gentoo and Ubuntu.
> But if you make sure that this does not happen and if you setup
> your bootloader (grub?) "properly", then all is fine.

It can also get a little messy with various files in root from the
different distros. I've done this in the past, but I kept each distro's
files in a subdirectory.


-- 
Neil Bothwick

30 minutes of begging is not considered foreplay.


signature.asc
Description: PGP signature


Re: [gentoo-user] update-eix error message

2007-04-02 Thread Neil Bothwick
On Sun, 1 Apr 2007 18:40:49 -0600, Adrian wrote:

> Odd things with eix-0.7.9

0.8.8 is the latest stable eix and fixes this problem.


-- 
Neil Bothwick

I distinctly remember forgetting that.


signature.asc
Description: PGP signature


RE: [gentoo-user] Eez a byootiful dai todai

2007-04-02 Thread Nelson, David J
> -Original Message-
> From: Hemmann, Volker Armin
> [mailto:[EMAIL PROTECTED]
> Sent: 30 March 2007 23:44
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] Eez a byootiful dai todai
> 
> 
> 
> one question makes s much of a difference. And instead of 
> two passwords, 
> one never entered in X, an attacker only needs to capture 
> your user password, 
> which is typed in douzends of time, to f* up your machine

With any OS the limiting factor is the intelligence of the user in setting up 
and securing things. Any experienced windows user knows what can be stopped and 
stripped out and what needs patched. An experienced windows user will make sure 
(s)he has adequate firewall and antivirus software.

However, put an idiot in front of a default ubuntu desktop and an idiot in 
front of a default windows desktop and I reckon the windows one will still be 
messed up first. There are compromises everywhere in Linux - and a lot of it 
comes down to ease of use vs power, security and flexibility. Windows is about 
as flexible as a brick but its easier to use. Gentoo is in my opinion often 
right at the other end of the spectrum - if you want a totally locked down 
secure flexible powerful desktop Gentoo can do that but it requires a little 
effort and a little knowledge. It's this aspect of Linux I love - I'm a tweaker 
and a fiddler and I like to tweak and fiddle with my desktop :D

tl;dr crew: Ubuntu may not have a perfect security model but it's still better 
than windows and a great way to get people at least curious about linux.

David "Monday Mornings  ugh" Nelson

--
djn

I do not represent anyone else in emails I send to this list.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: Can I share my /boot and swap partitions with other Linux installs?

2007-04-02 Thread Alan McKinnon
On Monday 02 April 2007, Alexander Skwar wrote:
> Daevid Vincent <[EMAIL PROTECTED]> wrote:
> > Can I install Ubuntu in yet another partition and have it share the
> > /boot and swap ones I already have, or do I need dedicated ones for
> > that distro too?
>
> No, you don't NEED to have seperate /boot partitions. The problem
> might be, that the default filenames "overlap" in Gentoo and Ubuntu.
> But if you make sure that this does not happen and if you setup
> your bootloader (grub?) "properly", then all is fine.

I routinely set up machines for colleagues as triple-boot (Red Hat, 
Ubuntu, XP), and it's the easiest thing in the world. /boot is really 
just a convenient place to put kernel images and grub.conf where grub 
can find them at boot time.

There is a very slim outside chance that two distros might use the same 
name for a kernel, and one clobbers the other. If you want to avoid 
this, create /boot/ubuntu and /boot/redhat (adjust as appropriate), and 
let the distros install kernels into /boot. Then manually move them to 
the correct subdirectory and adjust the "kernel" and "initrd" entries 
in grub.conf to reflect the new path. 

Or you could just rename the kernel, config, initrd and System.map files 
by appending the distro name. There are many possible schemes, so use 
whatever floats your boat.

To save yourself much pain and grief, use one distro to install and 
maintain grub/lilo, and install the other distro *without* a boot 
loader. No distro requires a boot loader to work, as long as you have 
one that can find and load a kernel image, it all works out

alan


-- 
Optimists say the glass is half full,
Pessimists say the glass is half empty,
Developers say wtf is the glass twice as big as it needs to be?

Alan McKinnon
alan at linuxholdings dot co dot za
+27 82, double three seven, one nine three five
-- 
gentoo-user@gentoo.org mailing list