Re: [gentoo-user] Netboot questions

2007-05-02 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Concerning Number 2:
You need to have gensplash enabled in the Kernel (which it is), and have
emerged the splashutils packages. Also, you need to modify your grub.conf
to use a framebuffer. Furthermore, you need to create an initial ramdisk
to load the images early in the booting process. May I point you to the
wiki article on the gentoo wiki Howto Bootsplash?
Greetings
jeeger
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGOEWVMmLQdC6jvocRAkJPAJ4336HGI8tv+HksoUydpL3dcNMqrQCfYqvQ
lKi47lriAaa5dF/mF48eihY=
=K8EU
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Useless error messages from iptables-restore

2007-05-02 Thread Benno Schulenberg
[EMAIL PROTECTED] wrote:
The final remaining problem is with the 3 statements scattered
 through the rules...

 -A ICMP_IN -p icmp -m state --state NEW -j UNSOLICITED
 -A TCP_IN -p tcp -m state --state NEW -m tcp -j UNSOLICITED
 -A UDP_IN -p udp -m state --state NEW -j UNSOLICITED

The -m tcp is a typo, yes?

The setting you might me missing is CONFIG_NF_CONNTRACK_IPV4=y.
Grep through your .config and compare:

# grep ^CONF /usr/src/linux/.config | grep -e _NF -e NETFILTER
CONFIG_NETFILTER=y
CONFIG_NETFILTER_DEBUG=y
CONFIG_NF_CONNTRACK_ENABLED=y
CONFIG_NF_CONNTRACK_SUPPORT=y
CONFIG_NF_CONNTRACK=y
CONFIG_NETFILTER_XTABLES=y
CONFIG_NETFILTER_XT_TARGET_NFLOG=y
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=y
CONFIG_NETFILTER_XT_MATCH_STATE=y
CONFIG_NF_CONNTRACK_IPV4=y
CONFIG_NF_CONNTRACK_PROC_COMPAT=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_NF_NAT=y
CONFIG_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y

Benno
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Useless error messages from iptables-restore

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

On Tue, 1 May 2007 22:38:27 -0400 [EMAIL PROTECTED] wrote:

The final remaining problem is with the 3 statements scattered
 through the rules...
 
 -A ICMP_IN -p icmp -m state --state NEW -j UNSOLICITED
 -A TCP_IN -p tcp -m state --state NEW -m tcp -j UNSOLICITED
 -A UDP_IN -p udp -m state --state NEW -j UNSOLICITED

Hm, do your other rules use connection state matching?

This works on the main system, with a slightly older kernel.  On
 the Dell, running 2.6.20-r7, I have a whole bunch of stuff enabled in
 the kernel, including...
 [...]

I'd suggest to enable all netfilter options -- as modules. Then see
which of them are being loaded when you restore your rules and then
according to that trim down your kernel configuration again.

My suspicion would be you're missing connectioin state matching support.

-hwh
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo on Dell Inspiron M1710

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

On Wed, 02 May 2007 00:47:21 -0400 Colleen Beamer
[EMAIL PROTECTED] wrote:

 I'm having a heck of a time with the nvidia-drivers on my new Dell
 Inspiron M1710.  I can install the driver, but when the laptop is
 booting, the font doesn't resize - something do do with the
 framebuffer, but I don't know how to correct it - I've followed the
 nvidia Guide from the documentation.

What does the font doesn't resize mean exactly and how's that looking
errorneous to you? What font are you even talking about? Since you're
talking about the framebuffer, you're probably talking about the text
console font? Does that even matter (i.e. are you using the text
console)?

AFAIK, nvidia-drivers don't have framebuffer support at all. In order
to have a graphical console on bootup, you need to configure other
framebuffer drivers in your kernel. I think the suggested one to use in
combination w/ nvidia-drivers (the combination matters for switching
between X and console) is vesa or vesa-tng.

-hwh
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Setting installation directories globally

2007-05-02 Thread Bo Ørsted Andresen
On Wednesday 02 May 2007 04:03:23 Paul Sebastian Ziegler wrote:
  Whats the purpose of this?

 To create a very clear directory structure for a small binary Linux
 distribution I am planning to build using Gentoo and Portage.

This reminds me very much of [1]. Basically it's a lot harder to support than 
you think it is and any voodoo patch you might come up with to support it in 
portage is very unlikely to be accepted.

ROOT is the closest thing that is supported and unlike altering prefix in the 
ebuilds or setting EXTRA_ECONF=--prefix=/blah it actually works for 
packages that don't use autotools properly. As detailed in `man make.conf` 
all build time dependencies of packages that are installed in a ROOT 
different from / will need to be installed in / (automatically by portage) so 
it's far from ideal for this purpose.

Changing --prefix is much more ideal either as it won't magically make things 
work in different locations anymore than ROOT will. Adding paths to *PATH 
environment variables will be required and that's a manual task that you'll 
need to do.

In short - this seems like an awful lot of hassle for absolutely no gain. Most 
of us consider the current directory structure to be quite clear.

[1] http://thread.gmane.org/gmane.linux.gentoo.devel/44673

-- 
Bo Andresen


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


[gentoo-user] udev net persistent rules

2007-05-02 Thread Graham Murray
When updating udev from a version without persistent rules to one which
has them, how do I force the system to create 60-persistent-net.rules
with the current ethn assignments *before* rebooting the system? I am
updating remote systems using ssh, and had a problem whereby one system
had reversed eth0 and eth1 after the upgrade. I want to make sure that
upgrades to other systems do not have this problem by ensuring that the
persistent net rules are created before rebooting after the upgrade
(which also upgrades the kernel, hence the need for the reboot)
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] udev net persistent rules

2007-05-02 Thread John covici
on Wednesday 05/02/2007 Graham Murray([EMAIL PROTECTED]) wrote
  When updating udev from a version without persistent rules to one which
  has them, how do I force the system to create 60-persistent-net.rules
  with the current ethn assignments *before* rebooting the system? I am
  updating remote systems using ssh, and had a problem whereby one system
  had reversed eth0 and eth1 after the upgrade. I want to make sure that
  upgrades to other systems do not have this problem by ensuring that the
  persistent net rules are created before rebooting after the upgrade
  (which also upgrades the kernel, hence the need for the reboot)

I am pretty sure you can do /lib/udev/write_net_rules and that will
create the file which you then can fix the mac addresses in the file.

-- 
Your life is like a penny.  You're going to lose it.  The question is:
How do
you spend it?

 John Covici
 [EMAIL PROTECTED]
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Netboot questions

2007-05-02 Thread Dave Oxley
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jan Seeger wrote:
 Concerning Number 2:
 You need to have gensplash enabled in the Kernel (which it is), and have
 emerged the splashutils packages. Also, you need to modify your grub.conf
 to use a framebuffer. Furthermore, you need to create an initial ramdisk
 to load the images early in the booting process. May I point you to the
 wiki article on the gentoo wiki Howto Bootsplash?
 Greetings
 jeeger

I think you may have misunderstood me. I followed the howto initially
and gensplah was working as expected until I changed it to netboot. I
have modified the grub.conf for my new netboot config and as I said the
initial screen shows up but the progress bar never progresses and the
text remains as 'Initialising kernel' until X starts!

Cheers,
Dave.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.3 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGOG24x43ifHzpDVURArR2AJsErpbj0zGT8oqM2CtyySd4txv9NwCfR6y1
IZEbRUZ83qJbwob3r04hdMU=
=2Iem
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Unable to compile postgresql-8.2.4

2007-05-02 Thread Marko Kocić

After today's sync I tried to upgrade postgresql to 8.2.4
I'm getting the following error:

