Re: [gentoo-user] IPtables question

2007-02-02 Thread Pawel Kraszewski
Dnia środa, 31 stycznia 2007, James Colby napisał:

 I have a small home server that I have connected to the internet
 through a linksys router and cable modem.  The linksys router is
 currently forwarding all ssh traffic to my gentoo box.  What I would
 ^

Take note, that forwarded traffic (it is DNAT-ed in Linksys) would appear on 
your host as originating from your router. Original source address is 
stripped by router's NAT.

Ergo, you need source address filtering in your router.


-- 
 Pawel Kraszewski
 www.kraszewscy.net

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] IPtables question

2007-02-02 Thread Hans-Werner Hilse
Hi,

On Fri, 2 Feb 2007 09:45:53 +0100 Pawel Kraszewski
[EMAIL PROTECTED] wrote:

 Dnia środa, 31 stycznia 2007, James Colby napisał:
 
  I have a small home server that I have connected to the internet
  through a linksys router and cable modem.  The linksys router is
  currently forwarding all ssh traffic to my gentoo box.  What I would
  ^
 
 Take note, that forwarded traffic (it is DNAT-ed in Linksys) would
 appear on your host as originating from your router. Original source
 address is stripped by router's NAT.

Nope, just the target Adress is rewritten (by routing). DNAT is
Destination NAT! I.e. the target IP of the packet is rewritten. Since
the Linksys is the default gateway, packets can keep their source IP
address. Of course, the source MAC address will be rewritten to the
router's -- but that's got nothing to do with NAT but routing instead.

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



RE: [gentoo-user] Re: [kernel 2.6.19-r4] DVD Drive extremely slow

2007-02-02 Thread Nelson, David \(ED, PARD\)
 -Original Message-
 From: Jakob Buchgraber [mailto:[EMAIL PROTECTED]
 Sent: 01 February 2007 19:16
 To: gentoo-user@lists.gentoo.org
 Subject: [gentoo-user] Re: [kernel 2.6.19-r4] DVD Drive extremely slow
 

... snip ...

 Hey everybody!
 
 I've upgraded to kernel 2.6.19 (gentoo sources) a few days 
 ago however I 
 can't get my DVD Drive working correctly.
... snip ...
 
 Btw.: It worked perfectly well under openSUSE 10.2 (don't have it 
 installed anymore, so I can't check which drivers were used) 
 and gentoo 
 kernel 2.6.18-r6 (I also used the ATA_PIIX driver there).
 
 Any hints?
 
 Cheers,
 Jay
 -- 
 gentoo-user@gentoo.org mailing list
 
 


When you say you cant get it working correctly what exactly do you mean? Do you 
mean it's slow when reading or writing CDs/DVDs? Or do you mean you can't 
access it at all? What sort of methods did you use to test its speed?

AFAIK 33MB/s should be fine for a DVD drive - 16x is approx 21MB/s, 
*theoretically* so I doubt it will ever even reach that.

--
djn

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] IPtables question

2007-02-02 Thread Pawel Kraszewski
Dnia piątek, 2 lutego 2007, Hans-Werner Hilse napisał:
 Nope, just the target Adress is rewritten (by routing). DNAT is
 Destination NAT! I.e. the target IP of the packet is rewritten. Since
 the Linksys is the default gateway, packets can keep their source IP
 address. Of course, the source MAC address will be rewritten to the
 router's -- but that's got nothing to do with NAT but routing instead.

Jeee, I'm terrible sorry. My only excuse is that it was written without the 
morning coffee... Of course SNAT rewrites source IP and DNAT destination IP, 
and port forwarding uses DNAT. Once more, sorry for confusion - my mind was 
somehow floating around proxying not forwarding.

-- 
 Pawel Kraszewski
 www.kraszewscy.net

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Precedence order of overlays

2007-02-02 Thread Alan McKinnon
Hi,

I have several packages that I maintain my own ebuilds for, as it's CVS 
sources. I keep these in /usr/local/portage. As it happens ebuilds for 
these same packages are also in layman, and I have the relevant overlay 
enabled.

So far it would appear that my local overlay is taking precedence over 
layman. I've read the layman docs and there is an option for 
precedence, but it seems to apply to layman only, and that's not what I 
want. The portage docs seems to be sparse on this matter of overlays.

I want to guarantee that foo-.ebuild in /usr/local/portage will be 
emerged in preference to an identically named and versioned ebuild in 
layman. How do I do that?

If I can't guarantee this, I'd also be happy bumping my ebuilds to 
foo-9.ebuild, but I'd rather do it with a config option if 
possible.

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] Precedence order of overlays

2007-02-02 Thread Bo Ørsted Andresen
 I have several packages that I maintain my own ebuilds for, as it's CVS
 sources. I keep these in /usr/local/portage. As it happens ebuilds for
 these same packages are also in layman, and I have the relevant overlay
 enabled.

 So far it would appear that my local overlay is taking precedence over
 layman. I've read the layman docs and there is an option for
 precedence, but it seems to apply to layman only, and that's not what I
 want. The portage docs seems to be sparse on this matter of overlays.

 I want to guarantee that foo-.ebuild in /usr/local/portage will be
 emerged in preference to an identically named and versioned ebuild in
 layman. How do I do that?

If several overlays contain the same version of an ebuild portage will only 
see the one from the overlay that is listed last in PORTDIR_OVERLAY. This is 
why /usr/portage/local/layman/make.conf prepends layman overlays to 
PORTDIR_OVERLAY rather than appending them.

 If I can't guarantee this, I'd also be happy bumping my ebuilds to
 foo-9.ebuild, but I'd rather do it with a config option if
 possible.

Do note that portage will consider e.g. foo-20050101.ebuild a higher version 
than foo-.ebuild.

-- 
Bo Andresen


pgpVPXr3UmMtl.pgp
Description: PGP signature


[gentoo-user] Re: Precedence order of overlays

2007-02-02 Thread Harm Geerts
On Friday 02 February 2007, Alan McKinnon wrote:
 Hi,

 I have several packages that I maintain my own ebuilds for, as it's CVS
 sources. I keep these in /usr/local/portage. As it happens ebuilds for
 these same packages are also in layman, and I have the relevant overlay
 enabled.

 So far it would appear that my local overlay is taking precedence over
 layman. I've read the layman docs and there is an option for
 precedence, but it seems to apply to layman only, and that's not what I
 want. The portage docs seems to be sparse on this matter of overlays.

 I want to guarantee that foo-.ebuild in /usr/local/portage will be
 emerged in preference to an identically named and versioned ebuild in
 layman. How do I do that?

 If I can't guarantee this, I'd also be happy bumping my ebuilds to
 foo-9.ebuild, but I'd rather do it with a config option if
 possible.

This is controlled by the order in which they apear in PORTDIR_OVERLAY.
The last overlay that matches a package takes precedence.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Adrian

Greetings all --

Here is a question I'd like opinions on.  We have a new director at my
job and she uses a Mac.  Naturally, we are all PC based using Windows
and *barf* Outlook.

