Re: [gentoo-user] configure: error: C compiler cannot create executables help!

2005-03-27 Thread Alexander Puchmayr
Can you compile a simple "Helloworld".cxx?

When I look at the output of gcc-config, I see you have both version 3.3.5 
and 3.4.3 installed. Are you sure these don't interact in some unexpected 
way?

When emerging something, you get a log file 
in /var/tmp/portage//work//configure.log. Have a look at 
it and look for the compiler's errormessage.

Greetings
Alex

Am Montag, 28. März 2005 02:07 schrieb Shaw Vrana:
> I've been reading up on this problem at
> http://forums.gentoo.org/viewtopic-t-27486-postdays-0-postorder-asc-start
>-0.html and bugs.gentoo.org, but I've not yet been successful fixing my
> gcc woes. I believe this began after a portage update.
>
> perhaps useful, maybe not
> [EMAIL PROTECTED] ~ 47]% gcc-config -l
> [1] i686-pc-linux-gnu-3.3.5 *
> [2] i686-pc-linux-gnu-3.3.5-hardened
> [3] i686-pc-linux-gnu-3.3.5-hardenednopie
> [4] i686-pc-linux-gnu-3.3.5-hardenednossp
> [5] i686-pc-linux-gnu-3.4.3
> [6] i686-pc-linux-gnu-3.4.3-hardened
> [7] i686-pc-linux-gnu-3.4.3-hardenednopie
> [8] i686-pc-linux-gnu-3.4.3-hardenednossp
> [EMAIL PROTECTED] ~ 48]% grep CFLAGS /etc/make.conf
> CFLAGS="-O2 -march=pentium4 -pipe -fomit-frame-pointer"
> CXXFLAGS="${CFLAGS}"
>
> I ran fix_libtool_files.sh on 3.4.3, but I still get the error.
> Any ideas?
>
> Thanks,
> Shaw
>
> Calculating world dependencies ...done!
>
> >>> emerge (1 of 9) sys-devel/patch-2.5.9 to /
> >>> md5 src_uri ;-) patch-2.5.9.tar.gz
> >>> Unpacking
>
> source...http://forums.gentoo.org/viewtopic-t-27486-postdays-0-postorder-
>asc-start-0.html
>
> >>> Unpacking patch-2.5.9.tar.gz to /var/tmp/portage/patch-2.5.9/work
> >>> Source unpacked.
>
> configure: WARNING: If you wanted to set the --build type, don't use
> --host. configure: error: C compiler cannot create executables
> make: *** No targets specified and no makefile found.  Stop.
>
> !!! ERROR: sys-devel/patch-2.5.9 failed.
> !!! Function src_compile, Line 38, Exitcode 2
> !!! emake failed
> --
> gentoo-user@gentoo.org mailing list
>
>
> !DSPAM:424751ae853712398315240!

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user][SOLVED] connrate replacement

2005-03-04 Thread Alexander Kirillov
- use "tc" and the QoS-Kernel-Features.
I don't mind recompiling the kernel and would rather use a generic
tool useful for system administration later down the road.
Looks like tc is the way to go.
It gives you a lot of options. It's in the iproute2-package. It has a
little high learning curve, but you can do really interesting things and
even simulate higher latencies. For a good introduction see the Linux
Advanced Routing and Traffic Control HowTo, http://lartc.org
You can use netfilter here, too, to mark the relevant packets.
Eventually I came up with a simple tc config which works for me now
but the actual transfer rates are 10 times higher than I would expect:
tc qdisc add dev lo root handle 1: htb r2q 1
tc class add dev lo parent 1: classid 1:10 htb rate 56kbit ceil 56kbit
tc filter add dev lo protocol ip parent 1: prio 1 handle 10 fw flowid 1:10
HTB FAQ:
Why HTB sharing setup works with eth0 but on lo (loopback) it exhibits weird 
rates ?
Try to execute ifconfig lo mtu 1500 or use parameter  on "tc qdisc add" line.
It is because HTB reserves rate table for 1500 bytes long packets and loopback 
uses 16384 as default.
Except mtu 16400 should be added to the class. Happy now.
Thanks again, Hans. That was quite educational.
Using firewall rules to mark traffic for routing and throttling is cool.
Exactly what I was looking for..
Sasha
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] connrate replacement

2005-03-01 Thread Alexander Kirillov
- use "tc" and the QoS-Kernel-Features.
I don't mind recompiling the kernel and would rather use a generic
tool useful for system administration later down the road.
Looks like tc is the way to go.

It gives you a lot of options. It's in the iproute2-package. It has a
little high learning curve, but you can do really interesting things and
even simulate higher latencies. For a good introduction see the Linux
Advanced Routing and Traffic Control HowTo, http://lartc.org
You can use netfilter here, too, to mark the relevant packets.
Thanks for your help guys,
I'm still labouring through lartc documentation which isn't very easy to 
percieve.
Eventually I came up with a simple tc config which works for me now
but the actual transfer rates are 10 times higher than I would expect:
tc qdisc add dev lo root handle 1: htb r2q 1
tc class add dev lo parent 1: classid 1:10 htb rate 56kbit ceil 56kbit
tc filter add dev lo protocol ip parent 1: prio 1 handle 10 fw flowid 1:10
When I slash the rate to 6kbit I get ~6kbps throughput which is about right for 
dialups.
I'm probably still missing something obvious about the buckets.
Sasha
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] connrate replacement

2005-02-28 Thread Alexander Kirillov
Could you please suggest
something I could use to limit transfer rates
to/from selected ports.
Need to simulate dial-up connections locally.
You can
- use trickle, which is a userspace solution using preloading for glibc's networking 
functions (does work on a per-application base similar to "nice"),
- use netfilter to route relevant connections through a shaper device (which is 
a - AFAIK - experimental kernel feature,
- use "tc" and the QoS-Kernel-Features.
I'd suggest trickle if the other solutions would mean that you'd have to recompile your kernel. It's very easy to use.
Thanks a lot Hans,
I don't mind recompiling the kernel and would rather use a generic tool 
useful for system administration later down the road.
Looks like tc is the way to go.

I have some BSD experience but I'm relatively new to Linux
and probably was looking for traffic shapers in a wrong place.
This netfilter approach you've mentioned. Is it something
different from iptables extensions you have to compile with the kernel?
Sasha
--
gentoo-user@gentoo.org mailing list


[gentoo-user] connrate replacement

2005-02-28 Thread Alexander Kirillov
Hi all,
AFAIK iptables connrate extension isn't available
with 2.6.10 kernels. Could you please suggest
something I could use to limit transfer rates
to/from selected ports.
Need to simulate dial-up connections locally.
Thanks in advance,
Sasha
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] mplayer is broken

2005-02-14 Thread Alexander Kirillov
Have you tried other audio drivers?
oss, alsa, arts?
Well, the colours don't bother much ...
if there wouldn't be the rest ...
... the crash :(
On Sun, 2005-02-13 at 14:57 +0300, Alexander Kirillov wrote:
I did an upgrade world on saturday realizing that gentoo decided to move
some system directories around ... ok, why not. After that i emerged
mplayer. ``gmplayer brings it up in scales of dark blue. I could live
with this, but ...
Have same problem with skin colors on my box in 16 bit color mode.
Looks OK when switched to 24 bit though.
Doesn't bother me much but if you stumble over a solution please
post to the list.

--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] mplayer is broken

2005-02-13 Thread Alexander Kirillov
I did an upgrade world on saturday realizing that gentoo decided to move
some system directories around ... ok, why not. After that i emerged
mplayer. ``gmplayer brings it up in scales of dark blue. I could live
with this, but ...
Have same problem with skin colors on my box in 16 bit color mode.
Looks OK when switched to 24 bit though.
Doesn't bother me much but if you stumble over a solution please
post to the list.
Thanks,
Sasha
--
gentoo-user@gentoo.org mailing list


[gentoo-user] Internal compiler errors in try_split, at emit-rtl.c:3314

2005-02-09 Thread Alexander Skwar
Hi!

Since recently, I'm getting "internal compiler errors", when
I try to compile gcc, perl and possibly other packages, I
suppose.

Here's the output of gcc failing to build:

/var/tmp/portage/gcc-3.4.3.20050110/work/gcc-3.4.3/gcc/hashtable.c: In function 
`approx_sqrt':
/var/tmp/portage/gcc-3.4.3.20050110/work/gcc-3.4.3/gcc/hashtable.c:310: 
interner Compiler-Fehler: in try_split, bei emit-rtl.c:3314
Please submit a full bug report,
with preprocessed source if appropriate.
See http://bugs.gentoo.org/> for instructions.
Preprocessed source stored into 
/var/tmp/portage/gcc-3.4.3.20050110/temp/ccKEjNGC.out file, please attach this 
to your bugreport.
make[2]: *** [hashtable.o] Fehler 1
make[2]: Leaving directory `/var/tmp/portage/gcc-3.4.3.20050110/work/build/gcc'
make[1]: *** [stage1_build] Fehler 2
make[1]: Leaving directory `/var/tmp/portage/gcc-3.4.3.20050110/work/build/gcc'
make: *** [profiledbootstrap] Fehler 2

!!! ERROR: sys-devel/gcc-3.4.3.20050110 failed.
!!! Function gcc_do_make, Line 1086, Exitcode 2
!!! make failed with profiledbootstrap
!!! If you need support, post the topmost build error, NOT this status message.

   ...done!
>>> emerge (1 of 1) sys-devel/gcc-3.4.3.20050110 to /

You can find the preprocessed source at
http://gentoo.phpquadrat.de/~askwar/ccKEjNGC.out



Perl seems to fail with a similiar error, also dying
in "try_split, at emit-rtl.c:3314":

`sh  cflags "optimize='-march=pentium4 -O2 -pipe -fomit-frame-pointer'" 
numeric.o` -fPIC numeric.c
  CCCMD =  gcc -DPERL_CORE -c -D_REENTRANT -D_GNU_SOURCE 
-DTHREADS_HAVE_PIDS -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE
-D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -march=pentium4 -O2 -pipe 
-fomit-frame-pointer  -Wall
numeric.c: In function `S_mulexp10':
numeric.c:815: internal compiler error: in try_split, at emit-rtl.c:3314
Please submit a full bug report,
with preprocessed source if appropriate.
See http://bugs.gentoo.org/> for instructions.
Preprocessed source stored into 
/var/tmp/portage/perl-5.8.6-r2/temp/cc3E0tDE.out file, please attach this to 
your bugreport.
make: *** [numeric.o] Error 1

!!! ERROR: dev-lang/perl-5.8.6-r2 failed.

Preprocessed source at
http://gentoo.phpquadrat.de/~askwar/cc3E0tDE.out



What could be the reason for these problems? I have
CFLAGS="-march=pentium4 -O2 -pipe -fomit-frame-pointer"
and no LDFLAGS.

Thanks a lot for any hints you can provide,

Alexander Skwar
-- 
BOFH Excuse #163:

no "any" key on keyboard
_ÂÂÂ_ÂÂÂ_ÂÂÂ_ÂÂÂ_ 
ÅÅÃâÂÃÃÂÂÂâÂÂâ 
ÂÂ_ÂÂÂ_ÂÂÂ_ÂÂÂ_ÂÂ

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Anyone with Asus A7V333 and USB2.0 working?

2005-02-08 Thread Alexander Puchmayr
Am Montag, 7. Februar 2005 15:32 schrieb Comatose Jones:
> On Mon, 7 Feb 2005 15:03:32 +0100, Jose Gonzalez Gomez
>
> <[EMAIL PROTECTED]> wrote:
> > Hi there,
> >
> > I recently posted about some problems I was having with my USB ports
> > and an ACER memory stick. After doing some tests, I discovered that
> > the stick works perfectly when plugged in a USB 1.1 port (this mobo
> > has both USB1.1 and USB2.0 ports), but fails miserably when plugged in
> > a USB 2.0 port. Before going any further I would like to know if there
> > is anybody out there with this mobo and USB2.0 working, as I have
> > found some threads at VIA Arena forums that seemed to imply that
> > USB2.0 was broken in this mobo.
>
> Works here.

What steps did you take? I have the same MoBo, and the port that should be a 
2.0 Port is acutally a 1.1 port (The uhci-driver grabs all four 
double-slots, the ehci loads and tells it has two ports, but they are 
physically not present).

Is there anything going wrong with the configuration?

Greetings
 Alex

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unresolved Symbols on Nvidia Driver