snip
checking thread safety of required library functions... no
configure: error: thread test program failed
This platform is not thread-safe.  Check the file 'config.log'for the
exact reason.

You can use the configure option --enable-thread-safety-force to force
threads to be enabled.  But you must then run the program in
src/test/thread and add locking function calls to your applications to
guarantee thread safety.

!!! ERROR: dev-db/libpq-8.2.4 failed.
Call stack:
 ebuild.sh, line 1614:   Called dyn_compile
 ebuild.sh, line 971:   Called qa_call 'src_compile'
 ebuild.sh, line 44:   Called src_compile
 libpq-8.2.4.ebuild, line 71:   Called die

/snip

does anyone have any idea how to solve this?

Thanks,
Marko
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Unable to compile postgresql-8.2.4

2007-05-02 Thread Bo Ørsted Andresen
On Wednesday 02 May 2007 12:58:01 Marko Kocić wrote:
 After today's sync I tried to upgrade postgresql to 8.2.4
 I'm getting the following error:

 snip
 checking thread safety of required library functions... no
 configure: error: thread test program failed
 This platform is not thread-safe.  Check the file 'config.log'for the
 exact reason.

 You can use the configure option --enable-thread-safety-force to force
 threads to be enabled.  But you must then run the program in
 src/test/thread and add locking function calls to your applications to
 guarantee thread safety.

 !!! ERROR: dev-db/libpq-8.2.4 failed.
 Call stack:
   ebuild.sh, line 1614:   Called dyn_compile
   ebuild.sh, line 971:   Called qa_call 'src_compile'
   ebuild.sh, line 44:   Called src_compile
   libpq-8.2.4.ebuild, line 71:   Called die

 /snip

 does anyone have any idea how to solve this?

You could start by searching bugs.gentoo.org ...

https://bugs.gentoo.org/show_bug.cgi?id=176742

-- 
Bo Andresen


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


Re: [gentoo-user] AMD64 minimal CD boot problem

2007-05-02 Thread Thomas Kear
On Wed, 02 May 2007, Roger Mason wrote:
 David Snider [EMAIL PROTECTED] writes:
  Roger Mason wrote:
  I'm trying to install gentoo on a Dell Dimension C521, which has an
  AMD Sempron 3400+ CPU.
 
  I downloaded and buned the AMD64 2006.1 minimal install disk, but when
  I try to boot from the CD it hangs, the last message being:
 
  io scheduler deadline registered (default)
 
  I had the exact same issue last month with some new hardware, booting
  with noacpi or noapci (can't really remember) did the trick... Once I
  was installed and had a 2.6.20 kernel, I had no other issues.

 Thanks David, I'll try it tomorrow when I have access to that machine
 again.

 Roger


For what it's worth, in 99.9% of cases, the option you want is 'noapic'.  It 
is by far the largest complaint relating to non-booting livecds on the amd64 
architecture.

--Thomas


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


Re: [gentoo-user] Gentoo on Dell Inspiron M1710

2007-05-02 Thread Colleen Beamer
Hans-Werner Hilse wrote:
 Hi,
 
 On Wed, 02 May 2007 00:47:21 -0400 Colleen Beamer
 [EMAIL PROTECTED] wrote:
 
 I'm having a heck of a time with the nvidia-drivers on my new Dell
 Inspiron M1710.  I can install the driver, but when the laptop is
 booting, the font doesn't resize - something do do with the
 framebuffer, but I don't know how to correct it - I've followed the
 nvidia Guide from the documentation.
 
 What does the font doesn't resize mean exactly and how's that looking
 errorneous to you? 

It's not that it's erroneous. I'm just being a bit anal.  In all my
other Gentoo installations, when the computer boots up, the font starts
out large, then there is a sort of blip and the penguin graphic appears
and the font becomes smaller.  I'm not a programmer, but was told this
had something to do with the framebuffer.  This large font is driving me
nuts because any command issued at the command line, for instance lspci
results in half the information scrolling off screen unless you use a
pipe.  I know that isn't all that big a deal, but it's not what I'm used
to.  I've always dealt with ATI cards and had I had a choice, I wouldn't
have gotten an nvidia card in this laptop, but I didn't.


  AFAIK, nvidia-drivers don't have framebuffer support at all. In order
 to have a graphical console on bootup, you need to configure other
 framebuffer drivers in your kernel. I think the suggested one to use in
 combination w/ nvidia-drivers (the combination matters for switching
 between X and console) is vesa or vesa-tng.

This is correct, And I'm using vesa-tng.

Thanks anyway,

Colleen

-- 

Registered Linux User #411143 with the Linux Counter, http://counter.li.org
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] AMD64 minimal CD boot problem

2007-05-02 Thread Roger Mason
Thomas Kear [EMAIL PROTECTED] writes:

  I had the exact same issue last month with some new hardware, booting
  with noacpi or noapci (can't really remember) did the trick... Once I
  was installed and had a 2.6.20 kernel, I had no other issues.


 For what it's worth, in 99.9% of cases, the option you want is 'noapic'.  It 
 is by far the largest complaint relating to non-booting livecds on the amd64 
 architecture.

Thank you to all who replied: the 'noapic' option was the required
fix.

Roger

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Netboot questions

2007-05-02 Thread Jan Seeger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ah yes sorry there. Then I cannot help you, since I have no experience
using netboot/pxe. Sorry
Greetings Jan Seeger
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGOIatMmLQdC6jvocRArVUAKCi7A3I7FZo4X3BHLV+eJ6dgS0XegCZAVVG
ZI3BRfQ4/DxhuE4wc3uHXBA=
=v7k+
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Setting installation directories globally

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

On Wed, 02 May 2007 04:03:23 +0200 Paul Sebastian Ziegler
[EMAIL PROTECTED] wrote:

  Whats the purpose of this?
 
 To create a very clear directory structure for a small binary Linux
 distribution I am planning to build using Gentoo and Portage.

This doesn't make sense to me. ROOT is the option to specify another
ROOT directory. The layout below that ROOT might be configurable for
some applications, some other are expecting their files in certain
paths. You can override the configure settings, but this won't win
you much since some programs don't use autoconf (and there's good
reason not to use this can of worms!). Also, the applications'
behaviour is absolutely untested (e.g. some apps simply rely on finding
their initial data below /usr/share, being able to write to /var/run
and so on).

This is why we have good package managers on Linux. They deal with the
logical structure (i.e. packaging) of the files.

BTW, ROOT will win you nothing here since you want to create
binary-packages, not install them. Maybe you can try and mangle the
archives, so that they resemble the directory structure you want. But I
still can't see how that could overcome applications' built-in
assumptions, except you are thinking of tricks like unionfs or
(hard/soft-)linking into a LFS-oriented structure after installing the
packages.

-hwh
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo on Dell Inspiron M1710

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

On Wed, 02 May 2007 08:14:03 -0400 Colleen Beamer
[EMAIL PROTECTED] wrote:

  What does the font doesn't resize mean exactly and how's that
  looking errorneous to you? 
 
 It's not that it's erroneous. I'm just being a bit anal.  In all my
 other Gentoo installations, when the computer boots up, the font
 starts out large, then there is a sort of blip and the penguin
 graphic appears and the font becomes smaller.  I'm not a programmer,
 but was told this had something to do with the framebuffer.  This
 large font is driving me nuts because any command issued at the
 command line, for instance lspci results in half the information
 scrolling off screen unless you use a pipe.  I know that isn't all
 that big a deal, but it's not what I'm used to.