When she sends emails from her Mac:  
Sometimes attachments don't arrive.
Sometimes the emails never arrive (or so people claim, never happens to
me)
Sometimes her emails end up in the junk mail folder (again, never
happens to me)

Our IT people are telling here this is because Mac email is not
compatible with PCs.  My intuition  years of computer use is
telling me this is bullshit.

I've been wrong before . . .   Just not often.  *haha*

Any commentary?

Thank you -- Adrian


-- 
On The Fly Photography -:- Creation From Chaos

On The Fly Photography:  http://204EastSouth.com
Purchase from On The Fly:  http://204EastSouth.com/OTFStore.htm
The Cynical Libertarian Society:  http://www.204EastSouth.com/cls
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Mikko Husari

Adrian wrote:

Greetings all --

Here is a question I'd like opinions on.  We have a new director at my
job and she uses a Mac.  Naturally, we are all PC based using Windows
and *barf* Outlook.

When she sends emails from her Mac:  
Sometimes attachments don't arrive.

Sometimes the emails never arrive (or so people claim, never happens to
me)
Sometimes her emails end up in the junk mail folder (again, never
happens to me)

Our IT people are telling here this is because Mac email is not
compatible with PCs.  My intuition  years of computer use is
telling me this is bullshit.

I've been wrong before . . .   Just not often.  *haha*

Any commentary?

Thank you -- Adrian


  
Does she use some sort of digital signature or that sort of stuff? 
sometimes outlooks does not handle that kind of attachments...

--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Nelson, David \(ED, PARD\)

 -Original Message-
 From: Adrian [mailto:[EMAIL PROTECTED]
 Sent: 02 February 2007 14:22
 To: gentoo-user@lists.gentoo.org
 Subject: [gentoo-user] OT: Email from Mac to PC/Win

... foo ...

 
 When she sends emails from her Mac:  
 Sometimes attachments don't arrive.
 Sometimes the emails never arrive (or so people claim, never 
 happens to
 me)
 Sometimes her emails end up in the junk mail folder (again, never
 happens to me)
 
 Our IT people are telling here this is because Mac email is not
 compatible with PCs.  My intuition  years of computer use is
 telling me this is bullshit.
 

I would try the following:

Have her send a plain text email to an outlook inbox as well as a gmail or 
something address. See if it arrives at both. If it only arrives at one, 
Outlook is to blame. If neither, her Mac is.

Then try with an attachment. Also check all your junk filters.

--
djn 

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Ed Santiago
  When she sends emails from her Mac:  
  Sometimes attachments don't arrive.

Have the Mac person try this:

   Go in to Mail, Preferences - Composing.  The top preference is:

   Composing:  Message Format:

   Rich Text is probably selected.  Pick Plain Text instead.

This is a good idea in general, but it also affects one
specific and obscure corner case: Mac user forwarding
a received email which includes an attachment.  When
Mac Mail forwards with Rich Text, the generated MIME has
a tree structure that some MUAs don't handle.  The
attachment is there but the MUA won't see it.

  Sometimes the emails never arrive (or so people claim, never happens to
  me)
  Sometimes her emails end up in the junk mail folder (again, never
  happens to me)

Can't help you there, at least not without much more info.
The first thing I'd check, though, are the account settings
on the Mac.  Maybe there's a mismatch between the claimed
account name ([EMAIL PROTECTED]) and the SMTP server ([EMAIL PROTECTED])
that's triggering antispam rules?

G'luck,
^E
-- 
Ed Santiago   Toolsmith   [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] I want you for Bugday!

2007-02-02 Thread Alexander Færøy
Greetings!

This is a short reminder about that it is Bugday time once again! It is
actually as soon as tomorrow!

Join #Gentoo-Bugs on Freenode and help out fixing the various bugs from
our Bugzilla.

Our team of developers will be available for help all day long, so feel
free to poke any of the operators or other people who are hanging around
in the channel :)

Best regards,
Alexander

-- 
Alexander Færøy
Bugday Lead
Alpha/IA64/MIPS Architecture Teams
User Relations, Quality Assurance


pgpATEcu7Gwk1.pgp
Description: PGP signature


Re: [gentoo-user] http://www.gentoo.org/proj/en/releng/

2007-02-02 Thread Boyd Stephen Smith Jr.
On Friday 02 February 2007 09:42, James [EMAIL PROTECTED] wrote 
about '[gentoo-user]  http://www.gentoo.org/proj/en/releng/':
 Any insider tidbits
 on liveCD 2007.0 ???

I've not been hearing anything about it good or bad, so I still expect it 
sometime in February.

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


pgpZuEUfvILCN.pgp
Description: PGP signature


Re: [gentoo-user] Precedence order of overlays

2007-02-02 Thread Alan McKinnon
On Friday 02 February 2007, Bo Ørsted Andresen wrote:
  I have several packages that I maintain my own ebuilds for, as it's
  CVS sources. I keep these in /usr/local/portage. As it happens
  ebuilds for these same packages are also in layman, and I have the
  relevant overlay enabled.
 
  So far it would appear that my local overlay is taking precedence
  over layman. I've read the layman docs and there is an option for
  precedence, but it seems to apply to layman only, and that's not
  what I want. The portage docs seems to be sparse on this matter of
  overlays.
 
  I want to guarantee that foo-.ebuild in /usr/local/portage will
  be emerged in preference to an identically named and versioned
  ebuild in layman. How do I do that?

 If several overlays contain the same version of an ebuild portage
 will only see the one from the overlay that is listed last in
 PORTDIR_OVERLAY. This is why /usr/portage/local/layman/make.conf
 prepends layman overlays to PORTDIR_OVERLAY rather than appending
 them.

Excellent, this is exactly what I needed to know. Thanks.

  If I can't guarantee this, I'd also be happy bumping my ebuilds to
  foo-9.ebuild, but I'd rather do it with a config option if
  possible.

 Do note that portage will consider e.g. foo-20050101.ebuild a higher
 version than foo-.ebuild.

Why is that? Because 20050101 is a bigger number than ? If so, it's 
not a problem, as the ebuilds don't use version numbers formatted that 
way

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] OT: Email from Mac to PC/Win

2007-02-02 Thread Boyd Stephen Smith Jr.
On Friday 02 February 2007 09:55, Alan McKinnon [EMAIL PROTECTED] 
wrote about 'Re: [gentoo-user] OT:  Email from Mac to PC/Win':
 While we're at it, my 2007 Hyundai Getz 1400 is running rough for the
 first few minutes in the morning. Any of you gentooites know how to fix
 this?

Cold where you are?  Double check your fluid levels.  If they are all fine, 
what weight oil are you using?

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


pgpuoULrKARYH.pgp
Description: PGP signature


Re: [gentoo-user] Re: Precedence order of overlays