2005-02-08 Thread Alexander Puchmayr
Am Dienstag, 8. Februar 2005 01:19 schrieb Captain FantastiK:
> Hi
>
> I have nvidia kernel & glx 1.0.6111-r1 and Nvidia GeForce 2 MMX 400. When
> I switch to this driver and exec startx I received the message:
> Unreseolved symbols: Here's the output of /var/log/Xorg.0.log:
>
> ***
> X Window System Version 6.8.0
> Release Date: 8 September 2004
> X Protocol Version 11, Revision 0, Release 6.8
> Build Operating System: Linux 2.6.10-gentoo-r6 i686 [ELF]
> Current Operating System: Linux chiheb-r77rxuz6 2.6.10-gentoo-r6 #1 Thu
> Feb 3 09:40:12 EST 2005 i686
> Build Date: 07 February 2005
>  Before reporting problems, check http://wiki.X.Org
>  to make sure that you have the latest version.
> Module Loader present
> Markers: (--) probed, (**) from config file, (==) default setting,
>  (++) from command line, (!!) notice, (II) informational,
>  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
> (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb  7 18:59:48 2005
> (==) Using config file: "/etc/X11/xorg.conf"
> (==) ServerLayout "Simple Layout"
> (**) |-->Screen "Screen 1" (0)
> (**) |   |-->Monitor "My Monitor"
> (**) |   |-->Device "** NVIDIA (generic)   [nv]"
> (**) |-->Input Device "Mouse1"
> (**) |-->Input Device "Keyboard1"
> (**) FontPath set to
> "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/us
>r/share/fonts/75dpi/,/usr/share/fonts/100dpi/,/usr/share/fonts/local/"
> (**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
> (==) ModulePath set to "/usr/lib/modules"
> (WW) Open APM failed (/dev/apm_bios) (No such file or directory)
> (II) Module ABI versions:
>  X.Org ANSI C Emulation: 0.2
>  X.Org Video Driver: 0.7
>  X.Org XInput driver : 0.4
>  X.Org Server Extension : 0.2
>  X.Org Font Renderer : 0.4
> (II) Loader running on linux
> (II) LoadModule: "bitmap"
> (II) Loading /usr/lib/modules/fonts/libbitmap.so
> (II) Module bitmap: vendor="X.Org Foundation"
>  compiled for 6.8.0, module version = 1.0.0
>  Module class: X.Org Font Renderer
>  ABI class: X.Org Font Renderer, version 0.4
> (II) Loading font Bitmap
> (II) LoadModule: "pcidata"
> (II) Loading /usr/lib/modules/libpcidata.so
> (II) Module pcidata: vendor="X.Org Foundation"
>  compiled for 6.8.0, module version = 1.0.0
>  ABI class: X.Org Video Driver, version 0.7
> Using vt 7
> (--) using VT number 7
>
> (II) PCI: Probing config type using method 1
> (II) PCI: Config type is 1
> (II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
> (II) PCI: PCI scan (all values are in hex)
> (II) PCI: 00:00:0: chip 1039,0650 card 1039,0650 rev 01 class 06,00,00
> hdr 80
> (II) PCI: 00:01:0: chip 1039,0001 card , rev 00 class 06,04,00
> hdr 01
> (II) PCI: 00:02:0: chip 1039,0961 card , rev 10 class 06,01,00
> hdr 80
> (II) PCI: 00:02:1: chip 1039,0016 card , rev 00 class 0c,05,00
> hdr 00
> (II) PCI: 00:02:2: chip 1039,7001 card 1039,7001 rev 07 class 0c,03,10
> hdr 00
> (II) PCI: 00:02:3: chip 1039,7001 card 1039,7001 rev 07 class 0c,03,10
> hdr 00
> (II) PCI: 00:02:5: chip 1039,5513 card 1039,5513 rev d0 class 01,01,80
> hdr 80
> (II) PCI: 00:02:7: chip 1039,7012 card 1458,a002 rev a0 class 04,01,00
> hdr 00
> (II) PCI: 00:0b:0: chip 11c1,044e card 11c1,044c rev 02 class 07,80,00
> hdr 00
> (II) PCI: 00:10:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00
> hdr 00
> (II) PCI: 01:00:0: chip 10de,0110 card , rev b2 class 03,00,00
> hdr 00
> (II) PCI: End of PCI scan
> (II) Host-to-PCI bridge:
> (II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
> (II) Bus 0 I/O range:
>  [0] -1 0 0x - 0x (0x1) IX[B]
> (II) Bus 0 non-prefetchable memory range:
>  [0] -1 0 0x - 0x (0x0) MX[B]
> (II) Bus 0 prefetchable memory range:
>  [0] -1 0 0x - 0x (0x0) MX[B]
> (II) PCI-to-PCI bridge:
> (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000e (VGA_EN is set)
> (II) Bus 1 non-prefetchable memory range:
>  [0] -1 0 0xec00 - 0xedff (0x200) MX[B]
> (II) Bus 1 prefetchable memory range:
>  [0] -1 0 0xe000 - 0xe7ff (0x800) MX[B]
> (II) PCI-to-ISA bridge:
> (II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is
> set) (--) PCI:*(1:0:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev
> 178, Mem @ 0xec00/24, 0xe000/27
> (II) Addressable bus resource ranges are
>  [0] -1 0 0x - 0x (0x0) MX[B]
>  [1] -1 0 0x - 0x (0x1) IX[B]
> (II) OS-reported resource ranges:
>  [0] -1 0 0xffe0 - 0x (0x20) MX[B](B)
>  [1] -1 0 0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
>  [2] -1 0 0x000f - 0x000f (0x1) MX[B]
>  [3] -1 0 0x000c - 0x000e (0x3) MX[B]
>  [4] -1 0 0x - 0x0009 (0xa) MX[B]
>  [5] -1 0 0x - 0x (0x1) IX[B]
>  [6] -1 0 0x - 0x00ff (0x100) IX[B]
> (II) PCI Memory resource overlap reduced 0xe800 from 0xebff to
> 0xe7ff
> (II) Active PCI resourc

Re: [gentoo-user] openldap

2005-02-08 Thread Alexander Zubkov
I've found good presentation on LDAP yesterday.
I think it'll be interesting to You:
ftp://kalamazoolinux.org/pub/pdf/ldapv3.pdf

Alexander Zubkov
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] openldap

2005-02-07 Thread Alexander Zubkov
im very new to openldap so im not quite sure how to set it up, i can
just emerge it and then start adding people? and also, is there a file i
can edit and put all of them in there or do i have to run that command
every time i want to add someone? also what about a gui frontend for
adding people? is there one? perhaps that i can access remotely as well?
sorry for all the questions.
You can use commands or something else - it's your choise. You can try 
emerge ldapbrowser for GUI.
You need to authenticate in LDAP to modify entries because You need no 
anybody able to do this. As MySQL uses its database to differentiate 
access, so LDAP does - you need to authenticate with LDAP server to work 
with it, but You can use directory for whatever You want/can.
PS. What did You mean "global address list"? Address of what?


Alexander Zubkov
--
gentoo-user@gentoo.org mailing list


[gentoo-user] sys-libs/pam-0.77-r6 compile problem

2005-02-06 Thread Alexander Puchmayr
Hi there!

During a emerge -u world I encountered a build problem with pam-0.77-r6:

gcc -Wall -Wwrite-strings   -Wpointer-arith -Wcast-qual -Wcast-align
-Wstrict-prototypes -Wmissing-prototypes   -Wnested-externs -Winline 
-Wshadow -Dlinux -march=pentium3 -O3 -pipe -fomit-frame-pointer 
-mfpmath=sse -msse -mmmx -funroll-all-loops -fPIC 
-I/var/tmp/portage/pam-0.77-r6/work/Linux-PAM-0.77/include  -I./include 
-I/var/tmp/portage/pam-0.77-r6/work/Linux-PAM-0.77/libpam/include 
-I/var/tmp/portage/pam-0.77-r6/work/Linux-PAM-0.77 
-I/var/tmp/portage/pam-0.77-r6/work/Linux-PAM-0.77/libpamc/include  
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -D_GNU_SOURCE 
-DLOCKDIR=\"/var/run/console\" -I../pammodutil/include  -o 
pam_console_apply pam_console_apply.c -Wl,-Bstatic //usr/lib/libglib.a 
-L../pammodutil -lpammodutil -Wl,-Bdynamic ../../libpam/libpam.so -lc
In file included from pam_console_apply.c:5:
../../_pam_aconf.h:28:1: warning: "_GNU_SOURCE" redefined
:5:1: warning: this is the location of the previous definition
In file included from pam_console_apply.c:7:
/usr/include/glib-1.2/glib.h:1697: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:1703: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:1705: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:1719: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:1721: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:1745: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:1747: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
/usr/include/glib-1.2/glib.h:2319: warning: declaration of `index' shadows a 
global declaration
:0: warning: shadowed declaration is here
pam_console_apply.c: In function `main':
pam_console_apply.c:107: warning: assignment discards qualifiers from 
pointer target type
In file included from pam_console_apply.c:126:
config.tab.c: At top level:
config.tab.c:785: warning: static declaration for `_pc_yyparse' follows 
non-static
config.y: In function `_pc_yyparse':
config.y:104: warning: char format, void arg (arg 4)
config.tab.c:1224: warning: passing arg 1 of `_pc_yyerror' discards 
qualifiers from pointer target type
config.tab.c:1342: warning: passing arg 1 of `_pc_yyerror' discards 
qualifiers from pointer target type
config.lex.c: At top level:
config.y:327: warning: `set_permissions_single' defined but not used
config.y:367: warning: `reset_permissions_single' defined but not used
config.lex.c:1432: warning: `_pc_yy_delete_buffer' defined but not used
config.lex.c:1549: warning: `_pc_yy_scan_string' defined but not used
config.lex.c:1227: warning: `yyunput' defined but not used
config.y:473: warning: `do_yyerror' defined but not used
//usr/lib/libglib.a(gstrfuncs.o)(.text+0x7ce): In function `g_strdown':
: undefined reference to `__ctype_tolower'
//usr/lib/libglib.a(gstrfuncs.o)(.text+0x85a): In function `g_strup':
: undefined reference to `__ctype_toupper'
//usr/lib/libglib.a(gstrfuncs.o)(.text+0x12cc): In function `g_strchug':
: undefined reference to `__ctype_b'
//usr/lib/libglib.a(gstrfuncs.o)(.text+0x13a7): In function `g_strchomp':
: undefined reference to `__ctype_b'
//usr/lib/libglib.a(gstring.o)(.text+0x603): In function `g_string_down':
: undefined reference to `__ctype_tolower'
//usr/lib/libglib.a(gstring.o)(.text+0x693): In function `g_string_up':
: undefined reference to `__ctype_toupper'
collect2: ld returned 1 exit status
make[2]: *** [pam_console_apply] Error 1
make[2]: Leaving directory 
`/var/tmp/portage/pam-0.77-r6/work/Linux-PAM-0.77/modules/pam_console'
make[1]: *** [all] Error 1
make[1]: Leaving directory 
`/var/tmp/portage/pam-0.77-r6/work/Linux-PAM-0.77/modules'
make: *** [modules] Error 2

!!! ERROR: sys-libs/pam-0.77-r6 failed.
!!! Function src_compile, Line 209, Exitcode 2
!!! PAM build failed
!!! If you need support, post the topmost build error, NOT this status 
message.


Does anyone have some suggestions how to fix this?

Thanks
 Alex

--
gentoo-user@gentoo.org mailing list



[gentoo-user] /etc/filesystems is not considered when probing "auto" filesystemtype

2005-02-01 Thread Alexander Skwar
Hi!

In my /etc/fstab, I added the following line:

/dev/SigmaTel /mnt/SigmaTel auto defaults,noauto,users 0 0

The "mount" manpage says:

|ÂIfÂnoÂ-tÂoptionÂisÂgiven,ÂorÂifÂÂtheÂÂautoÂÂtypeÂÂisÂÂspecified,
|ÂmountÂwillÂtryÂtoÂguessÂtheÂdesiredÂtype.ÂÂIfÂmountÂwasÂcompiled
|ÂwithÂtheÂblkidÂlibrary,ÂtheÂguessingÂisÂdoneÂÂbyÂÂthisÂÂlibrary.
|ÂOtherwise,ÂÂmountÂÂguessesÂÂitselfÂbyÂprobingÂtheÂsuperblock;Âif
|ÂthatÂdoesÂnotÂturnÂupÂanythingÂthatÂlooksÂfamiliar,ÂÂmountÂÂwill
|ÂtryÂÂtoÂÂreadÂÂtheÂÂfileÂÂ/etc/filesystems,Âor,ÂifÂthatÂdoesÂnot
|Âexist,Â/proc/filesystems.ÂÂAllÂofÂtheÂÂfilesystemÂÂtypesÂÂlisted
|ÂthereÂÂwillÂÂbeÂtried,ÂexceptÂforÂthoseÂthatÂareÂlabeledÂ"nodev"
|Â(e.g.,Âdevpts,ÂprocÂandÂnfs).ÂÂIfÂÂ/etc/filesystemsÂÂendsÂÂinÂÂa
|ÂlineÂÂwithÂÂaÂÂsingleÂÂ*Âonly,ÂmountÂwillÂreadÂ/proc/filesystems
|Âafterwards.

Because of that, I set my /etc/filesystems to contain *only*
the following line:
vfat

Now I mounted "/dev/SigmaTel". I expected, that the "vfat"
filesystemtype be used, but:

[08:29:46 [EMAIL PROTECTED]:~] $ LC_ALL=C mount -v /dev/SigmaTel
mount: you didn't specify a filesystem type for /dev/SigmaTel
   I will try type msdos
/dev/scsi/host1/bus0/target0/lun0/part1 on /mnt/SigmaTel type msdos 
(rw,noexec,nosuid,nodev)

Why's that? Why did the "msdos" filesystem get chosen? When 
I mount the device "manually", I can (successfully) use the
"vfat" filesystem.

[08:29:52 [EMAIL PROTECTED]:/etc/udev/rules.d] $ mount --version
mount: mount-2.12p

[08:30:39 [EMAIL PROTECTED]:/etc/udev/rules.d] $ uname -a
Linux exp01 2.6.8.1-ck9 #2 Fri Oct 8 11:45:40 CEST 2004 i686 Intel(R) 
Pentium(R) 4 CPU 1.80GHz GenuineIntel GNU/Linux

sys-fs/udev-050

Thanks a lot,

Alexander Skwar
-- 
 A new chef from India was fired a week after starting the job.  He
kept favoring curry.
_ÂÂÂ_ÂÂÂ_ÂÂÂ_ÂÂÂ_ 
ÅÅÃâÂÃÃÂÂÂâÂÂâ 
ÂÂ_ÂÂÂ_ÂÂÂ_ÂÂÂ_ÂÂ




--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Cannot find library while emerging.

2005-01-19 Thread Alexander Kirillov
I have been getting this error while trying to emerge some items. Not
all of the thing I have tried to emerged have been affected by this.
Some of my stuff has installed with no problems, while others error out.
Any ideas?
libtool: link: cannot find the library
`/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la'
# fix_libtool_files.sh 3.3.4
http://www.gentoo-wiki.com/HOWTO_Migrate_to_GCC_3.4#Trouble_Shooting
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] Warnings on system startup

2005-01-19 Thread Alexander Kirillov
Sometimes I get warnings on system startup
when caching service dependencies. Something like
ln: creating symlink `/var/lib/init.d/started/checkroot` to 
`/etc/init.d/checkroot`: File exists or Read-only filesystem
or similar warnings for other services.
What's the problem here? It seems to be totally harmless
but quite irritating nonetheless.

Check the contents of your /etc/fstab, especially the 4th field
which determines how your partitions are mounted (read-only, etc etc)

I only have one partition for root and I'm sure it's rw.
The above warnings probably indicate that root hasn't
been remounted rw yet during system startup but why?
Does it have something to do with udev?
But you're ignoring one half of the possible causes:
File exists *or* Read-only filesystem
Maybe the probem is that the file (symlink) (pre-)exists, when it 
should/need not (since it is apparently created during the boot process)?
It's either File exists or Read-only filesystem.
It may be File exists for checkroot
and Read-only filesystem for hostname.
The list of services may vary from time to time.
And it doesn't happen on *each* reboot.
If the system shuts down cleanly /var/lib/init.d/started should be 
empty. Checked this a couple of times booting from livecd.
I wouldn't mind these File exists warnings after system crash.
But it has to happen yet.
Read-only filesystem shouldn't be there either 'cause
service caching should happen way after the root is remounted rw.
I can only think of checkroot service failing to remount the root rw
or something.
These irritating messages are probably the only problem I have with my 
Gentoo box. And as it's a gateway and db server for my home network
I'd really like to find a reasonable explanation.

All suggestions are welcome.
# rc-update show
   alsasound | boot
 apache2 |  default
 apcupsd |  default
bootmisc | boot
 checkfs | boot
   checkroot | boot
   clock | boot
coldplug |
 consolefont | boot
 crypto-loop |
   cupsd |
dhcp |  default
dhcrelay |
  domainname |  default
famd |  default
festival |  default
gkrellmd |
 gpm |  default
halt |
  hdparm |
hostname | boot
 hotplug | boot
   ip6tables |
iptables | boot
 keymaps | boot
lisa |
   local |  default nonetwork
  localmount | boot
 metalog |  default
 modules | boot
  monopd |
   mysql |  default
   named |  default
net.eth0 |  default
  net.lo | boot
netmount |  default
net.ppp0 |  default
 nfs |
nfsmount |
nscd |
  ntp-client |
ntpd |
 numlock |
 portmap |  default
 reslisa |
   rmnologin | boot
  rsyncd |
   samba |
sendmail |  default
  serial | boot
   speech-dispatcher |  default
  splash |
sshd |  default
 urandom | boot
  vixie-cron |  default
  vmware |  default
 xdm |  default
 xfs |
  xinetd |  default
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] Warnings on system startup

2005-01-19 Thread Alexander Kirillov
Sometimes I get warnings on system startup
when caching service dependencies. Something like
ln: creating symlink `/var/lib/init.d/started/checkroot` to 
`/etc/init.d/checkroot`: File exists or Read-only filesystem
or similar warnings for other services.
What's the problem here? It seems to be totally harmless
but quite irritating nonetheless.
Check the contents of your /etc/fstab, especially the 4th field
which determines how your partitions are mounted (read-only, etc etc)
I only have one partition for root and I'm sure it's rw.
The above warnings probably indicate that root hasn't
been remounted rw yet during system startup but why?
Does it have something to do with udev?
--
gentoo-user@gentoo.org mailing list


[gentoo-user] Warnings on system startup

2005-01-18 Thread Alexander Kirillov
Hi,
Sometimes I get warnings on system startup
when caching service dependencies. Something like
ln: creating symlink `/var/lib/init.d/started/checkroot` to 
`/etc/init.d/checkroot`: File exists or Read-only filesystem
or similar warnings for other services.
What's the problem here? It seems to be totally harmless
but quite irritating nonetheless.
Thank you,
Sasha

--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] x11-libs/gtk+-2.4.14 emerge problem?

2005-01-13 Thread Alexander Kirillov
im having problems emerging -uD world, it keeps getting hung up
on this file:
x11-libs/gtk+-2.4.14
grep: /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la: No
such file or directory
$ fix_libtool_files.sh 3.3.4
There's been a long thread on the subject recently.
--
gentoo-user@gentoo.org mailing list


[gentoo-user] use flags & doc formats

2005-01-13 Thread Alexander Kirillov
Hi,
I've added doc to dev-util/cvs flags to pull up cvs manual
and got it in html, pdf and ps formats.
Can I only select the formats I need somehow?
Thanks,
Sasha
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] genkernel enhancements?

2005-01-08 Thread Alexander Kirillov
Other disturbing thing is persistive usage of /devfs which
is marked OBSOLETE in 2.6 kenels. Using --udev does not help at all thou 
udevd is loaded but if I put a RC_DEVICES="udev" in /etc/conf.d/rc on boot 
system states that i miss something for udev support... (I've emerged 
coldplug and hotplug)
Have you emerged udev?
Switching to udev is described in some detail in
http://www.gentoo.org/doc/en/udev-guide.xml
I would only suggest to leave devfs support compiled into the kernel
and disable it later on via kernel parameters.
I didn't and ended up with a kernel which couldn't mount my root:)
Cheers,
Sasha
--
gentoo-user@gentoo.org mailing list


