Re: [gentoo-user] Running Scripts

2007-07-28 Thread Dirk Heinrichs
Am Freitag, 27. Juli 2007 schrieb Florian Philipp: Please post the output of cat /etc/group | grep $username Or just: id Bye... Dirk signature.asc Description: This is a digitally signed message part.

Re: [gentoo-user] Receiving GWN via email?

2007-07-28 Thread Volker Armin Hemmann
On Samstag, 28. Juli 2007, Billy McCann wrote: Hi. Could someone confirm that they are receiving the GWN to their inbox, so that I'll know it's just me not getting it? That'd be swell. I don't receive it too. It is on the web page but was not sent to the ml. Don't know why. -- [EMAIL

Re: [gentoo-user] Receiving GWN via email?

2007-07-28 Thread Kent Fredric
On 7/28/07, Volker Armin Hemmann [EMAIL PROTECTED] wrote: On Samstag, 28. Juli 2007, Billy McCann wrote: Hi. Could someone confirm that they are receiving the GWN to their inbox, so that I'll know it's just me not getting it? That'd be swell. I don't receive it too. It is on the web

[gentoo-user] Problem with keychain

2007-07-28 Thread Marc Blumentritt
Hi list, I have a problem with keychain. It is set up following the wiki. I start keychain: hive ~ # keychain id_dsa KeyChain 2.6.6; http://www.gentoo.org/proj/en/keychain/ Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL * Initializing /root/.keychain/hive-sh file... *

Re: [gentoo-user] Problem with keychain

2007-07-28 Thread Mike Mazur
Hi, On 7/28/07, Marc Blumentritt [EMAIL PROTECTED] wrote: I have a problem with keychain. It is set up following the wiki. I start keychain: snip Looking with ssh-add, I see my key: hive ~ # ssh-add -l 1024 dd:f2:12:2a:bc:8a:55:7e:18:43:03:dd:e9:dd:27:4d /root/.ssh/id_dsa (DSA) So

Re: [gentoo-user] Problem with keychain

2007-07-28 Thread Mike Mazur
Hi, On 7/28/07, Mike Mazur [EMAIL PROTECTED] wrote: -the public key id_dsa.pub should be appended to ~/.ssh/authorized_hosts -permissions of ~/.ssh/authorized_hosts should be 600 My mistake, that should be authorized_keys instead of authorized_hosts. Mike -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] Can't compile eix

2007-07-28 Thread Kent Fredric
On 7/28/07, Nick Rout [EMAIL PROTECTED] wrote: I have a much abused gentoo system on which I was trying to update eix. I get quite a few errors and i am not sure how far back up the output to go. Heres the last bits anyway. Can anyone tell me what I can do to fix that?

[gentoo-user] Can't compile eix

2007-07-28 Thread Nick Rout
, and the call stack if relevant. !!! A complete build log is located at '/var/log/portage/app-portage:eix-0.8.8:20070728-114150.log'. -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Kent Fredric
On 7/28/07, Greg Lindstrom [EMAIL PROTECTED] wrote: Wow! Thanks for the help. See my comments below pertaining to individual remarks. --greg Alex asked: is is possible that you saved the text file in DOS format, with CR-LF endings instead of LF only? If od -t x2 hello.py shows 0a0d

[gentoo-user] Can't compile Ethernet bridge

2007-07-28 Thread Florian Philipp
Hi! I tried to add Networking --- Networking options --- M 802.1d Ethernet Bridging to my kernel (gentoo-sources 2.6.20-r8) but I get the following output: $ make modules CHK include/linux/version.h CHK include/linux/utsrelease.h Building modules, stage

Re: [gentoo-user] Can't compile Ethernet bridge

2007-07-28 Thread Sascha Hlusiak
$ make modules Please use just make in 2.6.x kernels. Should work then. Greetings, Sascha signature.asc Description: This is a digitally signed message part.

Re: [gentoo-user] Can't compile Ethernet bridge

2007-07-28 Thread Florian Philipp
Am Samstag 28 Juli 2007 15:24 schrieb Sascha Hlusiak: $ make modules Please use just make in 2.6.x kernels. Should work then. Greetings, Sascha I have to correct myself: Now it compiles but I get the following output: $ modprobe -v bridge insmod

Re: [gentoo-user] Can't compile Ethernet bridge