2007-02-02 Thread Alan McKinnon
On Friday 02 February 2007, Harm Geerts wrote:
 On Friday 02 February 2007, Alan McKinnon wrote:

  I want to guarantee that foo-.ebuild in /usr/local/portage will
  be emerged in preference to an identically named and versioned
  ebuild in layman. How do I do that?
 
  If I can't guarantee this, I'd also be happy bumping my ebuilds to
  foo-9.ebuild, but I'd rather do it with a config option if
  possible.

 This is controlled by the order in which they apear in
 PORTDIR_OVERLAY. The last overlay that matches a package takes
 precedence.

Thanks for this, but Bo beat you to the correct answer by 6 minutes :-)

I think I'll make a suggestion to the appropriate maintainer to have 
this documented in man 5 make.conf

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] OT: Email from Mac to PC/Win

2007-02-02 Thread Sigfrido V. Ortiz C.

Nice answer, nice distribution list

[EMAIL PROTECTED] wrote:

On Friday 02 February 2007 09:55, Alan McKinnon [EMAIL PROTECTED] 
wrote about 'Re: [gentoo-user] OT:  Email from Mac to PC/Win':
 


While we're at it, my 2007 Hyundai Getz 1400 is running rough for the
first few minutes in the morning. Any of you gentooites know how to fix
this?
   



Cold where you are?  Double check your fluid levels.  If they are all fine, 
what weight oil are you using?


 



[gentoo-user] Question about /etc/conf.d/net entry

2007-02-02 Thread Shawn Singh

Hello list,

I've got my /etc/conf.d/net setup as follows:

# Interface Handler
modules=( ifconfig )

# eth0 (WAN) config
config_eth0=( dhcp )

# eth1 (LAN) config
config_eth1=( 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255 )
routes_eth1=( 192.168.1.0 via 192.168.1.1 ) # the idea here is that I wish
to have all traffic intended for hosts on 192.168.1.0 pass through
192.168.1.1.

Here's the output from ifconfig eth1:

eth1  Link encap:Ethernet  HWaddr 00:10:B5:0E:D6:E9
 inet addr:192.168.1.1  Bcast:192.168.1.255  Mask:255.255.255.0
 UP BROADCAST MULTICAST  MTU:1500  Metric:1
 RX packets:0 errors:0 dropped:0 overruns:0 frame:0
 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
 collisions:0 txqueuelen:1000
 RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
 Interrupt:10 Base address:0x6c00

This is my routing table:

Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse
Iface
192.168.1.0 *   255.255.255.0   U 0  00 eth1
c-71-203-144-0. *   255.255.252.0   U 0  00 eth0
loopback*   255.0.0.0   U 0  00 lo
default c-71-203-144-1. 0.0.0.0 UG0  00 eth0

One odd thing is, if I run mii-tool eth1, I get:
eth1: no link

eth1 is connected to my client machine via crossover cable (the wire scheme
A end is plugged into eth1, and the wire scheme b end is plugged into the
client machine)

I'm experiencing difficulty where my client can't get to the Internet (the
pages just time out), and I can't ping the gateway (192.168.1.1) from the
client. Also, from the firewall, I can't ping the client machine (
192.168.1.2).

Pings from the firewall to the client result in Destination Unreachable, and
if I remember correctly, pings from the client to the firewall just time
out.

I'm running shorewall (v 3.0.8), so I've tried shutting it down (shorewall
clear) to eliminate that as an option, but still not getting anywhere.

.config has the following entries in it, please let me know if there are
others that you need to see.

CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_NETFILTER=y
CONFIG_IP_NF_NAT=y

Thanks,

Shawn

Doing linear scans over an associative array is like trying to club someone
to death with a loaded Uzi.
--Larry Wall


Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Neil Bothwick
On Fri, 2 Feb 2007 10:15:25 -0600, Boyd Stephen Smith Jr. wrote:

  While we're at it, my 2007 Hyundai Getz 1400 is running rough for the
  first few minutes in the morning. Any of you gentooites know how to
  fix this?  
 
 Cold where you are?  Double check your fluid levels.  If they are all
 fine, what weight oil are you using?

Surely the correct advice for this list is to strip the engine down to its
smallest component parts and rebuild it

emerge -e engine :)


-- 
Neil Bothwick

Stupidity is NOT a handicap. You'll have to park elsewhere.


signature.asc
Description: PGP signature


Re: [gentoo-user] Question about /etc/conf.d/net entry

2007-02-02 Thread Michal 'vorner' Vaner
Hello,

On Fri, Feb 02, 2007 at 12:07:59PM -0500, Shawn Singh wrote:
 I've got my /etc/conf.d/net setup as follows:
 
 # eth1 (LAN) config
 config_eth1=( 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255 )
 routes_eth1=( 192.168.1.0 via 192.168.1.1 ) # the idea here is that I wish

Er, shouldn't this work by default? It is the netmask thing, right?

Because what I think you are trying to do is:
Whatever goes to 192.168.1.*, send it to the machine at 192.168.1.1, it
will know. But the problem IMO is, this machine is local, so it again
runs the packet trough the table and sends it to itself…

Did you try removing the routing rule? I guess it should work by itself
and you needed it only if there was a machine somewhere, like 10.0.0.1
that would be reachable trough 192.168.1.15…

But I'm not sure, I hope I do not talk complete jebrish.

-- 
The cost of living is going up, and the chance of living is going down.

Michal 'vorner' Vaner


pgpEdPkpKdp0n.pgp
Description: PGP signature


Re: [gentoo-user] Precedence order of overlays

2007-02-02 Thread Bo Ørsted Andresen
On Friday 02 February 2007 16:58:47 Alan McKinnon wrote:
  Do note that portage will consider e.g. foo-20050101.ebuild a higher
  version than foo-.ebuild.

 Why is that? Because 20050101 is a bigger number than ?

Yes.

-- 
Bo Andresen


pgpGALOm46zEL.pgp
Description: PGP signature


Re: [gentoo-user] Re: [kernel 2.6.19-r4] DVD Drive extremely slow

2007-02-02 Thread Jakob Buchgraber

Nelson, David (ED, PARD) wrote:

-Original Message-
From: Jakob Buchgraber [mailto:[EMAIL PROTECTED]
Sent: 01 February 2007 19:16
To: gentoo-user@lists.gentoo.org
Subject: [gentoo-user] Re: [kernel 2.6.19-r4] DVD Drive extremely slow




... snip ...

  

Hey everybody!

I've upgraded to kernel 2.6.19 (gentoo sources) a few days 
ago however I 
can't get my DVD Drive working correctly.


... snip ...
  
Btw.: It worked perfectly well under openSUSE 10.2 (don't have it 
installed anymore, so I can't check which drivers were used) 
and gentoo 
kernel 2.6.18-r6 (I also used the ATA_PIIX driver there).


Any hints?

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






When you say you cant get it working correctly what exactly do you mean? Do you 
mean it's slow when reading or writing CDs/DVDs? Or do you mean you can't 
access it at all? What sort of methods did you use to test its speed?

AFAIK 33MB/s should be fine for a DVD drive - 16x is approx 21MB/s, 
*theoretically* so I doubt it will ever even reach that.

--
djn

  

Hi, thanks for replying!

I get 2x DVD writing speed
I get  500KB/s to  1,5  MB/s  reading speed.

I can mount and access it, but it's just SLOW.

Any hints?

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



[gentoo-user] vlc win32codecs on amd64

2007-02-02 Thread James
Hello one and all,

What's the trick to getting win32codecs to install and work with
vlc on amd64?

Any wikis?

I cannot seem to get VLC to compile in win32codecs on an amd64...
Yes I realize that 'win32' and amd64 are different arches, but,
surely there is a solution for this? Maybe not just with
vlc but every app that can work with win32codes on amd64?



James


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] help with emerge package recompile

2007-02-02 Thread Fei Liu
Hello, I was going to install 'webalizer' (apache monitoring software) 
by 'emerge -kv webalizer', I got the following error:


!!! ERROR: app-admin/webalizer-2.01.10-r12 failed.
Call stack:
 ebuild.sh, line 1555:   Called dyn_setup
 ebuild.sh, line 668:   Called pkg_setup
 webalizer-2.01.10-r12.ebuild, line 45:   Called die

!!! recompile gd with USE=png
!!! If you need support, post the topmost build error, and the call 
stack if relevant.


I tried to do 'USE=png emerge -update gd', and I got a scary list of 
package ebuilds:

[ebuild  N] media-libs/gd-2.0.33  USE=png*
[ebuild  N]  media-libs/freetype-2.1.10-r2
[ebuild  N]  media-libs/libpng-1.2.12
[ebuild  N]  sys-devel/libtool-1.5.22
skipped

What should I do in this case? How exactly should I update my 'gd' 
package? Sorry, I am still new to the emerge system.


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



Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Jakob Buchgraber

Fei Liu wrote:
Hello, I was going to install 'webalizer' (apache monitoring software) 
by 'emerge -kv webalizer', I got the following error:


!!! ERROR: app-admin/webalizer-2.01.10-r12 failed.
Call stack:
 ebuild.sh, line 1555:   Called dyn_setup
 ebuild.sh, line 668:   Called pkg_setup
 webalizer-2.01.10-r12.ebuild, line 45:   Called die

!!! recompile gd with USE=png
!!! If you need support, post the topmost build error, and the call 
stack if relevant.


I tried to do 'USE=png emerge -update gd', and I got a scary list of 
package ebuilds:

[ebuild  N] media-libs/gd-2.0.33  USE=png*
[ebuild  N]  media-libs/freetype-2.1.10-r2
[ebuild  N]  media-libs/libpng-1.2.12
[ebuild  N]  sys-devel/libtool-1.5.22
skipped

What should I do in this case? How exactly should I update my 'gd' 
package? Sorry, I am still new to the emerge system.


Thanks,
Fei
You should add png to /etc/make.conf or /etc/portage/package.use and 
then reemerge gd lib (emerge --newuse gd).


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



Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Fei Liu

Fei Liu wrote:
Hello, I was going to install 'webalizer' (apache monitoring software) 
by 'emerge -kv webalizer', I got the following error:


!!! ERROR: app-admin/webalizer-2.01.10-r12 failed.
Call stack:
 ebuild.sh, line 1555:   Called dyn_setup
 ebuild.sh, line 668:   Called pkg_setup
 webalizer-2.01.10-r12.ebuild, line 45:   Called die

!!! recompile gd with USE=png
!!! If you need support, post the topmost build error, and the call 
stack if relevant.


I tried to do 'USE=png emerge -update gd', and I got a scary list of 
package ebuilds:

[ebuild  N] media-libs/gd-2.0.33  USE=png*
[ebuild  N]  media-libs/freetype-2.1.10-r2
[ebuild  N]  media-libs/libpng-1.2.12
[ebuild  N]  sys-devel/libtool-1.5.22
skipped

What should I do in this case? How exactly should I update my 'gd' 
package? Sorry, I am still new to the emerge system.


Thanks,
Fei

Hello, I am just reporting back, I have this fixed (by trying with -p flag):

USE=png jpeg emerge -vkp gd

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

Calculating dependencies... done!
[ebuild   R   ] media-libs/gd-2.0.33  USE=jpeg* png* truetype 
-fontconfig -xpm 0 kB



One thing I am curious is, it seems a lot of source code packages are 
cached on my local machine, what should I do to remove them from my hard 
drive?


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



Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Fei Liu

Jakob Buchgraber wrote:

Fei Liu wrote:
Hello, I was going to install 'webalizer' (apache monitoring 
software) by 'emerge -kv webalizer', I got the following error:


!!! ERROR: app-admin/webalizer-2.01.10-r12 failed.
Call stack:
 ebuild.sh, line 1555:   Called dyn_setup
 ebuild.sh, line 668:   Called pkg_setup
 webalizer-2.01.10-r12.ebuild, line 45:   Called die

!!! recompile gd with USE=png
!!! If you need support, post the topmost build error, and the call 
stack if relevant.


I tried to do 'USE=png emerge -update gd', and I got a scary list 
of package ebuilds:

[ebuild  N] media-libs/gd-2.0.33  USE=png*
[ebuild  N]  media-libs/freetype-2.1.10-r2
[ebuild  N]  media-libs/libpng-1.2.12
[ebuild  N]  sys-devel/libtool-1.5.22
skipped

What should I do in this case? How exactly should I update my 'gd' 
package? Sorry, I am still new to the emerge system.


Thanks,
Fei
You should add png to /etc/make.conf or /etc/portage/package.use and 
then reemerge gd lib (emerge --newuse gd).


Cheers,
Jay
Hi Jay, thank you, please see my other thread, I used 'USE=png emerge 
-kv gd' to fix this problem. But it's good to learn the --newuse flag. 
Do you know what I should do to remove all the cached source code packages?


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



Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Jakob Buchgraber

Fei Liu wrote:

Fei Liu wrote:
Hello, I was going to install 'webalizer' (apache monitoring 
software) by 'emerge -kv webalizer', I got the following error:


!!! ERROR: app-admin/webalizer-2.01.10-r12 failed.
Call stack:
 ebuild.sh, line 1555:   Called dyn_setup
 ebuild.sh, line 668:   Called pkg_setup
 webalizer-2.01.10-r12.ebuild, line 45:   Called die

!!! recompile gd with USE=png
!!! If you need support, post the topmost build error, and the call 
stack if relevant.


I tried to do 'USE=png emerge -update gd', and I got a scary list 
of package ebuilds:

[ebuild  N] media-libs/gd-2.0.33  USE=png*
[ebuild  N]  media-libs/freetype-2.1.10-r2
[ebuild  N]  media-libs/libpng-1.2.12
[ebuild  N]  sys-devel/libtool-1.5.22
skipped

What should I do in this case? How exactly should I update my 'gd' 
package? Sorry, I am still new to the emerge system.


Thanks,
Fei
Hello, I am just reporting back, I have this fixed (by trying with -p 
flag):


USE=png jpeg emerge -vkp gd

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

Calculating dependencies... done!
[ebuild   R   ] media-libs/gd-2.0.33  USE=jpeg* png* truetype 
-fontconfig -xpm 0 kB



One thing I am curious is, it seems a lot of source code packages are 
cached on my local machine, what should I do to remove them from my 
hard drive?


Fei
This cached packages as you call them are termed distfiles 
(distfiles.gentoo.org) and located in /usr/portage/distfiles because if 
you want to re-emerge a package you won't need to download it again. If 
you run out of diskspace, just mount /usr/portage/distfiles on another 
partition or harddisk.


Best Regards Jay
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Jakob Buchgraber

Fei Liu wrote:

Jakob Buchgraber wrote:

Fei Liu wrote:
Hello, I was going to install 'webalizer' (apache monitoring 
software) by 'emerge -kv webalizer', I got the following error:


!!! ERROR: app-admin/webalizer-2.01.10-r12 failed.
Call stack:
 ebuild.sh, line 1555:   Called dyn_setup
 ebuild.sh, line 668:   Called pkg_setup
 webalizer-2.01.10-r12.ebuild, line 45:   Called die

!!! recompile gd with USE=png
!!! If you need support, post the topmost build error, and the call 
stack if relevant.


I tried to do 'USE=png emerge -update gd', and I got a scary list 
of package ebuilds:

[ebuild  N] media-libs/gd-2.0.33  USE=png*
[ebuild  N]  media-libs/freetype-2.1.10-r2
[ebuild  N]  media-libs/libpng-1.2.12
[ebuild  N]  sys-devel/libtool-1.5.22
skipped

What should I do in this case? How exactly should I update my 'gd' 
package? Sorry, I am still new to the emerge system.


Thanks,
Fei
You should add png to /etc/make.conf or /etc/portage/package.use 
and then reemerge gd lib (emerge --newuse gd).


Cheers,
Jay
Hi Jay, thank you, please see my other thread, I used 'USE=png 
emerge -kv gd' to fix this problem. But it's good to learn the 
--newuse flag. Do you know what I should do to remove all the cached 
source code packages?


Fei

Hey!

See my e-mail or Boyed Stephen Smith Jr.'s mail. Don't use 
USE=blabla emerge package or ACCEPT_KEYWORDS=.., because these 
settings are just temporary and when will only be applied to this one 
emerge.


I haven't used -k (--usepkg) yet however the man page tells me that -k 
means, that precompiled packages should be used. So your USE flag does 
not take any effect.


Btw.: You shouldn't say that this problem is fixed as you just have used 
something precompiled and preconfigured. You should better digg deeper 
into emerge and USE flags. Otherwise you will never understand portage 
which is _essential_ for understanding and using Gentoo Linux. This is 
just and advice...


Best Regards Jay
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Dan Farrell
On Fri, 2 Feb 2007 17:28:11 +
Neil Bothwick [EMAIL PROTECTED] wrote:

 On Fri, 2 Feb 2007 10:15:25 -0600, Boyd Stephen Smith Jr. wrote:

 foo

your IT guys are idiots.  As if there was a 'MAC' mail and a 'PC'
mail.  they should be fired for their fundamental misunderstanding of a
core internet service ; )

   While we're at it, my 2007 Hyundai Getz 1400 is running rough for
   the first few minutes in the morning. Any of you gentooites know
   how to fix this?  