Hm, OK, I see. Does your kernel's command line contain a valid
video=... setting? Are you sure you're handing it a recognized mode
string? (I.e. when there's something like [EMAIL PROTECTED] or so, the
values aren't freely configurable but must match a valid video mode for
the framebuffer driver in question -- most of them use those from the
modedb). Also, you'll need not just framebuffer, but framebuffer
console support, too.

The vesa(-tng) driver is loaded early in the kernel's boot process.
Maybe you find some mention of an error in your kernel log ring buffer
(dmesg)?

-hwh
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Setting installation directories globally

2007-05-02 Thread Paul Sebastian Ziegler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi,

thank you all for your very clear and thus helpful statements.
I am going to reconsider my plans. Maybe there are better structures.
Or maybe I'll simply keep the gentoo-style structures and place some
folders with symlinks under root.

Anyways - thanks
It's always a pleasure to post here
(at least as long as people are not flaming on some semi-interesting
subject. :) )

Many Greetings
Paul
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGOJCSaHrXRd80sY8RCpkbAJ97hnxcXTVk6s1BdJWBBxa4YNO5dgCgzrm1
NMEiU+yOLwzYkv6zhNqJ02A=
=/cxF
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] file sorting in nautilus

2007-05-02 Thread Crayon
On Thursday 26 April 2007 14:15, Iain Buchanan wrote:

 Anyway, the great feature is it records on a 40Gb hard disk, but the
 annoying thing is the video files are named in hex:
 MOV001
 MOV002

At least its more logical than the totally braindead naming scheme on 
Nokia phones:

26042007.jpg
26042007(001).jpg
26042007(002).jpg

 so in short, is there any way around this?  Can I tell nautilus to stop
 being clever? I had a look in the options, but I can't find it. 

Isn't there a saying amongst Gnome people - Our way or no way! :)

 (There's always `emerge -C gnome; emerge kde` but I don't know if that
 will fix everything ;)

Yeah, good old konq just does the right thing :)

-- 
Crayon

-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] [OT] amarok and mp3 file rename

2007-05-02 Thread Francesco Talamona
After xmms was phased out, I chose to use Amarok. Now that I have 
listened and rated some thousands of mp3 I would like to be able to 
rename/move files without loosing rating and scoring information.

I'm under the impression that once I did it inside Amarok, but now I 
can't find anything useful.

Those are the USE flags Amarok was compiled with:
[ebuild   R   ] media-sound/amarok-1.4.5-r1  USE=aac arts 
daap -debug -ifp -ipod kde -mtp musicbrainz mysql -njb -noamazon opengl 
postgres (-real) visualization -xinerama

Any ideas?
cheers
Francesco

-- 
Linux Version 2.6.21-gentoo, Compiled #1 PREEMPT Mon Apr 30 21:45:34 
CEST 2007
One 1GHz AMD Athlon 64 Processor, 2GB RAM, 2004.02 Bogomips Total
aemaeth
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [OT] amarok and mp3 file rename

2007-05-02 Thread Bo Ørsted Andresen
On Wednesday 02 May 2007 19:08:54 Francesco Talamona wrote:
 After xmms was phased out, I chose to use Amarok. Now that I have
 listened and rated some thousands of mp3 I would like to be able to
 rename/move files without loosing rating and scoring information.

 I'm under the impression that once I did it inside Amarok, but now I
 can't find anything useful.

Right click on one or more track(s) - Manage files - Organize file(s) ?

-- 
Bo Andresen


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


[gentoo-user] Re: [OT] amarok and mp3 file rename

2007-05-02 Thread Francesco Talamona
On Wednesday 02 May 2007, Bo Ørsted Andresen wrote:
 On Wednesday 02 May 2007 19:08:54 Francesco Talamona wrote:
  After xmms was phased out, I chose to use Amarok. Now that I have
  listened and rated some thousands of mp3 I would like to be able to
  rename/move files without loosing rating and scoring information.
 
  I'm under the impression that once I did it inside Amarok, but now
  I can't find anything useful.

 Right click on one or more track(s) - Manage files - Organize
 file(s) ?

Thanks, man we are getting closer!

I hadn't that option because I never defined a collection, having added 
files from time to time.

Still there's something wrong: the option Edit Tag 'Filename' is 
always shaded.

Furthermore organize is trying to create many subfolders, I don't wont 
to mess around with the base folder, many mp3 have incomplete/wrong 
meta-informations and would end in random places...

FWIW my user have full permissions on the collection folders.

Thanks. Ciao
Francesco

-- 
Linux Version 2.6.21-gentoo, Compiled #1 PREEMPT Mon Apr 30 21:45:34 
CEST 2007
One 2.2GHz AMD Athlon 64 Processor, 2GB RAM, 4408.86 Bogomips Total
aemaeth
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: [OT] amarok and mp3 file rename

2007-05-02 Thread Mauro Faccenda
On Wednesday 02 May 2007 15:02, Francesco Talamona wrote:
 Thanks, man we are getting closer!

 I hadn't that option because I never defined a collection, having added
 files from time to time.

 Still there's something wrong: the option Edit Tag 'Filename' is
 always shaded.

 Furthermore organize is trying to create many subfolders, I don't wont
 to mess around with the base folder, many mp3 have incomplete/wrong
 meta-informations and would end in random places...

 FWIW my user have full permissions on the collection folders.

man, you can define the way amarok will organize the files/folders.

add the files to your library and in the collection panel or in the 
playlist, select the songs you want to edit the tags and do it. you can also 
use musicbrainz to lookup the tags of the file for you (not quite accurate, 
but for mostly known songs, it works).

i dont think you can edit the filename directly in the playlist/collection.

its better you to correct the tags and tell amarok to organize the files for 
you, since it can do it in the way you want.

[]'s
.m
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: [OT] amarok and mp3 file rename

2007-05-02 Thread Francesco Talamona
On Wednesday 02 May 2007, Mauro Faccenda wrote:
 On Wednesday 02 May 2007 15:02, Francesco Talamona wrote:
  Thanks, man we are getting closer!
 
  I hadn't that option because I never defined a collection, having
  added files from time to time.
 
  Still there's something wrong: the option Edit Tag 'Filename' is
  always shaded.
 
  Furthermore organize is trying to create many subfolders, I don't
  wont to mess around with the base folder, many mp3 have
  incomplete/wrong meta-informations and would end in random
  places...
 
  FWIW my user have full permissions on the collection folders.

 man, you can define the way amarok will organize the files/folders.

 add the files to your library and in the collection panel or in the
 playlist, select the songs you want to edit the tags and do it. you
 can also use musicbrainz to lookup the tags of the file for you (not
 quite accurate, but for mostly known songs, it works).

 i dont think you can edit the filename directly in the
 playlist/collection.

 its better you to correct the tags and tell amarok to organize the
 files for you, since it can do it in the way you want.

If it's the only way, I'll be more flexible than the program, but I 
wished I had more control over the reordering criterion...

Thanks. Ciao
Francesco


-- 
Linux Version 2.6.21-gentoo, Compiled #1 PREEMPT Mon Apr 30 21:45:34 
CEST 2007
One 1.8GHz AMD Athlon 64 Processor, 2GB RAM, 3607.25 Bogomips Total
aemaeth
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: [OT] amarok and mp3 file rename

2007-05-02 Thread Francesco Talamona
On Wednesday 02 May 2007, Francesco Talamona wrote:
 On Wednesday 02 May 2007, Mauro Faccenda wrote:
  On Wednesday 02 May 2007 15:02, Francesco Talamona wrote:
 If it's the only way, I'll be more flexible than the program, but I
 wished I had more control over the reordering criterion...

Replying to myself (in the meantine I answered 2 lengthy phone calls)...

It is Custom format in File naming scheme under organize collection 
files.
It should do what I want. I'm going to do some tests.