[gentoo-user] Firefox Java enabled.

2005-01-07 Thread Alexander
Hello friends,
I have just compiled mozilla-firefox-1.0 with java use flag set. But 
even after that I cannot run java applets like bank login systems.

So I tried to manually install java run-time, using j2re-1.4.6 from Sun.
When I emerge it, I get an error saying it is not a suficient java VM, 
but isn't it meant to used alone?

What do I need to do for mozilla-firefox run java?
Alexander
Computing Science - UFRJ
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] XORG keybord konfiguration

2005-01-07 Thread Alexander Puchmayr
Am Donnerstag, 6. Januar 2005 13:52 schrieb Jan Callewaert:
> * Alexander Puchmayr <[EMAIL PROTECTED]> [2005-01-06 13:26:44 
+0100]:
> > Am Donnerstag, 6. Januar 2005 12:35 schrieb Bill Roberts:
> > > On 11:11 Thu 06 Jan , Alexander Puchmayr wrote:
> > > > Hi there!
> > > >
> > > > After moving from xfree86 to xorg-x11 I have a serious problem with
> > > > my keyboard.
> > > >
> > > > The problem is, that my notebook doesn't seem to have a keyboard
> > > > that is 100% compatible with a normal german one. Inparticular, the
> > > > less/greater key is on a different position and has a different
> > > > keycode (106 instead of 94 in  the "standard" one).
> > > >
> > > > Under xfree, it was sufficient to change
> > > > /etc/X11/xkb/keycodes/xfree86 and redefine LSGT to 106, but this
> > > > doesn't seem to work under xorg (I copied the xkb/keycodes/xfree86
> > > > file from the old version)
> > > >
> > > > What do I have to do to fix this?
> > >
> > > Alex
> > >
> > > xorg-x11 requires a new keyboard driver "kbd" in "xorg.conf", as
> > > below:
> > >
> > > Section "InputDevice"
> > > Identifier  "Keyboard0"
> > >  Driver  "kbd"
> > >  Option  "XkbModel"  "pc104"
> > >  Option  "XkbLayout" "us"
> > > EndSection
> > >
> > > Could that be the problem?
> >
> > MY xorg.conf looks like this
> >
> > Section "InputDevice"
> > Identifier  "Keyboard0"
> > Driver  "kbd"
> > Option  "XkbModel" "pc104"
> > Option  "XkbLayout" "de"
> > Option  "XkbVariant" "nodeadkeys"
> > Option  "XkbRules" "xfree86"
> > EndSection
> >
> > Greetings
> >  Alex
>
> Remove the XkbRules, they aren't needed anymore for xorg
>
The setup tool seems to remove it automatically whe upgrading from xree4.3 
to xorg-x11. Since it didn't work, I noticed this difference and added it 
-- without success.

OK, I removed the line and now I am at the same point as before :-(

Greetings
 Alex

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] XORG keybord konfiguration

2005-01-07 Thread Alexander Puchmayr
Am Donnerstag, 6. Januar 2005 14:04 schrieb Bill Roberts:
> On 13:26 Thu 06 Jan , Alexander Puchmayr wrote:
> > Am Donnerstag, 6. Januar 2005 12:35 schrieb Bill Roberts:
> > > On 11:11 Thu 06 Jan , Alexander Puchmayr wrote:
> > > > Hi there!
> > > >
> > > > After moving from xfree86 to xorg-x11 I have a serious problem with
> > > > my keyboard.
> > > >
> > > > The problem is, that my notebook doesn't seem to have a keyboard
> > > > that is 100% compatible with a normal german one. Inparticular, the
> > > > less/greater key is on a different position and has a different
> > > > keycode (106 instead of 94 in  the "standard" one).
> > > >
> > > > Under xfree, it was sufficient to change
> > > > /etc/X11/xkb/keycodes/xfree86 and redefine LSGT to 106, but this
> > > > doesn't seem to work under xorg (I copied the xkb/keycodes/xfree86
> > > > file from the old version)
> > > >
> > > > What do I have to do to fix this?
> > >
> > > Alex
> > >
> > > xorg-x11 requires a new keyboard driver "kbd" in "xorg.conf", as
> > > below:
> > >
> > > Section "InputDevice"
> > > Identifier  "Keyboard0"
> > >  Driver  "kbd"
> > >  Option  "XkbModel"  "pc104"
> > >  Option  "XkbLayout" "us"
> > > EndSection
> > >
> > > Could that be the problem?
> >
> > MY xorg.conf looks like this
> >
> > Section "InputDevice"
> > Identifier  "Keyboard0"
> > Driver  "kbd"
> > Option  "XkbModel" "pc104"
> > Option  "XkbLayout" "de"
> > Option  "XkbVariant" "nodeadkeys"
> > Option  "XkbRules" "xfree86"
> > EndSection
>
> Alex
>
> You have the right driver. Do you find anything interesting when you
> "grep WW" or "grep EE" the log "/var/log/Xorg.0.log".
>

No, nothing having to do with keyboard, symbols, keymaps, etc.

Greetings,
 Alex

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] XORG keybord konfiguration

2005-01-06 Thread Alexander Puchmayr
Am Donnerstag, 6. Januar 2005 12:35 schrieb Bill Roberts:
> On 11:11 Thu 06 Jan , Alexander Puchmayr wrote:
> > Hi there!
> >
> > After moving from xfree86 to xorg-x11 I have a serious problem with my
> > keyboard.
> >
> > The problem is, that my notebook doesn't seem to have a keyboard that
> > is 100% compatible with a normal german one. Inparticular, the
> > less/greater key is on a different position and has a different keycode
> > (106 instead of 94 in  the "standard" one).
> >
> > Under xfree, it was sufficient to change /etc/X11/xkb/keycodes/xfree86
> > and redefine LSGT to 106, but this doesn't seem to work under xorg (I
> > copied the xkb/keycodes/xfree86 file from the old version)
> >
> > What do I have to do to fix this?
>
> Alex
>
> xorg-x11 requires a new keyboard driver "kbd" in "xorg.conf", as below:
>
> Section "InputDevice"
> Identifier  "Keyboard0"
>  Driver  "kbd"
>  Option  "XkbModel"  "pc104"
>  Option  "XkbLayout" "us"
> EndSection
>
> Could that be the problem?
>

MY xorg.conf looks like this

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "kbd"
Option  "XkbModel" "pc104"
Option  "XkbLayout" "de"
Option  "XkbVariant" "nodeadkeys"
Option  "XkbRules" "xfree86"
EndSection

Greetings
 Alex

--
gentoo-user@gentoo.org mailing list



[gentoo-user] XORG keybord konfiguration

2005-01-06 Thread Alexander Puchmayr
Hi there!

After moving from xfree86 to xorg-x11 I have a serious problem with my 
keyboard.

The problem is, that my notebook doesn't seem to have a keyboard that is 
100% compatible with a normal german one. Inparticular, the less/greater 
key is on a different position and has a different keycode (106 instead of 
94 in  the "standard" one).

Under xfree, it was sufficient to change /etc/X11/xkb/keycodes/xfree86 and 
redefine LSGT to 106, but this doesn't seem to work under xorg (I copied 
the xkb/keycodes/xfree86 file from the old version)

What do I have to do to fix this?

Thanks in advance for responses
 Alex Puchmayr

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] stats program

2005-01-05 Thread Alexander
Dont know if something like this exist.
But I think its easy to do with php or perl.
The approach I would use is reading the log files, searching for the 
correct pattern then save the found info in a database server. Another 
script would read this info and print it to the website.

What do you think?
Alexander
Nick Smith wrote:
i think this might have been touched on before, but i am looking
for a program that will graph the statistics of my server like
how many http/mail/ftp/ssh/whatever hits per
hour/day/week/month, and graph them to a website? does something
like this exsist to where it just works out of the box with
little configuration and i dont have to write any code or patch
it to get it to work? i already have acid running and it does
graph the output so that should already be set up, i just need a
stats program i would think.  any ideas/suggestions?
thanks
nick
--
Nick Smith a.k.a. Computer Nick
Web - http://www.computernick.com
Email - [EMAIL PROTECTED]
--

--
gentoo-user@gentoo.org mailing list

 


--
gentoo-user@gentoo.org mailing list


[gentoo-user] KDE-Apps under KDE3.2

2004-02-15 Thread Alexander Puchmayr
Hi folks!

After upgrading to kde-3.2 and qt-3.3 I cannot emerge any kde-specific 
program anymore. The configure script fails and complains about missing 
kdelibs, although kde-libs 3.2.0 and 3.1.5 are installed.

Whats wrong?

Thanks in advance
Alex Puchmayr


PS: Output:

zeus # emerge -u kdesdk
Calculating dependencies ...done!
>>> emerge (1 of 1) kde-base/kdesdk-3.2.0 to /
>>> md5 src_uri ;-) kdesdk-3.2.0.tar.bz2
>>> Unpacking source...
>>> Unpacking kdesdk-3.2.0.tar.bz2 to /var/tmp/portage/kdesdk-3.2.0/work
>>> Source unpacked.
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
[...]
checking if Qt needs -ljpeg... no
checking for rpath... yes
checking for KDE... libraries /usr/kde/3.2/lib, headers /usr/kde/3.2/include
checking if UIC has KDE plugins available... no
configure: error: you need to install kdelibs first.
died running ./configure, kde_src_compile:configure
 *
 * Your KDE program installation died while running the configure script
 *

!!! ERROR: kde-base/kdesdk-3.2.0 failed.
!!! Function configure_die, Line 170, Exitcode 0
!!! (no error message)


-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] KDE 3.2 : simple question