i live in minnesota and expect any car (especially older, but any) to
require a few minutes warmup before it runs particularly well.  Also
use thin oil.  5w-30 is better than 10w-30 in cold (all) weather. But
almost every car has 5w-30 in it anyway.  

  Cold where you are?  
it's supposed to be -30 degrees F. with wind chill here in the Twin
Cities this weekend.  And I guess the country  canada changed the way
we measure wind chill too - used to be 30 feet off the ground, but now
it's at ground level (???) and so evidently it's like, -70 below this
weekend with the old wind chill index or something.  Don't quote me on
that ; )

how is a car like a computer?  - neither work quite like they're
supposed to unless you prove your worth to them ; )
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Bo Ørsted Andresen
On Friday 02 February 2007 21:29:33 Boyd Stephen Smith Jr. wrote:
 Also, if you use the long option name you must use two dashes '--' and not
 one '-'.  You argument '-update' is equivalent to '-u -p -d -a -t -e',
 which includes (among other things) the -e (--emptytree) flag, forcing
 emerge to pretend you have no packages installed.

Haha. Nice catch!

-update == --update --pretend --debug --ask --tree --emptytree

All of those options are valid and with --debug and --emptytree that's going 
to give a scary amount of output...

-- 
Bo Andresen


pgprFcOuZvjbd.pgp
Description: PGP signature


Re: [gentoo-user] help with emerge package recompile

2007-02-02 Thread Dan Farrell
On Fri, 02 Feb 2007 15:30:29 -0500
Fei Liu [EMAIL PROTECTED] wrote:

 One thing I am curious is, it seems a lot of source code packages are 
 cached on my local machine, what should I do to remove them from my
 hard drive?
 Fei