Ciao
Francesco

-- 
Linux Version 2.6.21-gentoo, Compiled #1 PREEMPT Mon Apr 30 21:45:34 
CEST 2007
One 1.8GHz AMD Athlon 64 Processor, 2GB RAM, 3607.25 Bogomips Total
aemaeth
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] aiglx USE flag and xorg 7.2: confusion with emerge -pv output about USE flags

2007-05-02 Thread b.n.

Hi,
I'm currently using xorg 7.1 with AIGLX enabled and Beryl.

Yesterday night I did an emerge --sync  emerge -pv world and that's 
what I found (among others):


[ebuild U ] x11-base/xorg-server-1.2.0-r3 [1.1.1-r5] USE=dri ipv6 
nptl sdl xorg -3dfx -debug -dmx -kdrive -minimal -xprint (-aiglx%*) 
INPUT_DEVICES=aiptek joystick keyboard...


Notice the (-aiglx%*). man emerge says, about the use flag display syntax:

 [ebuild U ] sys-devel/distcc-2.16 [2.13-r1] USE=ipv6* -gtk -qt%
  Here  we  see  that  the make.conf variable USE affects 
how this package is built.  In this example,  ipv6  optional  support 
is enabled  and both gtk and qt support are disabled.  The asterisk 
following ipv6 indicates that ipv6 support was disabled the last 
  time this packages was installed.  The percent sign following qt 
 indicates that the qt option has been added to the package 
since  it was last installed.


Now here I have the following situation:
- I have a functional AIGLX xorg-server
- I have the aiglx USE flag enabled in my make.conf (and also emerge 
--info confirms aiglx is enabled)


but Portage tells me that aiglx:
- was a USE flag of the previous version of xorg-xserver (true)
- it was disabled in the previous version (false, as far as I 
understand)
- is still disabled (false, AFAIU)
- it has been added only now to xorg-xserver (false, AFAIU)

What is that I don't understand?
Thanks,

m.
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] aiglx USE flag and xorg 7.2: confusion with emerge -pv output about USE flags

2007-05-02 Thread Joshua Doll

b.n. wrote:

Hi,
I'm currently using xorg 7.1 with AIGLX enabled and Beryl.

Yesterday night I did an emerge --sync  emerge -pv world and that's 
what I found (among others):


[ebuild U ] x11-base/xorg-server-1.2.0-r3 [1.1.1-r5] USE=dri ipv6 
nptl sdl xorg -3dfx -debug -dmx -kdrive -minimal -xprint (-aiglx%*) 
INPUT_DEVICES=aiptek joystick keyboard...


Notice the (-aiglx%*). man emerge says, about the use flag display 
syntax:


 [ebuild U ] sys-devel/distcc-2.16 [2.13-r1] USE=ipv6* -gtk -qt%
  Here  we  see  that  the make.conf variable USE affects 
how this package is built.  In this example,  ipv6  optional  support 
is enabled  and both gtk and qt support are disabled.  The asterisk 
following ipv6 indicates that ipv6 support was disabled the last   
time this packages was installed.  The percent sign following qt 
 indicates that the qt option has been added to the 
package since  it was last installed.


Now here I have the following situation:
- I have a functional AIGLX xorg-server
- I have the aiglx USE flag enabled in my make.conf (and also emerge 
--info confirms aiglx is enabled)


but Portage tells me that aiglx:
- was a USE flag of the previous version of xorg-xserver (true)
- it was disabled in the previous version (false, as far as I 
understand)

- is still disabled (false, AFAIU)
- it has been added only now to xorg-xserver (false, AFAIU)

What is that I don't understand?
Thanks,

m.
From what I understand Aiglx functionality was merged into the 
xorg-server package as of 7.2 and the aiglx use flag was no longer needed.


 24 Jan 2007; Donnie Berkholz [EMAIL PROTECTED];
 +xorg-server-1.2.0.ebuild:
 Bump. Upstream incorporated some version of all of our patches, so no more

I hope understood what you were asking and answered correctly.


--Joshua Doll
 need for the aiglx USE flag.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] aiglx USE flag and xorg 7.2: confusion with emerge -pv output about USE flags

2007-05-02 Thread Bo Ørsted Andresen
On Wednesday 02 May 2007 23:28:57 b.n. wrote:
 I'm currently using xorg 7.1 with AIGLX enabled and Beryl.

 Yesterday night I did an emerge --sync  emerge -pv world and that's
 what I found (among others):

 [ebuild U ] x11-base/xorg-server-1.2.0-r3 [1.1.1-r5] USE=dri ipv6
 nptl sdl xorg -3dfx -debug -dmx -kdrive -minimal -xprint (-aiglx%*)
 INPUT_DEVICES=aiptek joystick keyboard...

 Notice the (-aiglx%*). man emerge says, about the use flag display syntax:
[SNIP]
 Now here I have the following situation:
 - I have a functional AIGLX xorg-server
 - I have the aiglx USE flag enabled in my make.conf (and also emerge
 --info confirms aiglx is enabled)

 but Portage tells me that aiglx:
   - was a USE flag of the previous version of xorg-xserver (true)
   - it was disabled in the previous version (false, as far as I 
 understand)
   - is still disabled (false, AFAIU)
   - it has been added only now to xorg-xserver (false, AFAIU)

 What is that I don't understand?

From `man emerge`:
- prefix = not enabled (either disabled or removed)
* suffix = transition to or from the enabled state
% suffix = newly added or removed
() circumfix = forced, masked, or removed

So it means that the aiglx use flag used to be enabled but has now been 
removed.

*xorg-server-1.2.0 (24 Jan 2007)

  24 Jan 2007; Donnie Berkholz [EMAIL PROTECTED];
  +xorg-server-1.2.0.ebuild:
  Bump. Upstream incorporated some version of all of our patches, so no more
  need for the aiglx USE flag.

Which means that aiglx in no longer optional but instead always enabled.

-- 
Bo Andresen


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


Re: [gentoo-user] aiglx USE flag and xorg 7.2: confusion with emerge -pv output about USE flags

2007-05-02 Thread b.n.

Bo Ørsted Andresen ha scritto:


From `man emerge`:
- prefix = not enabled (either disabled or removed)
* suffix = transition to or from the enabled state
% suffix = newly added or removed
() circumfix = forced, masked, or removed

So it means that the aiglx use flag used to be enabled but has now been 
removed.


Uh, right. Found that table only now.


*xorg-server-1.2.0 (24 Jan 2007)

  24 Jan 2007; Donnie Berkholz [EMAIL PROTECTED];
  +xorg-server-1.2.0.ebuild:
  Bump. Upstream incorporated some version of all of our patches, so no more
  need for the aiglx USE flag.

Which means that aiglx in no longer optional but instead always enabled.



Ok, that's what I needed to know.
However, on a sidenote, I must say I find the current emerge syntax 
quite confusing. Using the % for both newly added and removed and () for 
either forced, masked and removed is not the best of ideas, imho.


If % means newly, there should at least be two circumfix symbols for 
added and removed, respectively.

Something like:

(%flag) : newly added
[%flag] : newly removed
(flag) : forced
[flag] : removed
{flag} : masked

But I'm still confused: why should you see an added or removed warning 
*if it's not new*?


m.
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Useless error messages [solved]

2007-05-02 Thread waltdnes
On Wed, May 02, 2007 at 10:43:44AM +0200, Benno Schulenberg wrote
 [EMAIL PROTECTED] wrote:
 The final remaining problem is with the 3 statements scattered
  through the rules...
 
  -A ICMP_IN -p icmp -m state --state NEW -j UNSOLICITED
  -A TCP_IN -p tcp -m state --state NEW -m tcp -j UNSOLICITED
  -A UDP_IN -p udp -m state --state NEW -j UNSOLICITED
 
 The -m tcp is a typo, yes?

  That's the way I had it.  It doesn't hurt, but it comes from the