2007-07-28 Thread Sascha Hlusiak
$ modprobe -v bridge insmod /lib/modules/2.6.20-gentoo-r8/kernel/net/bridge/bridge.ko FATAL: Error inserting bridge (/lib/modules/2.6.20-gentoo-r8/kernel/net/bridge/bridge.ko): Unknown symbol in module, or unknown parameter (see dmesg) $ dmesg bridge: Unknown symbol br_handle_frame_hook

Re: [gentoo-user] Can't compile Ethernet bridge

2007-07-28 Thread Florian Philipp
Am Samstag 28 Juli 2007 15:55 schrieb Sascha Hlusiak: $ modprobe -v bridge insmod /lib/modules/2.6.20-gentoo-r8/kernel/net/bridge/bridge.ko FATAL: Error inserting bridge (/lib/modules/2.6.20-gentoo-r8/kernel/net/bridge/bridge.ko): Unknown symbol in module, or unknown parameter (see

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Greg Lindstrom
Eric Martin: what does ls -l /etc/fstab show? $ ls -l /etc/fstab -rw-r- 1 root root 1434 Nov 29 2006 /etc/fstab Florian Phillip: Please post the output of cat /etc/group | grep $username Returns nothing. When I substitute my username (glindstrom) in it also returns nothing. Arthuro

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Uwe Thiem
On 28 July 2007, Kent Fredric wrote: try a plain old bash script and see if that works, and try this and see if it works: cat testrun.c #include stdio.h int main(int argc, int* argv) { printf(helloworld); } ( press ctrl+d here ) make testrun Without writing a Makefile, make won't

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Uwe Thiem
On 28 July 2007, Greg Lindstrom wrote: $ mount /dev/sda2 on / type ext3 (rw,noatime,acl) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) udev on /dev type tmpfs (rw,nosuid) devpts on /dev/pts type devpts (rw) /dev/sda5 on /var type ext3 (rw,nodev,noatime) /dev/sda6 on /usr type

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Kent Fredric
On 7/29/07, Uwe Thiem [EMAIL PROTECTED] wrote: On 28 July 2007, Kent Fredric wrote: try a plain old bash script and see if that works, and try this and see if it works: cat testrun.c #include stdio.h int main(int argc, int* argv) { printf(helloworld); } ( press ctrl+d here

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Boyd Stephen Smith Jr.
On Saturday 28 July 2007, Kent Fredric [EMAIL PROTECTED] wrote about 'Re: [gentoo-user] Running Scripts': On 7/29/07, Uwe Thiem [EMAIL PROTECTED] wrote: On 28 July 2007, Kent Fredric wrote: try a plain old bash script and see if that works, and try this and see if it works: cat

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Uwe Thiem wrote: Without writing a Makefile, make won't build the program. ;-) Actually, yes. If you have a file called something.c you can simply run: make something and it will compile something.c, link something.o and produce a binary named

Re: [gentoo-user] Running Scripts

2007-07-28 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Uwe Thiem wrote: I am out of ideas - and still a bit puzzled how /usr/bin/env got involved (see original post). Heh, if we had enough trust, I'd remote login to the server and see what's wrong by myself :) - -- Arturo Buanzo Busleiman -

[gentoo-user] Re: Problem with keychain

2007-07-28 Thread Marc Blumentritt
Mike Mazur schrieb: Hi, On 7/28/07, Marc Blumentritt [EMAIL PROTECTED] wrote: I have a problem with keychain. It is set up following the wiki. I start keychain: snip Looking with ssh-add, I see my key: hive ~ # ssh-add -l 1024 dd:f2:12:2a:bc:8a:55:7e:18:43:03:dd:e9:dd:27:4d

[gentoo-user] Linux too damn slow if memory 3GB

2007-07-28 Thread Daniel van Ham Colchete
Hello everyone!!! May be somebody can shed some light here... I'm building a server here with 4GB of RAM memory. The fact is, if I boot with mem=3072M everything goes as fast as it should but I'm not using 1GB of memory. If I don't put the mem option, Linux will see 4GB of memory available but it

[gentoo-user] Re: Running Scripts

2007-07-28 Thread Moshe Kamensky
Hi, * Greg Lindstrom [EMAIL PROTECTED] [27/07/07 12:18]: Hello- I am programming Python (2.4.1) scripts to run on our Gentoo boxes and am having a bit of trouble I was hoping you could help me with. My file, hello.py looks like this: #!/usr/bin/python print 'hello, python' I add