2004-02-15 Thread Alexander Puchmayr
On Wednesday 11 February 2004 08:45, [EMAIL PROTECTED] wrote:
> this is rather elementary, but i need to learn.
>
> when i ask 'emerge -p kde' (to get the new 3.2.0 ), it tells me :
>
>   [blocks B ] 
> but when i ask 'emerge -p kdelibs' or 'emerge -p qt', i get the same.
> 'man emerge' says such conflicting pkgs may not need both to be emerged.
>
> in fact, there's no sign of 3.1.4 in  /usr/portage/distfiles
> & 'emerge -p unmerge kdelibs' gives :
>
>   These are the packages that I would unmerge:
>   kde-base/kdelibs
>   selected: 3.1.3-r1
>
> ie the version i've been using from my install'n CD .
>
> 'esearch qt' tells me i have 3.1.2-r4 installed.
>
> is there possibly something wrong w the ebuild ?

The new QT is incompatible with kde <=3.1.4. 
If you look inside the ebuild for qt, you see that kdelibs < 3.1.4 blocks.

You will need to upgrade your kde-3.1-Slot to at least 3.1.4.

Best wishes and happy compiling ;-)

Alex Puchmayr
-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] [gnump3d] Problem starting the daemon

2004-02-13 Thread Alexander Williams
[EMAIL PROTECTED]:

  After  doing  the  most recent emerge update, I went to restart gnump3d,
  and received only an error message for my trouble:

gundam init.d # start-stop-daemon --start --exec /usr/bin/gnump3d2 --
--background The plugin directory you've chosen
'/usr/lib/perl5/5.8.0/gnump3d/plugins' doesn't exist

  Is  this  the  result  of  a known problem with extant perl utilities or
  something  more  sinister?  The  directory, in fact, does *not* exist --
  should it? If so, why wasn't it created?

-- 
Alexander Williams ([EMAIL PROTECTED])

  "You are a devil!" she sobbed.
  "Not I!" he laughed. "I was born on this planet long ago. Once, I was
a common man, nor have I lost all human attributes in the numberless
aeons of my adeptship. A human steeped in the dark arts is greater
than a devil."
-- RE Howard, The People of the Black Circle


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Synaptics touchpad, kernel 2.6, XFree 3.3

2004-02-12 Thread Mathew L Alexander
I too am having problems, I'm able to use the mouse but I can't double
tap the pad and the cursor select the item. I have to use the buttons :(
Any ideas?





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


Re: [gentoo-user] What doesnt work with 2.6 ?

2004-02-04 Thread Alexander Klink
Hi,

On Wed, Feb 04, 2004 at 01:17:32AM +0100, Arne Vogel wrote:
> Well, 3D-Hardware-Acceleration will not work until NVIDIA provides an 
> updated driver.
Hmmm, weird, I downloaded the latest driver from the NVIDIA site and
it seems to work quite well using 2.6.1

> Apart from that, the kernel-included "nv" driver seems 
> to work without problems (tested on GeForce 5200FX).
Not for me, somehow 2.6.1 and nv seemed to have some problems (messed up
graphics when starting X)

> experience problems. The system responsitivity under heavy I/O load 
> ("tar xjf"...) was greatly improved, so personally I hope these 2 things 
> that prevent me from switching, non-working Hardware OpenGL and ADSL, 
> are fixed soon...
Is kernel pppoe that much better performance-wise? I still run the
old system on my router, mainly out of lazyness ...

Another thing I noticed was broken in 2.6.1 on my Debian machine was
the IHC dhcp server - it complained because it was compiled with a 2.4
kernel, a simple recompile solved the problem, though.

Greetings,
Alex

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] RootCommand in blackbox

2004-01-31 Thread Alexander Futasz
On Sat, 31 Jan 2004 12:34:31 -0500, Andrey Kartashov wrote:
> > > On Sat, Jan 31, 2004 at 12:51:42AM -0500, Andrey Kartashov wrote:
> > > > I'm using blackbox wm and have noticed that the styles don't set
> > > > the root window background because the feature is disabled by
> > > > the 
> > > > 
> > > > epatch ${FILESDIR}/disable_rootcommand.patch
> > > > 
> > > > The warning message says:
> > > > ewarn "RootCommand is now DISABLED to close a large"
> > > > ewarn "security hole."

> IF I were to download random 'style' off the web and apply it, then it
> could be dangerous if someone put a malicious command in.

I'm pretty sure this is the only reason why it is patched out.

> I trust that
> the stuff I get when I 'emerge' package is not going to screw me up.
> When on the other hand I come across some other 'useful' script on
> someone's web page, I read it first before I execute it.

Just because you do that, doesn't mean everybody else does as well.
 
> I would be perfectly happy if there were a 'USE' flag that turns this
> 'RootCommand' on. This way one would be forced to read about it before
> enabling it and thus learn what the consequences are.

Yeah maybe. By the way, may I suggest you openbox (version 3 and up)
instead of blackbox? It has more deps and the themefile format isn't
compatible to blackbox anymore, but it's pretty fast and looks pretty
similiar to bb AND conforms to freedesktop.org standards. It doesn't
have a RootCommand though. :P If you try it, try obconf as well, to
configure the wm.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] lock screen

2004-01-29 Thread Alexander Epifanov
xlockmore packet can help you,
with xlock command.

On 17:13 Thu 29 Jan , Koala wrote:
> Please can someone on this list suggest me a tool to lock my screen 
> (with enlighenment).
> Attention!!! I need a tool that does not depend from KDE and GNOME.
> I do not want install them on my computer for space problems.
> 
> Bye
> 
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
Gentoo Linux http://www.gentoo.org

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: linux in kiosk mode?

2004-01-15 Thread Alexander Rink
On Thursday 15 January 2004 08:40, Michael Wever wrote:
> On Thu, 15 Jan 2004 09:43:50 +0200, raptor wrote:
> > hi,
> >
> > Could someone point me to a place where I can read how to make my Linux
> > work in kiosk mode.. what I mean, I want one program to take over the
> > screen and nothing else be available to the user (i dont need it to be
> > secure just impposible to be closed with the normal keys..etc.) Also I
> > want to hide the whole boot secuence plus LILO/GRUB etc... an possibly
> > place my own picture. i.e. power-up the comp, a image on the full screen
> > show (welcome or something).. linux boot behind the scenes when loaded
> > the program is executed which takes over the screen..
> >
> > tia
>
> If all you want is a browser in kiosk mode than I do believe
> MozillaFirebird has an extension to do this.
> Not sure about all the boot stuff or for other programs..
> Mick.
>
>
> --
> [EMAIL PROTECTED] mailing list
You should take a look at the bootsplash package. You can customize the 
included pictures and get a nice "shop picture" when you boot your system.

Greetings
Alex

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] what "F" mean ? :")

2004-01-14 Thread Alexander Epifanov
On 10:11 Wed 14 Jan , raptor wrote:

This packege requires to download the sources manually.

If you will run $ emerge halflife-server, the output gives you links where you can 
download the sources, for example:
 * Please goto fileplanet and d/l 
 * http://www.fileplanet.com/files/5/58368.shtml
 * Then download boffix_v3.tar.gz from here:
 * http://miklos.clanhost.dk/boffix_v3.tar.gz

Download them, and put in /usr/portage/distfiles.

> What "F" mean when doing "emerge -p"
> 
> 
> # emerge -v -p halflife-server
>  
> These are the packages that I would merge, in order:
>  
> Calculating dependencies ...done!
> [ebuild  N F  ] games-server/halflife-server-3.1.1.0  -dedicated
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
Gentoo Linux http://www.gentoo.org

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] any translation work program for gnome in portage?

2004-01-08 Thread Alexander Futasz
On Thu, 8 Jan 2004 15:57:33 -0500 (EST), [EMAIL PROTECTED] wrote:
> I am workin' on translation job of po files.
> I'd prefer to use gnome environment.
> Is there any program for po files in gnome? (in portage tree)

# emerge -s gtranslator

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] How do I share the soundcard?

2004-01-06 Thread Alexander Futasz
On Tue, 6 Jan 2004 01:41:21 +0100, Hemmann, Volker Armin wrote:
> > Now the obvious question is - How do I share the soundcard in a way
> > that I don' t have to kill some processes in order to make others
> > work?

> you need alsa.
> Kill artsd, alsa-capable apps should be able to use the dmix plugin
> like this: alsaplayer -d plug:dmix
> Other apps have other ways to tell them, which alsa-device/plugin
> should be used.

Or you can make the default alsa device use dmix with ~/.asoundrc
(attached).

> I started 5 instances of alsaplayer that way, with opengl-plugins and
> without any skips

Lucky you. dmix is unusable for me. Q3A stays silent and even if I only
run rhythmbox through dmix it will skip. I have a simple VIA VT82C686
AC97 Audio Controller.
pcm.!default {
type plug
slave.pcm "dmix"
}

pcm.dsp0 pcm.default

ctl.mixer0 {
type hw
card 0
}

--
[EMAIL PROTECTED] mailing list

[gentoo-user] How disable usb disk caching to ram.

2004-01-05 Thread Alexander Netopier Leonov
Hello.
When i copy some data to my usbdisk, system first cache these data to 
ram and afther them he really copy data to disk. How it's possible to 
disable this caching?

Thanks a lot.

ANL

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Gentoo installation: compile fails

2003-12-29 Thread Alexander Puchmayr
On Monday 29 December 2003 15:17, Michael Spohn wrote:
> On Mon, 2003-12-29 at 13:30, Alexander Puchmayr wrote:
> > On Monday 29 December 2003 12:21, Michael Spohn wrote:
> > > Hi,
> > >
> > > I tried to install Gentoo from stage 1 2 and 3 foolowing the very
> > > good installation docs but in all cases different programs refuse to
> > > compile with more or less the same error message:
> > >
> > > {Standard Input} Assembler messages
> > > {Standard Input} Error: Suffix or operands invalid for `movd'
> > >
> > > When starting with stage1 it was gettext that did not compile and
> > > IIRC after stage 3 was ppp that refused to compile with the same
> > > error message.
> > >
> > > I downloaded and tried the new gentoo 2004 stages as well but the
> > > problem persists.
> > >
> > > Any ideas what goes wrong?
> > >
> > > Regards, Michael
> >
> > What CFLAGS (or CXXFLAGS) have you been using?
> >
> > Greetings,
> > Alex
>
> Hi Alex,
>
> thats my CFLAGS in /etc/make.conf:
>
> CFLAGS="-O3 -march=pentium4 -mcpu=i686 -funroll-loops -pipe
> -fomit-frame-pointer"

It seems as if gcc produces assembler code that as does net (yet) 
understand. 

I suggest to switch back to pentium3 for the package that fails; I think you 
won't notice any difference in performance. If it happens to more packages 
in base system, I suggest to compile the whole base system with pentium3.

IMHO P4 optimization makes only sense for applications that really _need_ 
the performance. If it makes too many troubles, the performace gain of less 
than 1% for "normal" applications isn't worth the time you spend.

Greetings,
Alex


-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] vmware moves RAM

2003-12-29 Thread Alexander Puchmayr
On Monday 29 December 2003 11:14, Alex Huth wrote:
> Hi guys!
>
> I'm in trouble with vmware. Everything worked fine till i recognized that
> vmware moves my RAM into cache. With in one Minute there is only 4000k
> free available everything else moves to cache ( ~40 per sec ). That
> occuers when i boot the guest.
>
> This happens when i start a guest ( W2K ) . The guest boots normaly,
> after Login he dies!
>
> I already tried to reconfigure vmware, doesn't help. Any ideas?
> This happened on a Athlon XP2200 with 512MB RAM, 128 MB for the guest.
>
> Thanks for any advice!

AFAIK vmware create a large file in /tmp-directory, which represents the 
guest's physical memory. In your case this file will be >128M (it needs 
some extra-mem, don't ask me for what). These file is hidden, you can't see 
it (even with ls -la, since it is immedately deleted after creation). 
So, does the partition holding your /tmp-directory have enough free space to 
store this file?

A second possibility which you should check is if you are running into some 
limitations (ulimit or quota)

Greetings,
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] floppy access

2003-12-29 Thread Alexander Puchmayr
On Sunday 28 December 2003 23:04, Bruce E. Harris wrote:
> ok, this one have me at a loss. I am trying to access my floppy via
> Gentoo and having no luck. I tried to create a floppyfw and coyote floppy
> and it could not access /dev/fd0. Looking in at /dev I see fd/ but not
> fd0. I added /dev/fd0 to my etc/fstab but no change. I cant not mount my
> floppy either. I had to boot into SuSE to create the floppyfw and edit it
> but rather stay in Gentoo.
>
> Any ideas?

Did you compile floppy support in your kernel configuration as module?
If so, you probably forgot to load the floppy-module...

So:
1) Check if your kernel has floppy support at all, either modular or 
directly built in.
2) Make sure the kernel finds the floppy. When including floppy support 
directly (i.e. not as module), you should look at the boot messages if it 
finds the floppy. If compiled as module, there should come some message 
when inserting the floppy-module. See the kernel boot messages with dmesg.
3) Make sure your /etc/modules.devfs contains the lines
# Floppies
alias /dev/floppy   floppy
alias /dev/fd*  floppy

If you never changed this file, its probably ok.

Greetings,
    Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] kernel 2.6 && iptables build incompatibilities ?

2003-12-29 Thread Alexander Puchmayr
Hi there!

I've tried to emerge iptables-1.2.8 with kernel-source tree of 2.6.0 in 
/usr/src/linux, and it failed with some undeclared symbols:

emerge iptables
Calculating dependencies ...done!
>>> emerge (1 of 1) net-firewall/iptables-1.2.8-r1 to /
>>> md5 src_uri ;-) iptables-1.2.8.tar.bz2
>>> Unpacking source...
>>> Unpacking iptables-1.2.8.tar.bz2 to 
/var/tmp/portage/iptables-1.2.8-r1/work
 * Applying various patches (bugfixes/updates)...
 *   01_all_grsecurity.patch.bz2...  [ ok ]
 *   02_all_imq.patch.bz2... [ ok ]
 * Done with patching
>>> Source unpacked.
Making dependencies: please wait...
In file included from /usr/src/linux/include/linux/compiler.h:16,
 from /usr/src/linux/include/asm/bitops.h:9,
 from /usr/src/linux/include/linux/bitops.h:4,
 from 
/usr/src/linux/include/linux/netfilter_ipv4/ip_conntrack.h:9,
 from 
/usr/src/linux/include/linux/netfilter_ipv4/ip_nat_rule.h:3,
 from extensions/libipt_NETMAP.c:12:
/usr/src/linux/include/linux/compiler-gcc3.h:19:1: warning: 
"__attribute_used__" redefined

[Lot of more redefined "__attribute_used__" skipped]

gcc -march=athlon-xp -O3 -pipe -fomit-frame-pointer -mfpmath=sse -msse -mmmx 
-m3dnow -funroll-all-loops -Wall -Wunused -I/usr/src/linux/include 
-Iinclude/ -DIPTABLES_VERSION=\"1.2.8\"  -fPIC -o 
extensions/libipt_physdev_sh.o -c extensions/libipt_physdev.c
extensions/libipt_physdev.c: In function `parse':
extensions/libipt_physdev.c:86: `IPT_PHYSDEV_OP_MATCH_IN' undeclared (first 
use in this function)
extensions/libipt_physdev.c:86: (Each undeclared identifier is reported only 
once
extensions/libipt_physdev.c:86: for each function it appears in.)
extensions/libipt_physdev.c:97: `IPT_PHYSDEV_OP_MATCH_OUT' undeclared (first 
use in this function)
extensions/libipt_physdev.c: In function `print':
extensions/libipt_physdev.c:144: `IPT_PHYSDEV_OP_MATCH_IN' undeclared (first 
use in this function)
extensions/libipt_physdev.c:146: `IPT_PHYSDEV_OP_MATCH_OUT' undeclared 
(first use in this function)
extensions/libipt_physdev.c: In function `save':
extensions/libipt_physdev.c:156: `IPT_PHYSDEV_OP_MATCH_IN' undeclared (first 
use in this function)
extensions/libipt_physdev.c:158: `IPT_PHYSDEV_OP_MATCH_OUT' undeclared 
(first use in this function)
make: *** [extensions/libipt_physdev_sh.o] Error 1