Department of Superfluous Redundancy Department.  This rule is part of
the chain that handles only TCP packets, so there's no point in checking
again whether it's a TCP packet.  I've gotten rid of it now.  Thanks for
pointing it out.

 The setting you might me missing is CONFIG_NF_CONNTRACK_IPV4=y.

  You were right again.  I did have CONFIG_NF_CONNTRACK, which
apparently isn't enough.  It said something about being required for
NATing, which my machine doesn't do.  So I thought it was unnecessary.

  The rules work fine now, thanks to your help.  Here's
/var/lib/iptables/rules-save in its full glory.  A few notes...
  - I have a 5-port switch behind an ADSL router/modem.
  - I've set my little LAN to 192.168.123.248/29
  - for some obscure reason, the ADSL router/modem needs to use
address 192.168.200.1

*filter
:INPUT DROP
:FORWARD DROP
:OUTPUT DROP
-F
-X
-N DROP_LOG
-N ICMP_IN
-N PRIVATE
-N PRIVATE_LOG
-N TCP_IN
-N UDP_IN
-N UNSOLICITED
-A INPUT -s 192.168.123.248/255.255.255.248 -i eth0 -j ACCEPT
-A INPUT -s 192.168.200.1 -j ACCEPT
-A INPUT -i eth0 -p tcp -m tcp --sport 53 -j ACCEPT
-A INPUT -i eth0 -p udp -m udp --sport 53 -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -f -j LOG --log-prefix FRAGMENTS: --log-level 6
-A INPUT -f -j DROP
-A INPUT -p tcp -j TCP_IN
-A INPUT -p udp -j UDP_IN
-A INPUT -p icmp -j ICMP_IN
-A INPUT -j LOG --log-prefix BAD_PROTOCOL: --log-level 6
-A INPUT -j DROP
-A OUTPUT -d 192.168.123.248/255.255.255.248 -o eth0 -j ACCEPT
-A OUTPUT -s 127.0.0.1 -d 127.0.0.1 -o lo -j ACCEPT
-A OUTPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT
-A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A OUTPUT -p icmp -m icmp --icmp-type 30 -j ACCEPT
-A OUTPUT -p tcp -m tcp --sport 0:1023 -j DROP_LOG
-A OUTPUT -p udp -m udp --sport 0:1023 -j DROP_LOG
-A OUTPUT -p tcp -m tcp --sport 6000:6063 -j DROP_LOG
-A OUTPUT -p udp -m udp --sport 6000:6063 -j DROP_LOG
-A OUTPUT -j ACCEPT
-A DROP_LOG -j LOG --log-level 6
-A DROP_LOG -j DROP
-A ICMP_IN -p icmp -m state --state NEW -j UNSOLICITED
-A ICMP_IN -p icmp -m icmp --icmp-type 0 -j PRIVATE
-A ICMP_IN -p icmp -m icmp --icmp-type 3 -j PRIVATE
-A ICMP_IN -p icmp -m icmp --icmp-type 4 -j PRIVATE
-A ICMP_IN -p icmp -m icmp --icmp-type 11 -j PRIVATE
-A ICMP_IN -p icmp -m icmp --icmp-type 12 -j PRIVATE
-A ICMP_IN -j LOG --log-prefix IN_BAD_ICMP: --log-level 6
-A ICMP_IN -j DROP
-A PRIVATE -s 10.0.0.0/255.0.0.0 -j PRIVATE_LOG
-A PRIVATE -s 127.0.0.0/255.0.0.0 -j PRIVATE_LOG
-A PRIVATE -s 169.254.0.0/255.255.0.0 -j PRIVATE_LOG
-A PRIVATE -s 172.16.0.0/255.240.0.0 -j PRIVATE_LOG
-A PRIVATE -s 192.168.0.0/255.255.0.0 -j PRIVATE_LOG
-A PRIVATE -j ACCEPT
-A PRIVATE_LOG -j LOG --log-prefix IN_BAD_ADDR: --log-level 6
-A PRIVATE_LOG -j DROP
-A TCP_IN -p tcp -m tcp --dport 0:1023 -j DROP_LOG
-A TCP_IN -p tcp -m tcp --dport 6000:6063 -j DROP_LOG
-A TCP_IN -p tcp -m tcp --sport 53 -j PRIVATE
-A TCP_IN -p tcp -m tcp --sport 80 -j PRIVATE
-A TCP_IN -p tcp -m state --state NEW -j UNSOLICITED
-A TCP_IN -p tcp -j PRIVATE
-A UDP_IN -p udp -m udp --dport 0:1023 -j DROP_LOG
-A UDP_IN -p udp -m udp --dport 6000:6063 -j DROP_LOG
-A UDP_IN -p udp -m udp --sport 53 -j PRIVATE
-A UDP_IN -p udp -m udp --sport 80 -j PRIVATE
-A UDP_IN -p udp -m state --state NEW -j UNSOLICITED
-A UDP_IN -p udp -j PRIVATE
-A UNSOLICITED -j LOG --log-prefix UNSOLICITED: --log-level 6
-A UNSOLICITED -j DROP
COMMIT

-- 
Walter Dnes [EMAIL PROTECTED] In linux /sbin/init is Job #1
Q. Mr. Ghandi, what do you think of Microsoft security?
A. I think it would be a good idea.
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] aiglx USE flag and xorg 7.2: confusion with emerge -pv output about USE flags

2007-05-02 Thread Bo Ørsted Andresen
On Thursday 03 May 2007 02:26:36 b.n. wrote:
 However, on a sidenote, I must say I find the current emerge syntax
 quite confusing. Using the % for both newly added and removed and () for
 either forced, masked and removed is not the best of ideas, imho.

 If % means newly, there should at least be two circumfix symbols for
 added and removed, respectively.
 Something like:

 (%flag) : newly added
 [%flag] : newly removed
 (flag) : forced
 [flag] : removed
 {flag} : masked

The discussion on this took place on bug #144661 [1]. Bugs #116955 and #144333 
are related.

 But I'm still confused: why should you see an added or removed warning
 *if it's not new*?

Because it's quite confusing to type `emerge --newuse --verbose world` and see 
packages getting remerged that according to the output from emerge didn't 
change their use flags. --newuse is sensitive to IUSE changes and hence the 
output needs to reflect all changes to IUSE.

[1] https://bugs.gentoo.org/show_bug.cgi?id=144661

-- 
Bo Andresen


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


[gentoo-user] Xserver on Dell Inspiron M1710

2007-05-02 Thread Colleen Beamer
Hi all,

I'm having a heck of a time.  I've tried so many things, that I'm
totally confused.

After installing xorg-x11, I ran Xorg -configure.  It gives me a file
with no horizontal or vertical sync.  I tried using the ddcxinfo-knoppix
tool, but when I did ddxcinfo-knoppix -hsync, it returned 0 0.  When I
did ddxcinfo-knoppix -modelines, it didn't have a matching mode for my
monitor - the default being 1920x1200.  I assume that because I don't
have a horizontal and vertical sync in my xorg.conf file that's why the
screen becomes all garbled when startx bombs out.

Xorg.0.log tells me that there is no core keyboard or mouse.  I've built
support into the kernel.  in /dev/input/ there are choices for mice
mouse0 and mouse1. I've tried using all of these and trying various
drivers, but nothing works.