you can delete /usr/portage/distfiles/* if you want to; i think the
worst thing to come of it would be having to redownload the sources
for each subsequent emerge of the same software.  

Alternately, you could use an NFS share to make /usr/portage/distfiles
shared with all the computers on your network.  If you have more than
one gentoo box, that is ; )
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: http://www.gentoo.org/proj/en/releng/

2007-02-02 Thread James
Boyd Stephen Smith Jr. bss03 at volumehost.net writes:


  Any insider tidbits
  on liveCD 2007.0 ???

 I've not been hearing anything about it good or bad, so I still expect it 
 sometime in February.


Hello Boyd,

No news
is good
news,

I guess

thx

James






-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: vlc win32codecs on amd64

2007-02-02 Thread James
Jakob Buchgraber jakob.buchgraber at googlemail.com writes:


 As far as I am informed the win32codecs are not related to any 
 archticture, they just provide codecs used on Windows Systems.
 Which errrors do you get?

Hello Jakob
Despite including 'win32codecs' in my USE flags and in the
/etc/portage/package.use (for vlc) it shows win32codecs
as not being a compiled in option.

I just discovered that you can emerge 'win32codes', so is that
what I have to do to use win32codecs with vlc on amd64 ?


emerge -pv vlc
[ebuild   R   ] media-video/vlc-0.8.6-r1  USE=X  
snip
(-win32codecs) 


???


James

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] vlc win32codecs on amd64

2007-02-02 Thread Dan Farrell
On Fri, 2 Feb 2007 19:33:36 + (UTC)
James [EMAIL PROTECTED] wrote:

 Hello one and all,
 
 What's the trick to getting win32codecs to install and work with
 vlc on amd64?
 
 Any wikis?
 
 I cannot seem to get VLC to compile in win32codecs on an amd64...
 Yes I realize that 'win32' and amd64 are different arches, but,
 surely there is a solution for this? Maybe not just with
 vlc but every app that can work with win32codes on amd64?
 
 
 
 James
 
 
try this on for size:

pascal dan # emerge -s amd64codecs
Searching...   
[ Results for search key : amd64codecs ]
[ Applications found : 1 ]
*  media-libs/amd64codecs
  Latest version available: 20061203
  Latest version installed: 20061203
  Size of files: 240 kB
  Homepage:  http://www.mplayerhq.hu/
  Description:   64-bit binary codecs for video and audio playback
support License:   as-is
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] vlc win32codecs on amd64

2007-02-02 Thread kashani

James wrote:

Hello one and all,

What's the trick to getting win32codecs to install and work with
vlc on amd64?

Any wikis?

I cannot seem to get VLC to compile in win32codecs on an amd64...
Yes I realize that 'win32' and amd64 are different arches, but,
surely there is a solution for this? Maybe not just with
vlc but every app that can work with win32codes on amd64?


My understanding is that win32codec is generally not 64bit safe, but 
they'd be fine on amd64 if you're running your OS as 32bit. If you're 
running in 64 bit then you'll need:


emerge -pv amd64codecs

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



Re: [gentoo-user] Re: vlc win32codecs on amd64

2007-02-02 Thread Jakob Buchgraber

James wrote:

Jakob Buchgraber jakob.buchgraber at googlemail.com writes:


  
As far as I am informed the win32codecs are not related to any 
archticture, they just provide codecs used on Windows Systems.

Which errrors do you get?



Hello Jakob
Despite including 'win32codecs' in my USE flags and in the
/etc/portage/package.use (for vlc) it shows win32codecs
as not being a compiled in option.

I just discovered that you can emerge 'win32codes', so is that
what I have to do to use win32codecs with vlc on amd64 ?


emerge -pv vlc
[ebuild   R   ] media-video/vlc-0.8.6-r1  USE=X  
snip
(-win32codecs) 



???


James

  
Yes. Try emerging the win32 codecs. They should actually be installed 
automatically as a dependency. I don't think that there is a special 
package for 64bit. Just use emerge --search or gentoo-portage.com to 
find out if there are special amd64 packages available. Maybe 
win64codecs ... :-)


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



Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Mick
On Friday 02 February 2007 17:28, Neil Bothwick wrote:
 On Fri, 2 Feb 2007 10:15:25 -0600, Boyd Stephen Smith Jr. wrote:
   While we're at it, my 2007 Hyundai Getz 1400 is running rough for the
   first few minutes in the morning. Any of you gentooites know how to
   fix this?
 
  Cold where you are?  Double check your fluid levels.  If they are all
  fine, what weight oil are you using?

 Surely the correct advice for this list is to strip the engine down to its
 smallest component parts and rebuild it

 emerge -e engine :)

Nope, you forget he comes from another distro.  First he needs to set up the 
CHOST and USE flags; ergo the engine clearly needs blueprinting before it's 
converted from a hair-drier to a supercharged NO2-injected V8.  ;-)
-- 
Regards,
Mick


pgpc1fdDuz8jY.pgp
Description: PGP signature


Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Adrian
On Fri, 2 Feb 2007 14:48:32 -0600
Dan Farrell [EMAIL PROTECTED] wrote the words:

 On Fri, 2 Feb 2007 17:28:11 +
 Neil Bothwick [EMAIL PROTECTED] wrote:
 
  On Fri, 2 Feb 2007 10:15:25 -0600, Boyd Stephen Smith Jr. wrote:
 
  foo
 
 your IT guys are idiots.  As if there was a 'MAC' mail and a 'PC'
 mail.  they should be fired for their fundamental misunderstanding of
 a core internet service ; )


This was my opinion as well.  I explained it this way:

Email protocols (maybe the wrong word, but I know what I mean and no
one else around there knows anything other than the send button) are
standard around the world, on all computers, otherwise you couldn't
sent an email from America to China.

Yes, they are idiots.  And they are paid well for it.

Adrian



-- 
On The Fly Photography -:- Creation From Chaos

On The Fly Photography:  http://204EastSouth.com
Purchase from On The Fly:  http://204EastSouth.com/OTFStore.htm
The Cynical Libertarian Society:  http://www.204EastSouth.com/cls
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Question about /etc/conf.d/net entry

2007-02-02 Thread Shawn Singh

Dan,

Thanks for the reply. The client is a laptop running Windows XP Home
EditionI'. Server is a tower running Gentoo 2006.1, shorewall 3.0.8.

The client is setup as follows:
IP address: 192.168.1.2
Netmask:255.255.255.0
Gateway:192.168.1.1
DNS:  192.168.1.1

I've changed my /etc/conf.d/net to:

# Interface Handler
modules=( ifconfig )

# eth0 (WAN) config
config_eth0=( dhcp )

# eth1 (LAN) config
config_eth1=( 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255 )

Amongst many other things, shorewall dump shows:

Shorewall has detected the following iptables/netfilter capabilities:
  NAT: Available
  Packet Mangling: Available
  Multi-port Match: Available
  Extended Multi-port Match: Available
  Connection Tracking Match: Available
  Packet Type Match: Available
  Policy Match: Available
  Physdev Match: Not available
  IP range Match: Available
  Recent Match: Available
  Owner Match: Available
  Ipset Match: Not available
  CONNMARK Target: Not available
  Connmark Match: Available
  Raw Table: Available
  CLASSIFY Target: Available
  FORWARD Mangle Chain: Available

So, I think I have all that I need compiled into my kernel (2.6.19-r1). I'll
be home in a bit, and I'll get on the Windows computer and run ipconfig and
route to find out what the IP info and routing table looks like on the
client and post that.

Thanks again for your help.

Shawn

On 2/2/07, Dan Farrell [EMAIL PROTECTED] wrote:


On Fri, 2 Feb 2007 12:07:59 -0500
Shawn Singh [EMAIL PROTECTED] wrote:

 Hello list,

 I've got my /etc/conf.d/net setup as follows:

 # Interface Handler
 modules=( ifconfig )

 # eth0 (WAN) config
 config_eth0=( dhcp )

 # eth1 (LAN) config
 config_eth1=( 192.168.1.1 netmask 255.255.255.0 broadcast
 192.168.1.255 ) routes_eth1=( 192.168.1.0 via 192.168.1.1 ) # the
 idea here is that I wish to have all traffic intended for hosts on
 192.168.1.0 pass through 192.168.1.1.

all on the 'server' right?  The 'server' doesn't need a route to
192.168.1.0 through 192.168.1.1.  That's going to be automatic on the
server's end because of the line
 192.168.1.0 *255.255.255.0   U 00  0 eth1
in route.  A route through eth1 to the subnet eth1 is on will
automatically be added.  But does the 'client' computer have such a
default route through 192.168.1.1?  The command to set up such a route
(again, on the client) would be

  route add default gw 192.168.1.1;

 Here's the output from ifconfig eth1:
looks fine.

 This is my routing table:
looks fine, as long as it's from the server and not the client.

 One odd thing is, if I run mii-tool eth1, I get:
 eth1: no link
 eth1 is connected to my client machine via crossover cable (the wire
 scheme A end is plugged into eth1, and the wire scheme b end is
 plugged into the client machine)
You clearly know the difference between a patch and a crossover, but i
don't see why the interfaces arent' registering a conection.
 I'm experiencing difficulty where my client can't get to the Internet
 (the pages just time out)
you need ip forwarding enabled to pull that off.
 I can't ping the gateway (192.168.1.1)
 from the client. Also, from the firewall, I can't ping the client
 machine ( 192.168.1.2).
This should be working right now, though.  Can you post the ipconfig
and route output from the 'client' ?

 Pings from the firewall to the client result in Destination
 Unreachable, and if I remember correctly, pings from the client to
 the firewall just time out.
sounds like the client is not actually 'connected'.  Although, clearly
the physical connection is there.

 I'm running shorewall (v 3.0.8), so I've tried shutting it down
 (shorewall clear) to eliminate that as an option, but still not
 getting anywhere.
oh oh.  shorewall can really confuse things.  Stop shorewall and have
it save your iptables output, then I would suggest flushing
 .config has the following entries in it, please let me know if there
 are others that you need to see.

 CONFIG_IP_ADVANCED_ROUTER=y
you don't need this.
 CONFIG_NETFILTER=y
 CONFIG_IP_NF_NAT=y
you will need this.  But only oce you get connected to 192.168.1.1 !
remember, the client needs a default route set.  The server _isn't_
going to need a route to 192.168.1/24 explicitly set in conf.d/net

 Thanks,

 Shawn
I'm on comcast too:

20:  c-71-xxx-144-1.hsd1.fl.comcast.net
(71.203.144.1)asymm 21 167.516ms reached Resume: pmtu 1500 hops 20
back 21

only 1 country's width and 20/21 hops away from you!  I mangled your ip
address even though you provide it yourself, to allow you to be the one
invading your privacy and not me .

ps, if you have a switch around, i bet it would work if you plugged in
both to switch (/ hub) via patch cable.  I bet your crossover is bad.
--
gentoo-user@gentoo.org mailing list





--
Doing linear scans over an associative array is like trying to club someone
to death with a loaded Uzi.
Larry Wall


[gentoo-user] audio: can hear sound from line/mic but cannot record it

2007-02-02 Thread b.n.
Hi,
I have an odd problem with audio recording.

When I plug my guitar to the line in/mic in, it plays. I can hear the
sound fine. So the input device seems to work correctly.

But when I try to *record*, no matter the application (audacity, rezound,
arecord) the application freezes and no output file is made. arecord
actually spits out a 44-byte header, and nothing else.

strace-ing the application clearly shows that the app just freezes.

Relevant things I changed after last time it worked correctly may be:
- the kernel (from 2.6.16 to 2.6.18-r6)
- alsa-lib (from 1.0.11 to 1.0.14)

alsa drivers are compiled in the kernel. I run x86, stable, gcc 4.1.1.

The audio card is: (lspci output): Multimedia audio controller: Silicon
Integrated Systems [SiS] AC'97 Sound Controller (rev a0)

I tried messing with alsamixer settings but with no avail. Relevant
kernel settings seem OK...:

CONFIG_SOUND=y
# CONFIG_SOUND_PRIME is not set
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_SEQ_DUMMY=y
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
# CONFIG_SND_DYNAMIC_MINORS is not set
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_AC97_CODEC=y
CONFIG_SND_AC97_BUS=y
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
# CONFIG_SND_ADLIB is not set
# CONFIG_SND_AD1816A is not set
# CONFIG_SND_AD1848 is not set
# CONFIG_SND_ALS100 is not set
# CONFIG_SND_AZT2320 is not set
# CONFIG_SND_CMI8330 is not set
# CONFIG_SND_CS4231 is not set
# CONFIG_SND_CS4232 is not set
# CONFIG_SND_CS4236 is not set
# CONFIG_SND_DT019X is not set
# CONFIG_SND_ES968 is not set
# CONFIG_SND_ES1688 is not set
# CONFIG_SND_ES18XX is not set
# CONFIG_SND_GUSCLASSIC is not set
# CONFIG_SND_GUSEXTREME is not set
# CONFIG_SND_GUSMAX is not set
# CONFIG_SND_INTERWAVE is not set
# CONFIG_SND_INTERWAVE_STB is not set
# CONFIG_SND_OPL3SA2 is not set
# CONFIG_SND_OPTI92X_AD1848 is not set
# CONFIG_SND_OPTI92X_CS4231 is not set
# CONFIG_SND_OPTI93X is not set
# CONFIG_SND_MIRO is not set
# CONFIG_SND_SB8 is not set
# CONFIG_SND_SB16 is not set
# CONFIG_SND_SBAWE is not set
# CONFIG_SND_SGALAXY is not set
# CONFIG_SND_SSCAPE is not set
# CONFIG_SND_WAVEFRONT is not set
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5535AUDIO is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDA_INTEL is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=y
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set


Where can I start looking for a solution?

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



Re: [gentoo-user] Question about /etc/conf.d/net entry

2007-02-02 Thread Dan Farrell
On Fri, 2 Feb 2007 16:51:37 -0500
Shawn Singh [EMAIL PROTECTED] wrote:

 Dan,
 
 Thanks for the reply. The client is a laptop running Windows XP Home
 EditionI'. Server is a tower running Gentoo 2006.1, shorewall 3.0.8.
 
 The client is setup as follows:
 IP address: 192.168.1.2
 Netmask:255.255.255.0
 Gateway:192.168.1.1
 DNS:  192.168.1.1
 
 I've changed my /etc/conf.d/net to:
 
 # Interface Handler
 modules=( ifconfig )
 
 # eth0 (WAN) config
 config_eth0=( dhcp )
 
 # eth1 (LAN) config
 config_eth1=( 192.168.1.1 netmask 255.255.255.0 broadcast
 192.168.1.255 )
for what it's worth, netmask and broadcast will also default to those
settings in ifconfig if you set the ip to 192.168.1.x 

  I have all that I need compiled into my kernel
 (2.6.19-r1). 

I agree.  let's see what happens
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT: Email from Mac to PC/Win

2007-02-02 Thread Michael Schreckenbauer
Hi,

Am Freitag, 2. Februar 2007 schrieb Adrian:
 Greetings all --
 When she sends emails from her Mac:
 Sometimes attachments don't arrive.

is this the case? Or are the attachments not visible in the client? I'm quite 
shure there's a button to look at the mail source even in a client like 
outlook. This way you can see, if the attachment is there, but not shown.
Another possibility is, that the mailserver disallows some types of attachment 
and removes them if considered bad. Maybe your experts configured it this 
way :)

 Sometimes the emails never arrive (or so people claim, never happens to
 me)

If so, it's not because she is using a mac.

 Sometimes her emails end up in the junk mail folder (again, never
 happens to me)

That's a question of how the filter is configured. Maybe somebody has her in 
his blacklist :)

 Our IT people are telling here this is because Mac email is not
 compatible with PCs.  My intuition  years of computer use is
 telling me this is bullshit.

Regarding MIME, some clients are somewhat special. So it is not necessarily 
bullshit when attachments are not shown. It certainly is bullshit regarding 
lost email or junkmail filtering.

 Thank you -- Adrian

Hth,
Michael

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] vlc win32codecs on amd64

2007-02-02 Thread Steve Dibb

kashani wrote:

James wrote:

Hello one and all,

What's the trick to getting win32codecs to install and work with
vlc on amd64?

Any wikis?

I cannot seem to get VLC to compile in win32codecs on an amd64...
Yes I realize that 'win32' and amd64 are different arches, but,
surely there is a solution for this? Maybe not just with
vlc but every app that can work with win32codes on amd64?


My understanding is that win32codec is generally not 64bit safe, but 
they'd be fine on amd64 if you're running your OS as 32bit.


Close.  You can't use win32codecs on amd64 at all, unless you are using a 32 bit 
binary program with them.  Simple as that.  So VLC cannot use 32 bit binary 
codecs, unless someone made a vlc 32-bit binary and put it in the tree.


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



Re: [gentoo-user] vlc win32codecs on amd64

2007-02-02 Thread Daniel Iliev
Steve Dibb wrote:
 kashani wrote:
 James wrote:
 Hello one and all,

 What's the trick to getting win32codecs to install and work with
 vlc on amd64?

 Any wikis?

 I cannot seem to get VLC to compile in win32codecs on an amd64...
 Yes I realize that 'win32' and amd64 are different arches, but,
 surely there is a solution for this? Maybe not just with
 vlc but every app that can work with win32codes on amd64?

 My understanding is that win32codec is generally not 64bit safe, but
 they'd be fine on amd64 if you're running your OS as 32bit.

 Close.  You can't use win32codecs on amd64 at all, unless you are
 using a 32 bit binary program with them.  Simple as that.  So VLC
 cannot use 32 bit binary codecs, unless someone made a vlc 32-bit
 binary and put it in the tree.

 Steve


Additionally: mplayer-bin is in amd64's portage and mplayer-bin can use
win32codecs

-- 
Best regards,
Daniel


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] vlc win32codecs on amd64

2007-02-02 Thread Steve Dibb

Daniel Iliev wrote:

Additionally: mplayer-bin is in amd64's portage and mplayer-bin can use
win32codecs


And if anyone wants to help me version bump the thing, e-mail me *off* list, plz

Thanks

Steve


--
gentoo-user@gentoo.org mailing list




[gentoo-user] scp login but confine the user to his home directory?

2007-02-02 Thread Mark Knecht

Hi,
  I'm wondering if it is possible and/or advisable to set up an
account where a user can scp files in and out of his home directory
using scp but if he logs into the machine using ssh he cannot go
anywhere outside of his home directory?

  Mainly the intended application is a group file server but it is
possible that we may want to run some scripts in the account so being
able to ssh in has an advantage over ftp. That said I don't want the
users cd-ing around the machine, etc.

  How would I set something like this up?

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



Re: [gentoo-user] scp login but confine the user to his home directory?

2007-02-02 Thread Greg Bur

On 2/2/07, Mark Knecht [EMAIL PROTECTED] wrote:

Hi,
   I'm wondering if it is possible and/or advisable to set up an
account where a user can scp files in and out of his home directory
using scp but if he logs into the machine using ssh he cannot go
anywhere outside of his home directory?

   How would I set something like this up?


Mark,

Rebuild openssh with the chroot USE flag enabled and then have a look
at the following HOWTO:

http://www.howtoforge.com/chrooted_ssh_howto_debian

It's a bit of work to set up but it works well.  We have a similar
setup at work for our shared hosting customers.

Regards,

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



[gentoo-user] 'du' problem after emerge of coreutils

2007-02-02 Thread Rod May

Hi

emerged coreutils up to 6.4 and the '-x' option on du seems broken, 
e.g.:

root  du --version
du (GNU coreutils) 5.94

root  du -s -x DVBig Docs.bak Gimp.bak
16730112  DVBig
1935776   Docs.bak
1227584   Gimp.bak

so all correct with the old version, these are three simple directories 
on the one file system. Now emerge to coreutils 6.4...

root   du --version
du (GNU coreutils) 6.4
   
root   du -s -x DVBig Docs.bak Gimp.bak
16730112   DVBig
32 Docs.bak
32 Gimp.bak

so it seems that for the second and any subsequent arguments treated as 
on a different file system... eg if I swap the arguments order:

root   du -s -x Docs.bak DVBig Gimp.bak
1935776 Docs.bak
32  DVBig
32  Gimp.bak
   
if the -x is not used then the output is correct, (same as 5.94)...

thought I would ask here first as I also upgraded most sys related 
packages just before coreutils..

anyone else get this?
 
  Cheers :)
  Rod May [EMAIL PROTECTED]

--==*
  Random Fortune:
  All Finagle Laws may be bypassed by learning the simple art of doing
  without thinking.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Network works OK internally but can't access Internet - very frustrated

2007-02-02 Thread Richard Watson
Hi - After a last emerge --sync I've been having trouble accessing the 
internet. My network interface comes up OK. I receive an address for the DHCP 
server (i.e. eth1 received address 192.168.0.7/24) and I can see and access 
my Intranet webpage on 192.168.0.xx and copy files to and from various 
machines. 

However if trying to access the Internet I keep getting unknown host when 
pinging sites I know will respond. My machine dual boots into XP and runs fine. 

I've checked the Gentoo handbook and config files and confirmed my network 
config files look OK (they seem to). Can anyone offer any suggestions? 

Thanks, Richard


Re: [gentoo-user] Network works OK internally but can't access Internet - very frustrated

2007-02-02 Thread Leandro Melo de Sales

If you just did emerge --sync, the problem that you have was not
caused by this command. Do you have your dns configuration correct?
please check you /etc/resolv.conf file. Does your DHCP server send
nameserver to the client?

2007/2/3, Richard Watson [EMAIL PROTECTED]:



Hi - After a last emerge --sync I've been having trouble accessing the
internet. My network interface comes up OK. I receive an address for the
DHCP server (i.e. eth1 received address 192.168.0.7/24) and I can see and
access my Intranet webpage on 192.168.0.xx and copy files to and from
various machines.

However if trying to access the Internet I keep getting unknown host when
pinging sites I know will respond. My machine dual boots into XP and runs
fine.

I've checked the Gentoo handbook and config files and confirmed my network
config files look OK (they seem to). Can anyone offer any suggestions?

Thanks, Richard




--
Leandro Melo de Sales.
Computer Science MSc Candidate
Pervasive Computing Lab - embedded.ufcg.edu.br
Center of Electrical Engineering and Informatics at Federal University
of Campina Grande - UFCG / Brazil
083 33101404 (extension 208)

O guerreiro é forte em lealdade, intensidade, determinação,
iniciativa, persistência, coragem e força de vontade. O guerreiro é
leve em sua calma, autoconfiança e compaixão. O guerreiro é
freqüentemente chamado para tomar a frente quando outros covardemente
dão um passo atrás. Guerreiros existem nos campos de batalha e na vida
cotidiana.

--
gentoo-user@gentoo.org mailing list