!!! ERROR: net-firewall/iptables-1.2.8-r1 failed.
!!! Function src_compile, Line 57, Exitcode 2
!!! (no error message)


Intresting: When re-linking /usr/src/linux to some 2.4.x-Kernelsourcetree it 
works fine, and the resulting iptables-executeable seems to work properly 
with a 2.6.0-Kernel.

Does anyone else have this incompatibility of iptables build and kernel 
2.6-Sourcetree??

Thanks
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo installation: compile fails

2003-12-29 Thread Alexander Puchmayr
On Monday 29 December 2003 12:21, Michael Spohn wrote:
> Hi,
>
> I tried to install Gentoo from stage 1 2 and 3 foolowing the very good
> installation docs but in all cases different programs refuse to compile
> with more or less the same error message:
>
> {Standard Input} Assembler messages
> {Standard Input} Error: Suffix or operands invalid for `movd'
>
> When starting with stage1 it was gettext that did not compile and IIRC
> after stage 3 was ppp that refused to compile with the same error
> message.
>
> I downloaded and tried the new gentoo 2004 stages as well but the
> problem persists.
>
> Any ideas what goes wrong?
>
> Regards, Michael

What CFLAGS (or CXXFLAGS) have you been using?

Greetings,
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Xine and alsa: howto specify the card to use?

2003-12-26 Thread Alexander Puchmayr
Hello there!

My PC has two soundcards, and I'd like to configure xine to use the second 
one instead of the first, which is default. I'm using alsa, which is built 
in kernel 2.6.0.

Question: How do I specify the device to use?
/dev/sound/dsp1
/dev/sound/adsp1
/proc/asound/card1/pcm0p
card1

None of these devices worked. I always get the error message similar to 
this:

ALSA lib pcm.c:1906:(snd_pcm_open_noupdate) Unknown PCM /dev/sound/dsp1
load_plugins: failed to load audio output plugin 

What is the correct device? 

Is there some documentation of alsa's device naming scheme available,
i.e. what is the nearest equivalent to oss' /dev/dsp?

Thanks & Merry Christmas,
    Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] kernel 2.6 autoload

2003-12-24 Thread Alexander Epifanov
Why kernel 2.4 does't need eepro100 in this files ?

On 15:21 Wed 24 Dec , Cybercar wrote:
> So, you have to add the module which you want to load on boot in the
> file 2.4 if you have 2.4 or in the 2.6 if you Sorry, its my bad
> english
> 
> Byez
> El mi?, 24-12-2003 a las 15:13, Alexander Epifanov escribi?:
> > files /etc/modules.autoload.d/kernel-2.4 and .../kernel-2.6 are empty.
> > 
> > On 14:28 Wed 24 Dec , Torsten Veller wrote:
> > > * Alexander Epifanov <[EMAIL PROTECTED]>:
> > > > In kernel 2.4 eepro100 was compiled as module and /etc/init.d/net.eth0 start 
> > > > worked perfectly.
> > > > But in 2.6 kernel eepro100 as module don't load automatically. why ?
> > > 
> > > Maybe you didn't add it to /etc/modules.autoload.d/kernel-2.6 ?
> > > 
> > > -- 
> > > .:  Regards Torsten  |  Experience varies directly with equipment ruined.  :.
> > > 
> > > --
> > > [EMAIL PROTECTED] mailing list
> -- 
>   - = Human knowledge belongs to the world = -
>   Linux Gentoo PoWeReD
>   Signed by: Cybercar
> 
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
Gentoo Linux http://www.gentoo.org

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] kernel 2.6 autoload

2003-12-24 Thread Alexander Epifanov
files /etc/modules.autoload.d/kernel-2.4 and .../kernel-2.6 are empty.

On 14:28 Wed 24 Dec , Torsten Veller wrote:
> * Alexander Epifanov <[EMAIL PROTECTED]>:
> > In kernel 2.4 eepro100 was compiled as module and /etc/init.d/net.eth0 start 
> > worked perfectly.
> > But in 2.6 kernel eepro100 as module don't load automatically. why ?
> 
> Maybe you didn't add it to /etc/modules.autoload.d/kernel-2.6 ?
> 
> -- 
> .:  Regards Torsten  |  Experience varies directly with equipment ruined.  :.
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
Gentoo Linux http://www.gentoo.org

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] kernel 2.6 autoload

2003-12-24 Thread Alexander Epifanov
$ sudo rc-update show
...
net.eth0 |  default
...

PS:
  Where are the files in /proc/bus/usb ?
  $ cat /usr/src/linux-2.6.0-gentoo/.config
  ...
  CONFIG_USB=m
  CONFIG_USB_DEVICEFS=y
  CONFIG_USB_STORAGE=m
  ...

On 13:16 Wed 24 Dec , Cybercar wrote:
> Have you done the rc-update net.eth0 default ?
>  
> Merry Xmas
> El mi?, 24-12-2003 a las 13:02, Alexander Epifanov escribi?:
> > Hello,
> > 
> > In kernel 2.4 eepro100 was compiled as module and /etc/init.d/net.eth0 start 
> > worked perfectly.
> > But in 2.6 kernel eepro100 as module don't load automatically. why ?
> > 
> > PS:
> >   gentoo-dev-sources-2.6.0
> > 
> > 
> > Thanks.
> -- 
>   - = Human knowledge belongs to the world = -
>   Linux Gentoo PoWeReD
>   Signed by: Cybercar
> 
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
Gentoo Linux http://www.gentoo.org

--
[EMAIL PROTECTED] mailing list



[gentoo-user] kernel 2.6 autoload

2003-12-24 Thread Alexander Epifanov
Hello,

In kernel 2.4 eepro100 was compiled as module and /etc/init.d/net.eth0 start worked 
perfectly.
But in 2.6 kernel eepro100 as module don't load automatically. why ?

PS:
  gentoo-dev-sources-2.6.0


Thanks.
-- 

--
[EMAIL PROTECTED] mailing list



[gentoo-user] USB storage questions

2003-12-13 Thread Alexander Puchmayr
Hi there!

When I connect an external harddisk/cdrom/memory-stick via USB, a new scsi 
device appears, lets say /dev/sda, partition information is read correctly 
and I can mount and use partitions without any problem.

After unmounting all mounted partitions of the drive and disconnecting it, 
the device /dev/sda is still there, of course giving me i/o-Errors when 
accessing it. 

Even after connecting a different disk, /proc/scsi/scsi still holds 
information about the old disk, no new disk. Accessing the new disk is not 
possible, I have to restart the hotplug to make it work.

So, question is, is there anything I can do against it or is it just a nasty 
bug in hotplug/usb?
BTW: I just upgraded to hotplug-20030805-r2 and restartet the service.

Thanks,
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] CDRW Drive Mounting Issue

2003-12-03 Thread Alexander A. Koulouris
Hi guys,

I am sorry for the last couple of emails, they may have been sent in
html format.  I finally realized how to change it over to plain text.

Anyway here is my problem I finally finished the install for the third
(3) time. I performed a stage 3+GRP.  I now log in as 'root' and provide
the password.  I need to mount the CDRW Drive (Pelextor 48x52x48 ide)so
that I can install the rest of the packages which I have burned on CD-R
media from the downloaded ISO CD2.

I have added the line to the kernel hdc=ide-scsi since the plextor is
locatede on hdc.  Also I have tried several commands:

# mount /dev/cdrom /mnt/cdrom
# mount /dev/hdc /mnt/cdrom
# mount /dev/cdroms/cdrom0 /mnt /cdrom  (Since this is the exact line in
my /etc/fstab)
# mount /dev/cdrom /mnt/cdrom -t iso9660
# mount /-t iso9660 /dev/scd0 /mnt/cdrom

and these are the errors I have recived:

mount: you must specify the filesystem

mount: block device /dev/cdrom is write-protected, mounting read-only
mount: No media found

mount: special drive /dev/cdrom does not exist

Please help guys, I would really appreciate your help in resolving this
drive issue.  Since I am so EAGER to get rid of my Windows machine F O R
E V E R !!

I could use all your feedback here.

Thanks 
Axeios


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Sound problem

2003-12-03 Thread Alexander Borghgraef
Hi all,
 
 I've just installed gentoo 1.4 for the first time, so I'm not
very familiar with the system yet, and obviously I've still got
a few problems. Let's begin with the sound, when I run sound-using
applications (as root), I get error messages of the '/dev/sound/dsp
not found' variety. When I check, indeed there's no /dev/sound/dsp,
but there is a /dev/sound/dspW. I suppose that's the device I need
to use instead, so I made a symbolic link /dev/sound/dsp to it, but
to no avail. IIRC in my previous linux install (debian woody) the 
sound device was /dev/dsp, and I got that one working fine (after 
fixing some permission problems). Any ideas what causes these problems?

--
Alexander Borghgraef
Vakgroep Telecommunicatie en Informatieverwerking Tel: +32-(0)9-264 34 16
Universiteit Gent Fax: +32-(0)9-264 42 95
St-Pietersnieuwstraat 41, B-9000 Gent, Belgiumemail: [EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Cant Mount the CDRW drive

2003-12-02 Thread Alexander A. Koulouris
No, the actual drive is a CDRW Plextor 48X drive ide, and the CD2 which
I downloaded and burned from an iso is on a regular cd-r media burnt at
48x.

What am I doing wrong and I cant mount the drive.


-Original Message-
From: Eric Paynter [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 02, 2003 7:30 PM
To: [EMAIL PROTECTED]
Subject: Re: [gentoo-user] Cant Mount the CDRW drive

Alexander A. Koulouris said:
> Mount: block device /dev/cdrom is write-protected, mounting
> read-only Mount: No media found
[...]
> Please help me mount the cdrw so that I can install the rest of
> the packages

Is the problem just with CDRW's? Can you mount CD-R's? Or mass
produced CDs? Some older drives (usually any slower than 16x speed)
cannot read CDRW's. The really old ones (like 4x or slower) also
cannot read CD-R's.

-Eric

-- 
arctic bears - email and name services
25 email [EMAIL PROTECTED] CA$11.95/month
DNS starting at CA$3.49/month - domains from CA$25.95/year
for details contact [EMAIL PROTECTED] or visit
http://www.arcticbears.com




--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Cant Mount the CDRW drive

2003-12-02 Thread Alexander A. Koulouris








Hi all,

 

Here is the latest,  I had to recreate the directory /mnt/cdrom with ‘mkdir –p
/mnt/cdrom’

And I tried to mount the cdrom
with ‘mount /dev/cdrom /mnt/cdrom’  I got a error 

Mount: you must specify the filesystem
type

So I entered ‘mount /dev/cdrom
/mnt/cdrom –t iso9660’

And I get

Mount: special device /dev/cdrom
does not exist

 

Another time I tried it with /dev/hdc
and I got 

Mount: block device /dev/cdrom is
write-protected, mounting read-only

Mount: No media found

 

I tried to different cd’s

Still nothing

Please help me mount the cdrw so
that I can install the rest of the packages

 

Thanks

Axeios








FW: [gentoo-user] Cant Mount Cdrom to install packages from cd2

2003-12-02 Thread Alexander A. Koulouris


Hi all,

Well, I have completed the install and I reboot and login as root and
enter the root password.  When I try to mount /dev/cdrom /mnt/cdrom  it
tells me mount: mount point /mnt/cdrom does not exist.  I tride to mkdir
/mnt/cdrom and still it wont allow me to do that.  I don't know why?

I am really confused here, I finally finished the install of kernel
2.4.20-gentoo-r6 and I cant seem to get the cdrom to mount so that I can
install the packages.  

I don't know if this is of any importance, but DMA was not enabled, and
the drive is actually a Plextor CDRW 48X, which is located on hdc.  I
tried to run dmesg | grep ^hd and that's how I see the plextor on hdc.
I also ran #modprobe -a ide-scsi but still nothing.

I need help here

My /etc/fstab

Has this line for the cdrom
/dev/cdroms/cdrom0  /mnt/cdrom  iso9660 noauto,ro,user  0 0

See what you can make of all this, and maybe we can get this system
through its finally stages.

Thanks
Axeios




--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Cant Mount Cdrom to install packages from cd2

2003-12-02 Thread Alexander A. Koulouris
Hi Ian,

Well, I have completed the install and I reboot and login as root and
enter the root password.  When I try to mount /dev/cdrom /mnt/cdrom  it
tells me mount: mount point /mnt/cdrom does not exist.  I tride to mkdir
/mnt/cdrom and still it wont allow me to do that.  I don't know why?

I am really confused here, I finally finished the install of kernel
2.4.20-gentoo-r6 and I cant seem to get the cdrom to mount so that I can
install the packages.  

I don't know if this is of any importance, but DMA was not enabled, and
the drive is actually a Plextor CDRW 48X, which is located on hdc.  I
tried to run dmesg | grep ^hd and that's how I see the plextor on hdc.
I also ran #modprobe -a ide-scsi but still nothing.

I need help here

My /etc/fstab

Has this line for the cdrom
/dev/cdroms/cdrom0  /mnt/cdrom  iso9660 noauto,ro,user  0 0

See what you can make of all this, and maybe we can get this system
through its finally stages.

Thanks
Axeios

-Original Message-
From: Ian Truelsen [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 01, 2003 4:50 PM
To: [EMAIL PROTECTED]
Subject: Re: [gentoo-user] Cant Mount Cdrom to install packages from cd2

On Mon, 1 Dec 2003 15:17:34 -0500
"Alexander A. Koulouris" <[EMAIL PROTECTED]> wrote:

> Hi all,
>  
> Having problem trying to emerge -k kde over the internet.  The belnet
> site, seems to halt the system and I can not complete the install.  I
> want to mount my cdrom so that I can install from the CD2 containing
> all the packages.  I have performed a gentoo install with stage3+grp
> (snapshot) so now I want to install the kde, gnome, koffice, etc.
>  
> I cant seem to get the cd to mount.
>  
A little more info would be helpful. Where are you in the install
process? Is the livecd still mounted? Are you in the chroot shell?

If this is a finished install, do you have an entry in fstab to support
the mount /mnt/cdrom? What error are you getting when you try to mount
the cd?

Try this:
mkdir /mnt/cdrom (should be there, but best to be sure)
mount /dev/cdrom /mnt/cdrom

This should mount the cdrom for you. Any error messages should give you
an idea of where the problem is.

-- 
Ian Truelsen
Email: [EMAIL PROTECTED]
AIM: ihtruelsen
Homepage: http://www.ihtruelsen.dyndns.org
Signature key (742B740D) available at pgp.mit.edu



--
[EMAIL PROTECTED] mailing list



Re[2]: [gentoo-user] spam after subscribing to gentoo-user

2003-12-02 Thread Alexander Williams
Tuesday, December 2, 2003, 6:11:45 AM, Matthias wrote:

MFB> questions  in a wrong manner. But: where should I have learned it, if
MFB> not on the list itself?

  Well, in the old days, we used to learn by actually reading the ML for a
  while  before  posting  to  it and seeing how the folks who did the most
  good  posted  and  held themselves, and then emulated them. Sadly, those
  were  the days of yore, before the Endless September, when even Kibology
  could  still  be seen running rampant and free. Ah, the olden days, when
  learning through observation was still at play in the world.

  ObGentoo:  Its  really,  really easy to pull up and configure one of the
  innumerable  Bayesian  mail  filtering  systems on your server. Actually
  doing  it is left as an excercise for the reader, but they certainly are
  effective buggers.

-- 
Alexander Williams ([EMAIL PROTECTED])

  "You are a devil!" she sobbed.
  "Not I!" he laughed. "I was born on this planet long ago. Once, I was
a common man, nor have I lost all human attributes in the numberless
aeons of my adeptship. A human steeped in the dark arts is greater
than a devil."
-- RE Howard, The People of the Black Circle


--
[EMAIL PROTECTED] mailing list



[gentoo-user] CUPS (print to file)

2003-12-02 Thread Epifanov Alexander
Hello,

Is it possible to have a printer in CUPS,
And all documents, sended to this printer, save in file (for example postscript).

Thanks.

-- 

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Cant Mount Cdrom to install packages from cd2

2003-12-01 Thread Alexander A. Koulouris








Hi all,

 

Having problem trying to emerge –k
kde over the internet.  The belnet site, seems to halt the system and I can not complete the
install.  I want to mount my cdrom so that I can install from the CD2 containing all the
packages.  I have performed a gentoo install with stage3+grp (snapshot) so now I want to
install the kde, gnome, koffice,
etc…

 

I cant seem to get the cd to mount.

 

Help please!

 

Axeios








[gentoo-user] dual booting with winxp

2003-11-30 Thread Alexander A. Koulouris








Hi all,

 

I know I will probably get a lot of grief for this, but I need
to dual boot my PC.  I have
installed winxp on its own HD, and Gentoo on another 120gb HD, I have the Gentoo Drive as Master , and the Win on as Slave.  My Grub/menu.lst
looks like this

 

 

default 0

timeout 30

splashimage=(hd0,0)/boot/grub/splash.xpm.gz

 

title=Gentoo Linux

root (hd0,0)

kernel
(hd0,0)/boot/kernel-2.4.20-gentoo-r8 root=/dev/hda3

initrd
(hd0,0)/boot/initrd-2.4.20-gentoo-r8

 

title=Windows XP
Pro

map (hd0) (hd1)

map (hd1) (hd0)

root (hd1,0)

rootnoverify (hd1,0)

makeactive

chainloader +1

 

 

Plz give me a
hand it wont start in windows at all.  Does not recognize the
filesystem.  Its an NTFS
partition

 

Thanks

Axeios








[gentoo-user] how do I get into the kde or gnome (GUI) enviorment

2003-11-30 Thread Alexander A. Koulouris








Hi all,

 

Finally I got it to work, I installed a STAGE3 as per the
installation instructions step-by-step, now my installation boots up to the
$prompt.  But I need to know how I get to
the kde or gnome or the Graphical User Interface from
here.

 

I know this is probably a silly question but I am a newbie,
and I finally got through the installation process.

 

Thanks,

Axeios








[gentoo-user] -bash: emerge: command not found

2003-11-30 Thread Alexander A. Koulouris








Hi guys,

 

I finally tried to install gentoo
1.4 on my P4 system and while following the installation step-by-step, I get on
error on section 16. (Installing the kernel and system
logger).  For some reson when I type # emerge –k sys-kernel/gentoo-sources I get the following error: -bash: emerge:
command not found.  Why is that, and what can I do so that I can finally finish the
installation

 

 

Thanks,

Axeios








Re: [gentoo-user] Re: Masked package when upgrading world

2003-11-17 Thread Alexander Futasz
On Mon, 10 Nov 2003 15:46:57 + (UTC), Eamon Caddigan wrote:
> Hall Stevenson <[EMAIL PROTECTED]> wrote:
> > On Mon, 2003-11-10 at 09:47, Eamon Caddigan wrote:
> >> Hall Stevenson <[EMAIL PROTECTED]> wrote:
> >> 
> >> Yeah, I realize I wasn't very clear: Tcl and Tk are the only masked
> >> packages on my system. Trying:
> >> ACCEPT_KEYWORDS="~x86" emerge -pvu tcl tk
> >> Indicates that I have the latest versions installed. This won't
> >help> with updating world, unfortunately. I am loathe to update world
> >using> "~x86" -- really, I just want to find out which packages have
> >newer> stable versions.
> >> 
> >> I imagine this wouldn't be a problem if the ebuilds for Tcl/Tk were
> >> slot-aware. I *could* downgrade to 8.3.4, and then install 8.4 by
> >hand> in /usr/local, but I really don't want to do that.. 
> > 
> > Try "U" instead of "u", like this:
> > 
> > ACCEPT_KEYWORDS="~x86" emerge -pvU tcl tk
> > 
> > As I understand it, mixing "unstable", i.e. x86 packages, with
> > regular can confuse emerge/portage. The "u" flag will attempt to
> > actually downgrade you. The "U" flag won't.
> 
> Right, but since I already have the latest (unstable) versions of
> Tcl/Tk, upgrading/updating them doesn't change anything. My problem is
> that emerge is returning errors when I try to update world with the
> upgradeonly flag. 

Currently when using a ACCEPT_KEYWORDS=arch system and mixing it with
some ~arch ebuilds it will break 'emerge -UDvp world'. Leaving the -D
(deep) out will fix this, but of course wont upgrade the ebuilds that
aren't recorded in /var/cache/edb/world and have been installed as
dependencies. What you could do, but what is pretty uggly is:

# emerge -Uvp `qpkg -I|sed s/every ebuild that is ~arch masked//`