Does anyone have a Dell Inspiron M1710 and will let me take a look at
their xorg.conf file?

Any and all help would be appreciated.

Regards,

Colleen
-- 

Registered Linux User #411143 with the Linux Counter, http://counter.li.org
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo on Dell Inspiron M1710

2007-05-02 Thread Colleen Beamer
Hans-Werner Hilse wrote:
 Hi,
 
 On Wed, 02 May 2007 08:14:03 -0400 Colleen Beamer
 [EMAIL PROTECTED] wrote:
 
 What does the font doesn't resize mean exactly and how's that
 looking errorneous to you? 
 It's not that it's erroneous. I'm just being a bit anal.  In all my
 other Gentoo installations, when the computer boots up, the font
 starts out large, then there is a sort of blip and the penguin
 graphic appears and the font becomes smaller..
 
 Hm, OK, I see. Does your kernel's command line contain a valid
 video=... setting?

I'm not sure what you mean here.  In my make.conf file, I have the line
video_cards=nvidia

 Are you sure you're handing it a recognized mode
 string? (I.e. when there's something like [EMAIL PROTECTED] or so, the
 values aren't freely configurable but must match a valid video mode for
 the framebuffer driver in question -- most of them use those from the
 modedb). Also, you'll need not just framebuffer, but framebuffer
 console support, too.

I use genkernel and there is a screen resolution of something that says
1024x768 and I can't edit it.  I also don't know what my horizontal and
vertical sync are because it's not in my documentation and when I used
ddxcinfo-knoppix -hsync, it returns 0 0 and ddcxinfo-knoppix -modlines
doesn't have a corresponding mode for my monitor - the resolution is
1920x1200.

Regards,

Colleen

-- 

Registered Linux User #411143 with the Linux Counter, http://counter.li.org
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] file sorting in nautilus

2007-05-02 Thread Iain Buchanan
On Thu, 2007-05-03 at 00:27 +0800, Crayon wrote:
 On Thursday 26 April 2007 14:15, Iain Buchanan wrote:

  (There's always `emerge -C gnome; emerge kde` but I don't know if that
  will fix everything ;)
 
 Yeah, good old konq just does the right thing :)

just to confirm that konqueror sorts the right way, could you run this
little one-liner script?  And then tell me how it looks in konq?

mkdir test-sort; cd test-sort; for ((i=1; i=30; i++)); do touch `printf
MOV%03X.MOV\n $i`; done; cd ..; ls -l test-sort

If anyone else wants to run it in their file-browser of choice, and let
me know how it's ordered, I'd be grateful too :)

thanks,
-- 
Iain Buchanan iaindb at netspace dot net dot au

Work consists of whatever a body is obliged to do.
Play consists of whatever a body is not obliged to do.
-- Mark Twain

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Xserver on Dell Inspiron M1710

2007-05-02 Thread C Lee Davis
Colleen Beamer wrote:
 Does anyone have a Dell Inspiron M1710 and will let me take a look at
 their xorg.conf file?
 
This is from my XPS M1710; I'm not sure how similar they are, but I hope it 
helps.

Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
FontPath /usr/share/fonts/misc
FontPath /usr/share/fonts/75dpi
FontPath /usr/share/fonts/100dpi
FontPath /usr/share/fonts/TTF
FontPath /usr/share/fonts/Type1
EndSection

Section Module
Load  glx
Load  extmod
Load  xtrap
Load  record
Load  dbe
Load  dri
Load  freetype
Load  type1
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
EndSection
Section Monitor
Identifier   Monitor1
VendorName   Monitor Vendor
ModelNameMonitor Model
EndSection

Section Device
Identifier  Card0
Driver  nvidia
VendorName  nVidia Corporation
BoardName   Unknown Board
BusID   PCI:1:0:0
Option  NoLogo True
Option  AllowGLXWithComposite true
Screen  0
Option  TwinView
Option  MetaModes 1920x1200 1280x1024,1920x1200
Option  TwinViewOrientation LeftOf
Option  SecondMonitorHorizSync UseEdidFreqs
Option  SecondMonitorVertRefresh UseEdidFreqs
Option  AddARGBGLXVisuals
Option  NvAGP 1
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
Option  AddARGBGLXVisuals true
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
EndSubSection
EndSection

Section Extensions
Option Composite true
EndSection


-- 
 C. Lee Davis
Fantasy Geographic Society  http://fantasy.geographic.net/
GCB for GURPS 4e http://fantasy.geographic.net/project/4eGURPS
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo on Dell Inspiron M1710

2007-05-02 Thread C Lee Davis
Colleen Beamer wrote:
 I use genkernel and there is a screen resolution of something that says
 1024x768 and I can't edit it.  I also don't know what my horizontal and
 vertical sync are because it's not in my documentation and when I used
 ddxcinfo-knoppix -hsync, it returns 0 0 and ddcxinfo-knoppix -modlines
 doesn't have a corresponding mode for my monitor - the resolution is
 1920x1200.
 
Coleen, I've had no luck getting the framebuffer console to recognize 16:9
aspect ratios.  My XPS M1710 boots up to a 1600x1200 console and then starts X
to go to full 1920x1200 resolution.

The relevant lines from my my kernel's .config:

CONFIG_FB_VESA=y
# CONFIG_FB_VESA_STD is not set
CONFIG_FB_VESA_TNG=y
CONFIG_FB_VESA_DEFAULT_MODE=[EMAIL PROTECTED]

-- 
 C. Lee Davis
Fantasy Geographic Society  http://fantasy.geographic.net/
GCB for GURPS 4e http://fantasy.geographic.net/project/4eGURPS
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] MAJOR udev problem, PLEASE help

2007-05-02 Thread Trenton Adams

I have an ethernet controller that worked until I updated my udev to
the latest version.

00:14.0 Bridge: nVidia Corporation MCP51 Ethernet Controller (rev a1)
   Subsystem: ASUSTeK Computer Inc. Unknown device 8141
   Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
ParErr- Stepping- SERR- FastB2B-
   Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast TAbort-
TAbort- MAbort- SERR- PERR-
   Latency: 0 (250ns min, 5000ns max)
   Interrupt: pin A routed to IRQ 16
   Region 0: Memory at febd7000 (32-bit, non-prefetchable) [size=4K]
   Region 1: I/O ports at d080 [size=8]
   Capabilities: [44] Power Management version 2
   Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA
PME(D0+,D1+,D2+,D3hot+,D3cold+)
   Status: D0 PME-Enable- DSel=0 DScale=0 PME-

It shows up as follows from ifconfig
eth0  Link encap:UNSPEC  HWaddr
00-11-D8-00-00-7D-66-26-00-00-00-00-00-00-00-00
 inet addr:192.168.20.2  Bcast:192.168.20.255  Mask:255.255.255.0
 UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
 RX packets:0 errors:0 dropped:0 overruns:0 frame:0
 TX packets:14 errors:0 dropped:0 overruns:0 carrier:0
 collisions:0 txqueuelen:1000
 RX bytes:0 (0.0 b)  TX bytes:504 (504.0 b)

I have kernel 2.6.18-r4 from gentoo-sources

I don't understand what is happening.  It sets my IP just fine, but
the MAC address is WEIRD and there's no link.  The link light is on.
I can ping my IP, but my gateway IP returns with destination host
unreachable.

Any help would be appreciated.

Thanks.
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] file sorting in nautilus

2007-05-02 Thread Crayon
On Thursday 03 May 2007 09:55, Iain Buchanan wrote:

  Yeah, good old konq just does the right thing :)

 just to confirm that konqueror sorts the right way, 