Re: [gentoo-user] Linux too damn slow if memory 3GB

2007-07-28 Thread Tim Allingham
On Sat, 2007-07-28 at 20:28 -0300, Daniel van Ham Colchete wrote: Hello everyone!!! May be somebody can shed some light here... I'm building a server here with 4GB of RAM memory. The fact is, if I boot with mem=3072M everything goes as fast as it should but I'm not using 1GB of memory. If I

Re: [gentoo-user] Linux too damn slow if memory 3GB

2007-07-28 Thread Tim Allingham
On Sun, 2007-07-29 at 09:39 +1000, Tim Allingham wrote: On Sat, 2007-07-28 at 20:28 -0300, Daniel van Ham Colchete wrote: Hello everyone!!! May be somebody can shed some light here... I'm building a server here with 4GB of RAM memory. The fact is, if I boot with mem=3072M everything

[gentoo-user] Rendering problems when updating xorg-server

2007-07-28 Thread Pavel Sanda
hello, i'm trying to update from xorg-server 1.1.1-r5 to 1.2.0-r3, but i run into strange rendering issues in my terminals (both eterm,xterm). there are serious problems to display correctly keyboard cursor on terminal - its position on display is not correspondent with actual position on the

Re: [gentoo-user] Linux too damn slow if memory 3GB

2007-07-28 Thread Stroller
On 29 Jul 2007, at 00:28, Daniel van Ham Colchete wrote: ... The fact is, if I boot with mem=3072M everything goes as fast as it should but I'm not using 1GB of memory. If I don't put the mem option, Linux will see 4GB of memory available but it will be damn slow (really). ... My

Re: [gentoo-user] Linux too damn slow if memory 3GB

2007-07-28 Thread Daniel van Ham Colchete
On 7/28/07, Tim Allingham [EMAIL PROTECTED] wrote: On Sun, 2007-07-29 at 09:39 +1000, Tim Allingham wrote: I don't actually run 4GB of RAM in any of my intel systems, so I can't comment from experience, however my suspicion would be the overhead introduced from PAE, which (at least on

Re: [gentoo-user] Can't get Alsa (mic) to work with my Intel HDA board

2007-07-28 Thread Gabriel Rossetti
Benno Schulenberg wrote: Gabriel Rossetti wrote: I used to have more inputs/outputs to play with in alsamixer, but now all I have are Master, PCM, CD, Mic, Mic Boos, IEC958, and IEC958P. I used to have for instance Front Mic, You might need to pass a different model option during

[gentoo-user] reiserfsprogs

2007-07-28 Thread James
Hello, Were are the docs for the utilities for sys-fs/reiserfsprogs ? I cannot seem to locate any documentation of running fsck or such utilities manually on a reiserfs partition. I want to read about what those utilities are and how they work. James -- [EMAIL PROTECTED] mailing list

Re: [gentoo-user] reiserfsprogs

2007-07-28 Thread Kent Fredric
On 7/29/07, James [EMAIL PROTECTED] wrote: Hello, Were are the docs for the utilities for sys-fs/reiserfsprogs ? I cannot seem to locate any documentation of running fsck or such utilities manually on a reiserfs partition. I want to read about what those utilities are and how they work.

[gentoo-user] Re: reiserfsprogs

2007-07-28 Thread James
Kent Fredric kentfredric at gmail.com writes: qlist sys-fs/reiserfsprogs qlist, very nice... thx, James -- [EMAIL PROTECTED] mailing list

[gentoo-user] Re: Running Scripts

2007-07-28 Thread Moshe Kamensky
Hi, * Greg Lindstrom [EMAIL PROTECTED] [27/07/07 12:18]: Hello- I am programming Python (2.4.1) scripts to run on our Gentoo boxes and am having a bit of trouble I was hoping you could help me with. My file, hello.py looks like this: #!/usr/bin/python print 'hello, python' I add

Re: [gentoo-user] Re: Running Scripts

2007-07-28 Thread Kent Fredric
On 7/29/07, Moshe Kamensky [EMAIL PROTECTED] wrote: Hi, * Greg Lindstrom [EMAIL PROTECTED] [27/07/07 12:18]: Hello- I am programming Python (2.4.1) scripts to run on our Gentoo boxes and am having a bit of trouble I was hoping you could help me with. My file, hello.py looks like