Or instead of substituting the masked ebuilds, you could inject them.
Also ugly IMHO. Hopefully portage-ng (the soon to be started new
portage) will fix this.

Alex

--
[EMAIL PROTECTED] mailing list



[gentoo-user] question to output of "last"

2003-11-16 Thread Alexander Puchmayr
Hi folks!

When I type the command

last -i -a $LOGNAME

I get a table with the last logins from the actually logged in user. When he 
did log via XDM/KDM, the ip adress shown seems to be rather random, while 
logins from console show up correctly with 0.0.0.0 and real remote logins 
with the correct remote-ip. The random ip's for local kdm-logins are 
somewhat confusing; Is this a configuration error on my system or a bug?

Greetings,
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] configure: error: db.h

2003-11-02 Thread Alexander Netopier Leonov
Hello.
I try emerge direct++ client "dctc" but in configuration I obtain this 
error:
...
checking GLIB_LIBS... -pthread -lgthread-2.0 -lglib-2.0 
checking for db.h... yes
checking Berkeley Database library version... 4.0
checking for db_env_create in -ldb-4.0... no
checking for db_env_create in -ldb4... no
configure: error: db.h reports Berkeley DB version is 4.0 but no db-4.0 
library exists

!!! ERROR: net-p2p/dctc-0.85.3 failed.
!!! Function econf, Line 338, Exitcode 1
!!! econf failed
bash-2.05b#

I have allready installed berkley db libs. Can you help me please?
Thanks a lot.
ANL

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] gentoo speed (mkisofs, redhat-9)

2003-10-30 Thread Alexander Puchmayr
On Thursday 30 October 2003 11:48, Selentek 24331-03 wrote:
> Hello,
>
> Where is 2 system on my computer: gentoo and redhat-9
>
> gentoo kernel: gentoo-sources without any changes
>
>   gentoo $ mkisofs --version
>   mkisofs 2.01a17 (i686-pc-linux-gnu)
>
>   gentoo $ hdparm -t /dev/hda
>   /dev/hda:
>Timing buffered disk reads:   52 MB in  3.08 seconds =  16.88 MB/sec
>
>   gentoo $ time mkisofs distfiles > 1.1 2>/dev/null
>   real1m17.966s
>   user0m1.390s
>   sys 0m14.745s
>
> I try different versions of cdrtools, but result same
>
> redhat: kernel from gentoo-sources without patches
>
>   redhat $ mkisofs --version
>   mkisofs 2.0 (i686-pc-linux-gnu)
>
>   redhat $ hdparm -t /dev/hda
>   /dev/hda:
>Timing buffered disk reads:  64 MB in  4.10 seconds = 15.61 MB/sec
>
>   redhat $ time mkisofs distfiles > 1.1 2>/dev/null
>   real0m41.720s
>   user0m1.430s
>   sys 0m12.510s
>
>
> What reason of gentoo small speed?
>
> Thanks.

I guess you had a dual-boot system, gentoo and redhat on the same drive at 
the same time in different partitions. Harddisks usually have different 
speeds at inner and outer sectors, which can vary upto a factor of two.

Additionally, fragmentation is an issue, especially on very large files like 
iso-images (but it is far beyond the bad fragmentation behaviour of a fat 
fs, but its noticeable)

Greetings,
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Keeping packages up todate with a 56k modem

2003-10-16 Thread Alexander Futasz
On Thu, 16 Oct 2003 13:39:39 +0200 (IST), Scharf Yuval wrote:
> On Thu, 16 Oct 2003, David Gethings wrote:
> 
> > Secondly, downloading all the packages over a 56k modem is a
> > non-starter. Espcially as I only have one phone line and a chatty
> > wife.;). Is there a tool I could use to download the packages listed
> > by'emerge -uDp world' onto my Debian box at work.
> >
> > If so I could then burn these packages to a CD and then install from
> > the CD.
> 
> "emerge -uDpf" will give you the list of files needed by "emerge -uDp"

Pipe the output of this into a file and feed that file to the attached
Ruby script, like this: $ ruby fetch.rb 

#!/usr/bin/env ruby

File.open(ARGV[0], 'r') { |f|
  while s = f.gets
list = s.split
list.each { |i|
  break if system('wget', '-c --passive-ftp', i)
  puts '!!! failed !!! ' + i
}
  end
}
--
[EMAIL PROTECTED] mailing list

Re: [gentoo-user] Where the heck is Bitchx?

2003-10-10 Thread Jarrod Alexander Roy
The BitchX executable has a capital "B". Try that. I got the same
thing when I emerged it the first time.

Jarrod

On 10 Oct 2003, Jayson Garrell wrote:

> This morning I needed to get some info from irc so I decided to fireup
> bitchx. I cannot find it on my system. Portage thinks it is there...
>
> bash-2.05b# emerge search bitchx
> Searching...
> [ Results for search key : bitchx ]
> [ Applications found : 1 ]
>
> *  net-irc/bitchx
>   Latest version available: 1.0.19-r6
>   Latest version installed: 1.0.19-r6
>   Size of downloaded files: 2,474 kB
>   Homepage:http://www.bitchx.com/
>   Description: An IRC Client
>
> I have looked every where, I even did a 'find / | grep bitchx'. Turned
> up a bunch of files but no binary. I figured O'well I'll just re-emerge
> it. I did and it compiled w/out errors but still not binary! Starting to
> feel a little 'tarted this morning, had to drive to san jose last night
> and didn't get home until 3am. So am I just missing something here, dain
> bramage or what?
>
> Thanks in advance
>
> -Jayson Garrell
>
>
> --
> [EMAIL PROTECTED] mailing list
>
>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Redirect output and view at the same time