I had tested konq before making the above claim :)

 could you run this little one-liner script?  And then tell me how it
 looks in konq? 

 mkdir test-sort; cd test-sort; for ((i=1; i=30; i++)); do touch
 `printf MOV%03X.MOV\n $i`; done; cd ..; ls -l test-sort

Looks good to me, same as shell output.

-- 
Crayon
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Wireless network seems ok, but higher level stuff fails

2007-05-02 Thread Trenton Adams

I've been having the same problem with my ethernet device.  I found on
the net that a link status of *UNSPEC* likely means the usermode
program does not match the running kernel.  So, I figured it was
probably that I needed to upgrade my kernel, seeing that udev was
upgraded.

Unfortunately, the latest gentoo kernel doesn't appear to work with my
system out of the box.

Starting to wonder if gentoo is going to pot. :)

On 3/8/07, Paulo Roberto Candido dos Santos [EMAIL PROTECTED] wrote:

It's me again. I found more strange things about my problem. I think
I'm getting closer:

arp -n in the Gentoo Station reports:
169.254.0.1  (incomplete)  ath0

Where 169.254.0.1 is the address of the AP.
tcpdump -vv -i ath0 arp:

20:50:21.984182 arp who-has 169.254.0.1 tell 169.254.0.3


While I'm pinging the AP, I got truncated-arp messages in the AP
tcpdump -vv ath0 arp output.

The Station machine just got two replies:
64 bytes from 169.254.0.1: icmp_seq=424 ttl=64 time=0.400 ms
64 bytes from 169.254.0.1: icmp_seq=426 ttl=64 time=2998 ms


It seems like my problem has something to do with the Signal Too
Strong http://madwifi.org/wiki/FAQ/SignalTooStrong issue. I will move
the AP to a place far from the station.

So far no one replied to this, but I will keep posting in the hope
that my attempts to make this works helps someone in the future.

On 3/8/07, Paulo Roberto Candido dos Santos [EMAIL PROTECTED] wrote:
 Another thing... I've loaded the ath_pci module with debug options and
 it gave me lots of information. When I try to ping (one request with
 ping -c 1) the ap from the station it prints the following
 information in /var/log/messages:

 Mar  8 17:43:04 yule ath_tx_start: skb0 f3221680 [data f7b9ac3c len
 120] skbaddr 37b9ac3c
 Mar  8 17:43:04 yule TODS
 00:19:5b:66:d8:b0-00:19:5b:66:d5:0c(00:19:5b:66:d5:0c) data QoS [TID
 0] 54M
 Mar  8 17:43:04 yule
 Mar  8 17:43:04 yule 88 01 2c 00 00 19 5b 66  d5 0c 00 19 5b 66 d8 b0
 Mar  8 17:43:04 yule 00 19 5b 66 d5 0c 50 06  00 00 d5 0c aa aa 03 00
 Mar  8 17:43:04 yule 00 00 08 00 45 00 00 54  00 00 40 00 40 01 e6 a8
 Mar  8 17:43:04 yule a9 fe 00 03 a9 fe 00 01  08 00 27 fc cd 16 00 01
 Mar  8 17:43:04 yule 58 75 f0 45 c0 2d 0f 00  08 09 0a 0b 0c 0d 0e 0f
 Mar  8 17:43:04 yule 10 11 12 13 14 15 16 17  18 19 1a 1b 1c 1d 1e 1f
 Mar  8 17:43:04 yule 20 21 22 23 24 25 26 27  28 29 2a 2b 2c 2d 2e 2f
 Mar  8 17:43:04 yule 30 31 32 33 34 35 36 37
 Mar  8 17:43:04 yule
 Mar  8 17:43:04 yule ath_tx_start: Q1: (ds)f706ae20 (lk)
 (d)37b9ac3c (c0)4124007a (c1)06008078 8000 000db50c
 Mar  8 17:43:04 yule ath_tx_txqaddbuf: link[1] (f706adc0)=3706ae20 (f706ae20)


 On 3/8/07, Paulo Roberto Candido dos Santos [EMAIL PROTECTED] wrote:
  Hello list!
 
  I'm having some problems setting a wireless network consisting of a
  gentoo ap, one gentoo station and one Windows XP station.
  I've followed the instructions on the madwifi.org and on gentoo
  specialized forums and wiki. Seems like the wireless part of the
  network is just fine and every station can connect to the ap, but I
  can't do more than ping the hosts in the winxp station and the gentoo
  station connects to the network but can't do nothing... not even ping
  the ap.
  Nothing wrong with logs and signal... but it seems that all the
  network services and protocols (tcp, udp and icmp for the gentoo
  station) aren't working.
 
  The strange thing is that the Windows XP host can ping the ap, however
  it can't get a dhcp address and even using static IP can't access
  services on the AP like http and ssh. This machine can ping hosts on
  the internet but can't access tcp or udp services. Iptraf on the AP
  reports the connections.
 
  The other Gentoo workstation can scan and connect to the network but
  can't do nothing more.
 
 
  From the AP Linux Machine:
 
  /etc/conf.d/wireless:
 
  modules_ath0=( iwconfig )
  config_ath0=( 169.254.0.1/16 )
  mode_ath0=Master
  essid_ath0=skyshaper
  channel_ath0=10
  iwpriv_ath0=( mode 3 )
 
  dns_domain_skyshaper=local
  dns_servers_skyshaper=( 169.254.0.1 )
 
  dmesg relevant parts:
 
  ath_hal: module license 'Proprietary' taints kernel.
  ath_hal: 0.9.17.2 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
  ath_rate_sample: 1.2 (0.9.2.1)
  ath_pci: 0.9.4.5 (0.9.2.1)
  wifi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
  wifi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps
  24Mbps 36Mbps 48Mbps 54Mbps
  wifi0: turboG rates: 6Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
  wifi0: H/W encryption support: WEP AES AES_CCM TKIP
  wifi0: mac 7.9 phy 4.5 radio 5.6
  wifi0: Use hw queue 1 for WME_AC_BE traffic
  wifi0: Use hw queue 0 for WME_AC_BK traffic
  wifi0: Use hw queue 2 for WME_AC_VI traffic
  wifi0: Use hw queue 3 for WME_AC_VO traffic
  wifi0: Use hw queue 8 for CAB traffic
  wifi0: Use hw queue 9 for beacons
  wifi0: Atheros 5212: mem=0xdfdc, irq=11
 
  lspci -vv relevant parts:
 
  00:0e.0 

Re: [gentoo-user] Re: Wireless network seems ok, but higher level stuff fails

2007-05-02 Thread Trenton Adams

Actually, go back to Feb 12 with a message called [gentoo-user]
Network problem, it worked for me.

udev may have changed your ethernet interface name.  using ifconfig
-a to check.

On 5/2/07, Trenton Adams [EMAIL PROTECTED] wrote:

I've been having the same problem with my ethernet device.  I found on
the net that a link status of *UNSPEC* likely means the usermode
program does not match the running kernel.  So, I figured it was
probably that I needed to upgrade my kernel, seeing that udev was
upgraded.

Unfortunately, the latest gentoo kernel doesn't appear to work with my
system out of the box.

Starting to wonder if gentoo is going to pot. :)

On 3/8/07, Paulo Roberto Candido dos Santos [EMAIL PROTECTED] wrote:
 It's me again. I found more strange things about my problem. I think
 I'm getting closer:

 arp -n in the Gentoo Station reports:
 169.254.0.1  (incomplete)  