2003-10-10 Thread Jarrod Alexander Roy
tee is the utility you are looking for.

Jarrod

On Fri, 10 Oct 2003, Jeff Greene wrote:

> Does anyone know of a way to redirect the output of a
> program to a file, but view at the same time?
> Basically, I want to save the output of some programs
> but want to have the option to not have to go open up
> a file to see what happened.
>
> Jeff
>
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
>
> --
> [EMAIL PROTECTED] mailing list
>
>


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Gnome-base/bonobo-activation conflicts with another package

2003-10-10 Thread Alexander Plank
I want to update but I get this message.  What should I do to be able to 
update?  Is this because gnome is such a big package?
[EMAIL PROTECTED] tux # emerge -u world
Calculating world dependencies ...done!

!!! Error: the gnome-base/bonobo-activation package conflicts with 
another package.
!!!both can't be installed on the same system together.
!!!Please use 'emerge --pretend' to determine blockers.



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] UT2003 sluggish

2003-10-08 Thread Alexander Plank
Is it sluggish in windows too because you seemed to imply so?

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] su in X11R6

2003-10-08 Thread Alexander Plank
Can you su outside of X using the same username?  Also, it isn't safe to 
run X as root and doing so is disabled for security reasons.

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Printing 2 pages/sheet with cups fails

2003-10-05 Thread Alexander Puchmayr
Hi List!

The KDE (kde-3.1.4 on gentoo linux) print dialog has a nice feature to setup 
printing with 2 or 4 pages per sheet using "psnup". This works fine with 
LPD or LPR as print system, but does actually nothing when CUPS is selected 
as print system. Even if I add the "Multiple pages per Sheet Filter" in the 
filters-tab nothing happens. Still the usual one page/sheet output :-(

Can anyone tell me why this happens and how I can fix it?

Thanks in advance,
Alex Puchmayr


-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Installing Gentoo / 2.6.0 Kernel / Hyperthreading / Stuff

2003-09-29 Thread Alexander Futasz
On Mon, 29 Sep 2003 20:17:13 +1200, Thomas Eastman wrote:
> 1.  During the installation process when it comes time to set up the
> kernel can I simply tell it to install development-sources?  Will
> Gentoo balk at me?  Is genkernel safe with 2.6.0?  Is genkernel safe
> at all? I've never used it.

You are free to choose whatever kernel you like, even when installing.
About genkernel: it doesn't have much documentation and I heard it
doesn't work with 2.6 kernels.

> 2.  I've used XFS with no problems for over 18 months, but because of
> the horror stories I've been hearing about it I think I might switch
> back to good ol' ReiserFS.  But ReiserFS4 is in the works or something
> like that... Question:  If I use reiserfs from the development kernel,
> will I have anything weird happen to be because of different versions
> of userspace reiserfs tools?  Is there any caveats I need to know
> about ReiserFS in 2.4 Vs. ReiserFS in 2.6?

AFAIK reiserfs4 is not in 2.6 yet, so just make sure you have the latest
reiserfs utils.
 
> 3. What's the deal with Hyperthreading?  Am I going to need to set up
> an SMP kernel?  Is there anything else that is important to know about
> configuring a Hyperthreading CPU?

You will need at least to enable SMP in the kernel, which is a default
anyway I think. Also the FSB matters as to wether Hyperthreading will
work or not, IIRC.

> 5. What's the deal with ACPI/APIC?  These caused me no end of hassles

Depends on the board with its chipset and BIOS.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo Poll #8

2003-09-29 Thread Alexander Futasz
On Sun, 28 Sep 2003 20:26:30 -0700, Fred Van Andel wrote:
> There was a dissapointing 46 respondants.

> The responses to these polls has been slowly dropping every week. At 
> this point I feel that a short break is in order.  Polls will 
> resume in a few months.

That's why I suggested to move it to GWN.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Thunderbird

2003-09-24 Thread Alexander Plank
Thunderbird doesnt open a browser when links are clicked.  I find this 
odd.   Does anyone else have this problem?

--
[EMAIL PROTECTED] mailing list


[gentoo-user] cloop and kernel parameter

2003-09-23 Thread Alexander Puchmayr
Hi there!

I just tried to emerge cloop, and I got an error message:
 * You have not enabled the zlib compression and/or decompression options
 * in your Linux kernel.
 *
 * You must configure both options to be compiled into your kernel; cloop
 * will not compile if the zlib options are compiled as modules

So, next step would be to enable these options, but my menuconfig does not 
have these options (Library functions contains only quicksort, no zlib).
BTW: the kernel is gentoo-sources-2.4.20-r7

When I edit the .configfile myself and set the CONFIG_ZLIB... paramters to 
'y' manually, then subsequent menuconfigs turn them back to 'm' again.

So, how do I install cloop?

Greetings
    Alex

-- 
Alexander PuchmayrSystemadministrator for Theoretical Physics
University Linz, Austria  e-mail: [EMAIL PROTECTED]
Altenbergerstrasse 69 phone: +43/732/2468-8633
A-4040 Linz-Auhof FAX:   +43/732/2468-8585


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] su not working

2003-09-22 Thread Alexander Plank
do you have your user in the wheel group?

--
[EMAIL PROTECTED] mailing list


[gentoo-user] [Fwd: Re: [gentoo-dev] Re: Enemy Territory and Gentoo]

2003-09-22 Thread Alexander Plank

--- Begin Message ---
On Mon, 2003-09-22 at 10:31, Dhruba Bandopadhyay wrote:
> Chris Gianelloni wrote:
> > It appears that the only course of action we have left to remain good
> > members of the community is to remove all id games from portage.  If
> > there is someone else I should talk to about this, let me know so I can
> > contact them.  We appear to be at an impass since neither of us appears
> > to be getting through to the other.
> > 
> > To be honest, I simply don't see how if I were to change the ebuild to
> > display the EULA and force the user to accept before continuing does not
> > meet the licensing requirements.  Since I have repeated this and gotten
> > no real response on it specifically other than you repeating about a
> > wrapper, I am assuming that this is not acceptable to meet the license.
> 
> Hello
> 
> Being an avid enemy territory addict I'm very distressed to hear that 
> idgames on gentoo including enemy territory are becoming more of an 
> impossibility as exhibited by the above email.  Please allow me to make a 
> suggestion or two.
> 
> What is required here is some sort of explicit and interactive consent of 
> the EULA by the gentoo user.  This can be done in two ways.
> 
> (1) Add an F flag to the ebuild thereby forcing the user to download the 
> installer independently of portage and thereby agree to EULA online somewhere.

You don't have to agree to an EULA to download the game.  The EULA is
only displayed when running the installer.

> (2) Add an environment variable so that the package will only install when 
> the environment variable is set correctly.  So, when the ebuild is 
> executed initially it will output a message saying "Please read the EULA 
> on  and extend your explicit consent by doing the following".
> 
>   AGREE_EULA="yes" emerge enemy-territory
> 
> Personally, I am tempted to go with the second option above as this  not 
> only fulfills the EULA requirement but also makes the ebuild 
> non-interactive which in my opinion all ebuilds should most definitely be.

I've removed the ebuild and have no plans on putting it back in portage
unless some agreement can be made between id software and the games
team.  Actually, this has prompted me to also remove RTCW and the quake3
based games, since they all have this same problem.

> (3) The other non-interactive option is as mentioned in the previous email 
> adding a wrapper to the main executable which asks for consent on first 
> run and then stores evidence of consent on the local filesystem.  All 
> future executions of the game proceed as normal.

This isn't what Timothy was proposing.  He was proposing a wrapper on
the *installer*, which does us zero good and serves no purpose other
than to add another layer of useless cruft.

> I look forward to receiving feedback on these propositions and trust that 
> a mutual agreement shall be reached between all concerned parties.

Yes, an agreement was reached.  I removed the ebuilds from portage.

I had already created a new ebuild and a new function for eutils which
would display the license and force the user to accept before
continuing.  Apparently, this was not acceptable to id.  In fact,
nothing was acceptable other than running the installer itself.  The
problem with this is #1. it is interactive only, #2. it requires gtk
(even for a server-only install), #3. we have no control over the
installation path, so portage cannot track the files.

Having an ebuild that simply wraps the installer is pointless since we
would only be wrapping the installer.  There is no tracking of the
actual game files.  This makes the installation no different
functionally than a user downloading the game themselves and running the
installer.  For this reason, I have decided to remove the ebuild
entirely.

-- 
Chris Gianelloni
Developer, Gentoo Linux
Games Team

Is your power animal a pengiun?


signature.asc
Description: This is a digitally signed message part
--- End Message ---
--
[EMAIL PROTECTED] mailing list

Re: [gentoo-user] portage masked problem

2003-09-22 Thread Alexander Plank
Enemy  Territory is no longer going to be in portage.  wolf31o2, the 
game developer told me he emailed ttimo of Id software about the issue 
but the last time he talked to me he said:

--- Additional Comments From [EMAIL PROTECTED]  2003-22-09 06:45 UTC ---
I would consider this one "fixed" since I removed Enemy Territory from portage.  I 
made a backup of the ebuilds (with modifications that I never commited) in case something 
changes in the future.  I will continue to work on this issue in hopes of finding a resolution 
that is better for our users.
Stroller wrote:

On 20 Sep 2003, at 9:11 pm, Eric Marchionni wrote:

when i try to emerge enemy-territory on my dell notebook it shows up 
as masked. though on my desktop system the same ebuild isn't masked.
even a ACCEPT_KEYWORDS x86 doesn't help.


http://article.gmane.org/gmane.linux.gentoo.devel/12397

I get the impression from this posting that the developers of "Enemy 
Territory" are requesting significant changes to Gentoo's ebuild for 
this game, which may not be practical. The impression I get is that ID 
games require that no changes be made to their installers, and that 
their installer allows the user to choose where in the filesystem 
files are located; this makes package-management via Portage 
impossible. If this is not the case, then I apologise - I'm sure one 
of the devs will step up & correct me.

I see the very bottom of this posting says:
> I was just made aware of the issue with Enemy Territory and the EULA as
> it concerns Gentoo.  As the maintainer of this package, I would like to
> work with you on a resolution.  At this time, I have blocked the 
package
> from installing in portage until a resolution can be made...
> Chris Gianelloni

I guess more details will become clear shortly.

Stroller.

--
[EMAIL PROTECTED] mailing list





--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Microsoft *.wav files

2003-09-22 Thread Alexander Plank
I dont think .wav files are a microsoft format.  Do you mean .wma files?

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] rar file decompressor?

2003-09-21 Thread Jarrod Alexander Roy
app-arch/unrar  works just fine for me.

Jarrod

On 21 Sep 2003, Mark Knecht wrote:

> Hi,
>What tools can I use to decompress a rar file under Gentoo?
>
> Thanks,
> Mark
>
>
> --
> [EMAIL PROTECTED] mailing list
>
>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo poll #7 results.

2003-09-15 Thread Alexander Futasz
On Sun, 14 Sep 2003 19:52:25 -0700, Fred Van Andel wrote:
> 
> These are the results for the seventh gentoo poll.

This whole poll should be taken off of the list and added to the
newsletter.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Mail-header

2003-09-15 Thread Alexander Futasz
On 15 Sep 2003 09:28:23 +0200, Lutz Feldgen wrote:
> would it be a big problem for you or the list-manager to change the
> sender-address to the mailing-list-address?
> It is really uncomfortable to have half of the mails to this list
> filtered out by gmx-anti-spam...there is no way to tell the filter to
> select by recipient-address.

I turned GMX spamfiltering completely off and filter myself now. True -
I have to download all the spam, but my spam detection is way better. ;)

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Cups & Epson Stylus Photo 870

2003-09-14 Thread Alexander Puchmayr
Hi there!

I have heavy problems getting cups to operate with my Epson Stylus photo 870 
printer.

The first problem is, that it alwyas says "Media tray empty!", although 
there's enough paper in the tray. The status flags are 0x18 (returned by 
LPGETSTATUS) in the normal case (i.e. printer ready, enough paper), and 
cups interprets this as "No paper" and "Printer Error". So I commented out 
the lines checking the status in cups's source for the usb-driver 
(backend/usb.c). But this cannot be the solution to this problem.

And the second one is that it calls ghostscript with some driver it does not 
support. According to the log, it calls gs with "-sDEVICE=stp", but gs does 
not have this driver compiled in. 

D [14/Sep/2003:15:57:04 +0200] [Job 6] foomatic-gswrapper: gs 
'-dPARANOIDSAFER' '-dNOPAUSE' '-dBATCH' '-sDEVICE=stp' '-sModel=escp2-870' 
'-sOutputFile=| cat >&3' '/dev/fd/0' 3>&1 1>&2
D [14/Sep/2003:15:57:04 +0200] [Job 6] ESP Ghostscript 7.05 (2003-02-05)
D [14/Sep/2003:15:57:04 +0200] [Job 6] Copyright (C) 2002 artofcode LLC, 
Benicia, CA.  All rights reserved.
D [14/Sep/2003:15:57:04 +0200] [Job 6] This software comes with NO WARRANTY: 
see the file PUBLIC for details.
D [14/Sep/2003:15:57:04 +0200] [Job 6] Unknown device: stp
D [14/Sep/2003:15:57:04 +0200] [Job 6] renderer return value: 1
D [14/Sep/2003:15:57:04 +0200] [Job 6] renderer received signal: 1

Thanks for any suggestions
Alex


-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Choice of Kernel Sources

2003-09-14 Thread Alexander Futasz
On Sat, 13 Sep 2003 20:35:51 -0700, Ian Truelsen wrote:
> On Sun, 14 Sep 2003 04:10:03 +0100
> Stroller <[EMAIL PROTECTED]> wrote:
> 
> > What I'm personally after is the best sources for a headless 
> > general-purpose server: all it does is serve mail, DNS & a few 
> > webpages, and crunches away in the background at Seti when it's not 
> > busy, so it doesn't have to be hardened or anything superlatively 
> > special. I would like to upgrade to 2.4.21 for reasons of paranoia, 
> > tho', as I'm using 2.4.20 vanilla sources at the moment.
> > 
> In the same sort of machine that you are describing, I use the
> grsec-sources. It provides everything that I need.

And for me it's vanilla-sources in that case.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] foomatic's distfiles ???

2003-09-11 Thread Alexander Puchmayr
Hi list!

A few weeks ago I had a problem with upgrading: when it came to upgrade 
foomatic, it failed to download foomatic-3.0.0.tar.gz.
I submitted a bug, it was marked as fixed soon.
But now, I have the same problem again. 

zeus / # emerge -uU --deep kde
Calculating dependencies ...done!
>>> emerge (1 of 51) net-print/foomatic-3.0.0 to /
>>> Downloading 
http://www.linuxprinting.org/download/foomatic/foomatic-3.0.0.tar.gz
--18:58:52--  
http://www.linuxprinting.org/download/foomatic/foomatic-3.0.0.tar.gz
   => `/usr/portage/distfiles/foomatic-3.0.0.tar.gz'
Resolving www.linuxprinting.org... done.
Connecting to www.linuxprinting.org[208.200.158.201]:80... connected.
HTTP request sent, awaiting response... 404 Not Found
18:58:53 ERROR 404: Not Found.

!!! Couldn't download foomatic-3.0.0.tar.gz. Aborting.
zeus / #

So, why does it want to download a source at all, since the ebuild file has 
an empty SRC_URI?

And how can I continue my emerge -uU kde ?

Greetings,
Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] edb digest doesn't match

2003-09-10 Thread Jarrod Alexander Roy
Upon attempting to emerge avifile, things get stuck on edb:

!!! File is corrupt or incomplete. (Digests do not match)
>>> our recorded digest: eb2a0e0eb8876b817e01427d1f09f838
>>>  your file's digest: 317bc173aaab05cdf5257a72fcc90f42
!!! File does not exist: /usr/portage/distfiles//edb-1.0.3.tar.gz

I just synced portage and attempted this several times with different
mirrors but the same results. The downloaded file gunzips and untars just
fine, so it may just be a stale digest in portage. I know I can get around
this by overwriting the current digest but I'm thinking this probably
isn't the best/safest route until I've checked. Is this a known issue?

Thanks,
Jarrod


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] x freezes sometime

2003-08-26 Thread Alexander Puchmayr
On Tuesday 26 August 2003 02:53, Collins Richey wrote:
> On Mon, 25 Aug 2003 23:14:47 +0200
>
> Alberto Bert <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > I'm using gentoo since some months and I'm very happy of it, but it's
> > some day that I've several problems.
> >
> > - mozilla window frezes sometimes
> > - it's happened that kde freezes after lounching the console
> > - kde is taking along time to load at loging (more than before)
>
> Possibly hardware - bad memory, overheating?

I had similar problems half a year ago. The system worked fine until then, 
and during a few days instabilities came up. XServer hanging/crashing a few 
times per day, segfaults during compile, etc. I replaced my RAM and 
everything went fine again.

Try to run memtest86 on your system, with all tests turned on. Even if it 
doesn't find any error, you cannot be sure. There are a lot of cases, in 
which RAM-errors cannot be detected by a memtest programm.

Try to utilize your computer with some cpu/memory intensive jobs. Just 
recompile your kernel a few times(you don't need to install it), and use 
something like
make dep; make clean; make -j bzImage; make -j modules
replace  with some proper value (=number of parallel gcc instances); It 
should not begin to swap (in that case you would rather test the harddisk 
than the RAM). It should NEVER fail (neither signal 11 or any other 
reason). If it does, you can be pretty sure that its the ram.

Greetings,
Alex


-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Xine DVD broken?

2003-08-25 Thread Alexander Puchmayr
On Monday 25 August 2003 21:10, Luis Morales wrote:
> Have you compile xine with dvd support ?
>

Yes, I have.

DVD watching works now, exactly ONCE.
(I forgot to clean up my ~/.xine directory)
The first time when I setup xine (i.e. setup my dvd drive), it works. When I 
exit and start xine again, it hangs as soon as I click on DVD.
(NB: Watching divx files works fine)


> take a look using:
>
> # emeger -pv xine
>
> If dvd flag is off you need edit your /etc/make.conf and add activate it
> on USE flags
>
> recompile xine
>
> Regards,
>
> LM
>
> Ian Truelsen wrote:
> >On Mon, 25 Aug 2003 20:57:03 +0200
> >
> >Alexander Puchmayr <[EMAIL PROTECTED]> wrote:
> >>Hi there!
> >>
> >>After upgrading to actual xine-ui and xine-lib, the dvdnav plugin does
> >>not work anymore.
> >>When clicking on "DVD" button, xine hangs and can only be killed by a
> >>"kill -9".
> >>
> >>The plugin xine-dvdnav depends on the old version of xine-lib, but
> >>that conflicts with the actual version of xine-ui.
> >>
> >>So, how can I watch DVDs???
> >
> >emerge ogle
> >
> >At least until the dependency thing gets cleared up.

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Xine DVD broken?

2003-08-25 Thread Alexander Puchmayr
Hi there!

After upgrading to actual xine-ui and xine-lib, the dvdnav plugin does not 
work anymore. 
When clicking on "DVD" button, xine hangs and can only be killed by a 
"kill -9".

The plugin xine-dvdnav depends on the old version of xine-lib, but that 
conflicts with the actual version of xine-ui.

So, how can I watch DVDs???

Thanks for answers,
    Alex

-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] util-linux-2.11z-r6 upgrade problem

2003-08-25 Thread Mathew L. Alexander
So no one knows why I'm having this problem?

On Friday 22 August 2003 08:09 pm, Mathew L. Alexander wrote:
> I have util-linux v 2.11z-r4 installed, when upgrading to the r6 version
> I'm getting this error:
>
> gcc -march=i686 -O3 -pipe -I../lib -Wall -Wmissing-prototypes
> -Wstrict-prototypes -DNCH=1   -D_FILE_OFFSET_BITS=64 -DSBINDIR=\"/sbin\"
> -DUSRSBINDIR=\"/usr/sbin\" -DLOGDIR=\"/var/log\" -DVARPATH=\"/var\"
> -DLOCALEDIR=\"/usr/share/locale\" -march=i686 -O3 -pipe  -s  pivot_root.c
> -o pivot_root
> pivot_root.c: In function `main':
> pivot_root.c:20: invalid register name `r0' for register variable
> pivot_root.c:20: invalid register name `r1' for register variable
> pivot_root.c:20: invalid register name `r0' for register variable
> pivot_root.c:20: unknown register name `lr' in `asm'
> pivot_root.c: In function `pivot_root':
> pivot_root.c:20: invalid register name `r0' for register variable
> pivot_root.c:20: invalid register name `r1' for register variable
> pivot_root.c:20: invalid register name `r0' for register variable
> pivot_root.c:20: unknown register name `lr' in `asm'
> make[1]: *** [pivot_root] Error 1
> make[1]: *** Waiting for unfinished jobs
> make[1]: Leaving directory
> `/var/tmp/portage/util-linux-2.11z-r6/work/util-linux-2.11z/mount'
> make: *** [all] Error 1
>
> !!! ERROR: sys-apps/util-linux-2.11z-r6 failed.
> !!! Function src_compile, Line 100, Exitcode 2
> !!! emake failed
>
> Any advice?


pgp0.pgp
Description: signature


Re: [gentoo-user] MP3s playing too fast.

2003-08-25 Thread Alexander Winston
On Sun, Aug 24, 2003 at 04:42:22PM -0400, Matthew Daubenspeck wrote:
> I have downloaded some copies of some old time Radio Mystery Theater
> stuff from various places around the Net. However, each and every one of
> the mp3s are playing far too fast. They all sound like a bunch of
> chipmunks reading a story :)
> 
> I have tried using xmms and mp3blaster, and they both have the same
> result. Plenty of other music mp3s work just fine... Any ideas?

While you can never be sure with MP3s (horrible, horrible format), I
would have to guess that said MP3s were encoded at too high of a
frequency.


--
[EMAIL PROTECTED] mailing list



[gentoo-user] util-linux-2.11z-r6 upgrade problem

2003-08-22 Thread Mathew L. Alexander
I have util-linux v 2.11z-r4 installed, when upgrading to the r6 version I'm 
getting this error:

gcc -march=i686 -O3 -pipe -I../lib -Wall -Wmissing-prototypes 
-Wstrict-prototypes -DNCH=1   -D_FILE_OFFSET_BITS=64 -DSBINDIR=\"/sbin\" 
-DUSRSBINDIR=\"/usr/sbin\" -DLOGDIR=\"/var/log\" -DVARPATH=\"/var\" 
-DLOCALEDIR=\"/usr/share/locale\" -march=i686 -O3 -pipe  -s  pivot_root.c   
-o pivot_root
pivot_root.c: In function `main':
pivot_root.c:20: invalid register name `r0' for register variable
pivot_root.c:20: invalid register name `r1' for register variable
pivot_root.c:20: invalid register name `r0' for register variable
pivot_root.c:20: unknown register name `lr' in `asm'
pivot_root.c: In function `pivot_root':
pivot_root.c:20: invalid register name `r0' for register variable
pivot_root.c:20: invalid register name `r1' for register variable
pivot_root.c:20: invalid register name `r0' for register variable
pivot_root.c:20: unknown register name `lr' in `asm'
make[1]: *** [pivot_root] Error 1
make[1]: *** Waiting for unfinished jobs
make[1]: Leaving directory 
`/var/tmp/portage/util-linux-2.11z-r6/work/util-linux-2.11z/mount'
make: *** [all] Error 1

!!! ERROR: sys-apps/util-linux-2.11z-r6 failed.
!!! Function src_compile, Line 100, Exitcode 2
!!! emake failed

Any advice?



pgp0.pgp
Description: signature


Re: [gentoo-user] window focus in fluxbox

2003-08-14 Thread Alexander Futasz
On Sun, 03 Aug 2003 11:11:12 -0500, Andrew Gaffney wrote:

> I have fluxbox as my WM. When I'm using Mozilla, if I switch windows
> by using Mozilla's 'Window' menu, the new one comes to the front, but
> the old one still has focus in the background until I click in the new
> one.

Why don't you try openbox as WM? It's forked from blackbox like fluxbox,
but is IMHO much better than these two. It doesn't have the tabs from
fluxbox, but is standards compliant and has some other neat stuff. The
focus problem you have doesn't occure with openbox, I just tried. I'd
recommend openbox-2.3.1 which is masked ~x86, but works fantastic here.

Alex

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Blackbox

2003-08-14 Thread Alexander Futasz
On Mon, 4 Aug 2003 11:06:10 -0400, [EMAIL PROTECTED] wrote:
> Is it easy to install Blackbox on a Gentoo system? Is it more stable
> and faster than KDE? Do you suggest me any other GUI?

I would suggest openbox. It looks and performs better than fluxbox or
blackbox, IMHO.

# ACCEPT_KEYWORDS=~x86 emerge =x11-wm/openbox-2.3.1

Alex

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Backups

2003-08-11 Thread Alexander Futasz
On 11 Aug 2003 07:09:08 +0800, William Kenworthy wrote:
> On Mon, 2003-08-11 at 06:22, Chris I wrote:

> > > $ ll /etc/gentoo-release
> > > -rw-r--r--1 root root   35 Jul 30 23:08
> > > /etc/gentoo-release
> > 
> > iirc, gentoo-release was part of the initial tarball that you
> > installed the system with, and no package claims ownership of the
> > file.

> Probably not, from a 1.1 (I think) installed system: "Gentoo Base
> System version 1.4.3.8p1"
> 
> Same on an older version

I have the same version on a system installed from 1.4rc(something)

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Blackbox

2003-08-10 Thread Alexander Futasz
On 06 Aug 2003 15:16:44 -0700, Mark Knecht wrote:
> On Wed, 2003-08-06 at 14:01, Alexander Futasz wrote:
> > I would suggest openbox. It looks and performs better than fluxbox
> > or blackbox, IMHO.
> > 
> > # ACCEPT_KEYWORDS=~x86 emerge =x11-wm/openbox-2.3.1

>Hi. I've been pretty happy with fluxbox, but things can always get
> better, right?
> 
>How do you measure performance to say it's better?

When I said it performs better than I didn't mean speed. English isn't
my native language, sorry. I prefer openbox because it is standards
compliant, its xft font rendering is better, edge resistance, pixmaps
buttons, excellent extra keyhandler called epist ..etc. Maybe fluxbox
has some of this stuff as well now, I don't know as I don't use it
anymore.

Alex

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] How to unmask gcc 3.3?

2003-07-31 Thread Alexander Futasz
On Thu, 31 Jul 2003 14:45:08 +1000, Jonathan Kelly wrote:
> On Wed, 30 Jul 2003 17:26:49 +0200
> "Christian Aust" <[EMAIL PROTECTED]> wrote:

> > package.unmask only works for packages masked in
> > /usr/portage/profiles/package.mask, not for ~arch masking.

> Actually, I think you've got this the wrong way around.

No, he does not.

> I'm pretty
> sure from my testing it only unmasks ~x86 masking.

Not at all.

>I can't get gcc-3.3
> to unmask using /etc/portage/package.mask and it's masked in
> /etc/make.profile/packages.

First off, gcc-3.3 is not masked in /etc/make.profile/packages, maybe
you want to read the comments in that file to understand how it works?
Also how do you *unmask* packages with *package.mask*?

> I *CAN* unmask gimp-1.3.17 using
> /etc/portage/package.mask and it ISN'T masked in
> /etc/make.profile/packages.

Of course it's not there, please see above.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Spam Query

2003-07-25 Thread Alexander Futasz
On Wed, 23 Jul 2003 22:17:39 +0100, Tom Wesley wrote:
> > Is there any spam filters out there, that can maybe redflag certain
> > email, which it thinks is spam, so that I can use my mailer to
> > filter it out, and then change the 'spam filter' if it gets it
> > wrong?

> [EMAIL PROTECTED] emerge -s spam
> Searching...
> [ Results for search key : spam ]
> [ Applications found : 3 ]

$ emerge -S spam
Searching...   
[ Results for search key : spam ]
[ Applications found : 9 ]

--
[EMAIL PROTECTED] mailing list



  1   2   >