ath0

 Where 169.254.0.1 is the address of the AP.
 tcpdump -vv -i ath0 arp:

 20:50:21.984182 arp who-has 169.254.0.1 tell 169.254.0.3


 While I'm pinging the AP, I got truncated-arp messages in the AP
 tcpdump -vv ath0 arp output.

 The Station machine just got two replies:
 64 bytes from 169.254.0.1: icmp_seq=424 ttl=64 time=0.400 ms
 64 bytes from 169.254.0.1: icmp_seq=426 ttl=64 time=2998 ms


 It seems like my problem has something to do with the Signal Too
 Strong http://madwifi.org/wiki/FAQ/SignalTooStrong issue. I will move
 the AP to a place far from the station.

 So far no one replied to this, but I will keep posting in the hope
 that my attempts to make this works helps someone in the future.

 On 3/8/07, Paulo Roberto Candido dos Santos [EMAIL PROTECTED] wrote:
  Another thing... I've loaded the ath_pci module with debug options and
  it gave me lots of information. When I try to ping (one request with
  ping -c 1) the ap from the station it prints the following
  information in /var/log/messages:
 
  Mar  8 17:43:04 yule ath_tx_start: skb0 f3221680 [data f7b9ac3c len
  120] skbaddr 37b9ac3c
  Mar  8 17:43:04 yule TODS
  00:19:5b:66:d8:b0-00:19:5b:66:d5:0c(00:19:5b:66:d5:0c) data QoS [TID
  0] 54M
  Mar  8 17:43:04 yule
  Mar  8 17:43:04 yule 88 01 2c 00 00 19 5b 66  d5 0c 00 19 5b 66 d8 b0
  Mar  8 17:43:04 yule 00 19 5b 66 d5 0c 50 06  00 00 d5 0c aa aa 03 00
  Mar  8 17:43:04 yule 00 00 08 00 45 00 00 54  00 00 40 00 40 01 e6 a8
  Mar  8 17:43:04 yule a9 fe 00 03 a9 fe 00 01  08 00 27 fc cd 16 00 01
  Mar  8 17:43:04 yule 58 75 f0 45 c0 2d 0f 00  08 09 0a 0b 0c 0d 0e 0f
  Mar  8 17:43:04 yule 10 11 12 13 14 15 16 17  18 19 1a 1b 1c 1d 1e 1f
  Mar  8 17:43:04 yule 20 21 22 23 24 25 26 27  28 29 2a 2b 2c 2d 2e 2f
  Mar  8 17:43:04 yule 30 31 32 33 34 35 36 37
  Mar  8 17:43:04 yule
  Mar  8 17:43:04 yule ath_tx_start: Q1: (ds)f706ae20 (lk)
  (d)37b9ac3c (c0)4124007a (c1)06008078 8000 000db50c
  Mar  8 17:43:04 yule ath_tx_txqaddbuf: link[1] (f706adc0)=3706ae20 
(f706ae20)
 
 
  On 3/8/07, Paulo Roberto Candido dos Santos [EMAIL PROTECTED] wrote:
   Hello list!
  
   I'm having some problems setting a wireless network consisting of a
   gentoo ap, one gentoo station and one Windows XP station.
   I've followed the instructions on the madwifi.org and on gentoo
   specialized forums and wiki. Seems like the wireless part of the
   network is just fine and every station can connect to the ap, but I
   can't do more than ping the hosts in the winxp station and the gentoo
   station connects to the network but can't do nothing... not even ping
   the ap.
   Nothing wrong with logs and signal... but it seems that all the
   network services and protocols (tcp, udp and icmp for the gentoo
   station) aren't working.
  
   The strange thing is that the Windows XP host can ping the ap, however
   it can't get a dhcp address and even using static IP can't access
   services on the AP like http and ssh. This machine can ping hosts on
   the internet but can't access tcp or udp services. Iptraf on the AP
   reports the connections.
  
   The other Gentoo workstation can scan and connect to the network but
   can't do nothing more.
  
  
   From the AP Linux Machine:
  
   /etc/conf.d/wireless:
  
   modules_ath0=( iwconfig )
   config_ath0=( 169.254.0.1/16 )
   mode_ath0=Master
   essid_ath0=skyshaper
   channel_ath0=10
   iwpriv_ath0=( mode 3 )
  
   dns_domain_skyshaper=local
   dns_servers_skyshaper=( 169.254.0.1 )
  
   dmesg relevant parts:
  
   ath_hal: module license 'Proprietary' taints kernel.
   ath_hal: 0.9.17.2 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
   ath_rate_sample: 1.2 (0.9.2.1)
   ath_pci: 0.9.4.5 (0.9.2.1)
   wifi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
   wifi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps
   24Mbps 36Mbps 48Mbps 54Mbps
   wifi0: turboG rates: 6Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
   wifi0: H/W encryption support: WEP AES AES_CCM TKIP
   wifi0: mac 7.9 phy 4.5 radio 5.6
   wifi0: Use hw queue 

Re: [gentoo-user] MAJOR udev problem, PLEASE help

2007-05-02 Thread Neil Bothwick
On Wed, 2 May 2007 21:43:13 -0600, Trenton Adams wrote:

 I have an ethernet controller that worked until I updated my udev to
 the latest version.
 
 It shows up as follows from ifconfig
 eth0  Link encap:UNSPEC  HWaddr
 00-11-D8-00-00-7D-66-26-00-00-00-00-00-00-00-00
   inet addr:192.168.20.2  Bcast:192.168.20.255

 I don't understand what is happening.  It sets my IP just fine, but
 the MAC address is WEIRD and there's no link. 

That MAC address looks like it could be a Firewire ethernet interface.
Does ifconfig -a show your correct MAC address on another interface? If
so, it is probably your persistent net rules messing things up, but if
you don't use Firewire for ethernet, it's probably easiest to disable the
eth1394 module.


-- 
Neil Bothwick

Drive not ready: (R)etry (G)o to Impulse (C)all Engineering


signature.asc
Description: PGP signature


Re: [gentoo-user] MAJOR udev problem, PLEASE help

2007-05-02 Thread Peter Alfredsen
On Thursday 03 May 2007, Trenton Adams wrote:
 I have an ethernet controller that worked until I updated my udev to
 the latest version.

 00:14.0 Bridge: nVidia Corporation MCP51 Ethernet Controller (rev a1)
 Subsystem: ASUSTeK Computer Inc. Unknown device 8141
 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
 ParErr- Stepping- SERR- FastB2B-
 Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast TAbort-
 TAbort- MAbort- SERR- PERR-
 Latency: 0 (250ns min, 5000ns max)
 Interrupt: pin A routed to IRQ 16
 Region 0: Memory at febd7000 (32-bit, non-prefetchable) [size=4K]
 Region 1: I/O ports at d080 [size=8]
 Capabilities: [44] Power Management version 2
 Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA
 PME(D0+,D1+,D2+,D3hot+,D3cold+)
 Status: D0 PME-Enable- DSel=0 DScale=0 PME-

 It shows up as follows from ifconfig
 eth0  Link encap:UNSPEC  HWaddr

Methinks that looks like some kind of firewire voodoo interface. The Link 
encap should be ethernet, like this:

eth0  Link encap:Ethernet  HWaddr 00:11:2F:28:94:AF
  inet addr:xxx.xxx.xx.xx  Bcast:xxx.xxx.xx.xx  Mask:255.255.255.240
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:18809418 errors:0 dropped:0 overruns:0 frame:0
  TX packets:16750561 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000
  RX bytes:1252875785 (1194.8 Mb)  TX bytes:1941196921 (1851.2 Mb)
  Interrupt:10

Does ifconfig show any other interfaces?
Are you running ~arch or plain arch? If the latter, I think udev-110 has 
defaulted to blacklisting the offending module precisely because of problems 
with the interfaces getting juggled about.

-- 
/PA
-- 
[EMAIL PROTECTED] mailing list