[gentoo-user] apache2 update

2005-09-23 Thread q-parser

Hi.

I've just updated my apache2 and I found out there were several changes 
done. I mean replacing apache2/conf/apache2.conf with apache2/httpd.conf 
and stuff. But it's not the issue. I have a problem with getting php 
back to work. In /etc/conf.d/apache2 there's that APACHE2_OPTS=-D 
DEFAULT_VHOST. I've added -D PHP4 there, restarted server, but it does 
still not parse any php file.


q-parser
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] mod_perl2

2005-09-11 Thread q-parser

Antoine wrote:


Hi,
I just can't seem to figure out how to get perl working on apache2. 
There don't seem to be any decent gentoo-specific docs, and it seems 
like the names of config files are changing constantly :-(.
Anyway, I have installed ~x86 apache2 and mod_perl. What do I do now? 
I have tried to test things but when I put the following in httpd.conf 
apache no longer starts.


Alias /perl/ /home/httpd/perl/
 Location /perl 
SetHandler  perl-script  
PerlHandler Apache::Registry 
  Options ExecCGI 
   PerlSendHeader 
On PerlSetupEnv On   /Location


tux ~ # /etc/init.d/apache2 restart
 * Apache2 has detected a syntax error in your configuration files:
Syntax error on line 1104 of /etc/apache2/httpd.conf:
Invalid command 'PerlHandler', perhaps mis-spelled or defined by a 
module not included in the server configuration
Can someone point me in the right direction? It seems a lot more 
complicated than simply adding -D PHP4...

Cheers
Antoine


I have installed mod_perl with no diffuculties. All I had to do after 
installing was to add update /etc/conf.d/apache2 and add -D PERL to line 
APACHE2_OPTS. I restarted apache and perl was working.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Apache vhosts revisited

2005-09-05 Thread q-parser

John Dangler wrote:

After going back through the entire thread dealing with the vhosts 
problem that was running here recently, I tried to setup my local 
fileserver with the ‘default’ apache server, and adding 1 virtual host.


my apache2.conf file is basically a default (out of the box) setup, 
with the line


Include conf/vhosts/vhsots.conf uncommented so that it is included.

my vhosts.conf file has

NameVirtualHost 192.168.1.36:80

VirtualHost 192.168.1.36:80

ServerName Mambo

DocumentRoot /var/www/localhost/htdocs

/VirtualHost

VirtualHost 192.168.1.36:80

ServerName GenoFit

DocumentRoot /usr2/genofit/public

Driectory /usr2/genofit/public

order deny,allow

Allow from all

AllowOverride All

Options FollowSymLinks

/Directory

/VirtualHost

from the local machine, both hosts are accessible.

from another machine on the same router (192.168.1.35):

browsing to 192.168.1.36 gives me the Apache default page.

browsing to 192.168.1.36/GenoFit gives me “Not Found” The requested 
URL /GenoFit was not found on the server


browsing to 192.168.1.36/Mambo gives me “Not Found” The requested URL 
/Mambo was not found on the server


ping works in both directions, so I’m sure that it’s something I 
did/didn’t do correctly in the config files.


After reading through the wiki docs on virtual hosts, and the docs on 
the apache site (which are a little harder to digest), I think that 
the vhosts file is ok, but I’m not sure about the apache2.conf file…


Any input is appreciated.

John D

I don't see much into this, but will it not be in confict if you use the 
same IP and port for 2 ServerNames? I would use different ports for 
these two webs instead.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [OT] Apache Virtual Host

2005-09-03 Thread q-parser
I have a different problem now. I've migrated the whole program to my 
server, but it does not work there. I set up different ports for it and 
server does not listen to them, though I have Listen directives. I'm 
getting time-outs, but I don't know why. Does anybody have any idea why 
apache does not listen to my my ports, no matter what they are? Thanks


Michael Crute wrote:

Just a note for the future. Whenever you create a virual host that 
points to a directory you must create a directory container inside of 
the virual host container that sets up the permissions for the 
directory otherwise your will always get a 403 error.


-Mike

On 8/7/05, *q-parser* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Yes, that's it! Many thanks...I hope, there'll be no other problems.

Michael Crute wrote:

 Try this...

 VirtualHost Gentoo-drak:85
ServerAdmin [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
DocumentRoot /usr/local/koha/opac/htdocs
ServerName Gentoo-drak

ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
Redirect permanent index.html
 http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl
  http://gentoo-drak:85/cgi-bin/koha/opac-main.pl

ErrorLog /usr/local/koha/log/opac-error_log
TransferLog /usr/local/koha/log/opac-access_log

SetEnv PERL5LIB /usr/local/koha/intranet/modules
SetEnv KOHA_CONF /etc/koha.conf

Directory /usr/local/koha/opac/htdocs
   Options Indexes FollowSymLinks
   AllowOverride None
   Order allow,deny
   Allow from all
/Directory
 /VirtualHost


 On 8/7/05, *q-parser* [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
 mailto: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
wrote:

 Thanks for help, however, it didn't work. I'm still getting
403 - You
 don't have permission to access / on this server.
 I think it's not necessary to define virtual hosts in
vhosts.conf
 as it
 is, to my knowledge, included to apache2.conf, so does my
config. Any
 other suggestions for this? This is getting rather pushy.

 Paul Raison wrote:

  To use virtual hosting with Apache2, you should them up in the
  /etc/apache2/conf/vhosts/vhosts.conf file. Then you need
to add
 this
  directive within the Virtual Host block:-
 
  directory /usr/local/koha/opac/cgi-bin/
  Order allow,deny
  Allow from all
  /directory
 
  Repeat this section for /usr/local/koha/opac/htdocs/
 
  This should get it working.
 
  Paul
 
  q-parser wrote:
 
  I've got a problem with setting up a virtual host for my
koha
  perl-based application. It has its own httpd.conf which I
include
  into apache2.conf using Include directive. It looks like
this:
 
  #
  Listen 85
 
  VirtualHost Gentoo-drak:85
ServerAdmin [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
DocumentRoot /usr/local/koha/opac/htdocs
ServerName Gentoo-drak
ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
Redirect permanent index.html
  http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl
ErrorLog /usr/local/koha/log/opac-error_log
TransferLog /usr/local/koha/log/opac-access_log
SetEnv PERL5LIB /usr/local/koha/intranet/modules
SetEnv KOHA_CONF /etc/koha.conf
 
  /VirtualHost
  
  Gentoo-drak is a name of my machine. Ok, when I try to
connect to
  localhost using port 85, I get this error message: You
don't have
  permission to access / on this server. I don't understand
because
  DocumentRoot dir /usr/local/koha/opac/htdocs has 775
permissions.
 
  Could anybody advise me how to get this to work or tip me
out some
  tutorial on virtual hosting?
  Thanks
 
 

 --
 gentoo-user@gentoo.org mailto:gentoo-user@gentoo.org
mailto:gentoo-user@gentoo.org mailto:gentoo-user@gentoo.org
mailing list




 --
 
 Michael E. Crute
 Software Developer
 SoftGroup Development Corporation

 In a world without walls and fences, who needs windows and gates?


--
gentoo-user@gentoo.org mailto:gentoo-user@gentoo.org mailing list




--

Michael E. Crute
Software Developer
SoftGroup Development Corporation

In a world without walls and fences, who needs windows and gates? 



--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [OT] Apache Virtual Host

2005-09-03 Thread q-parser




Michael Crute wrote:
On 9/3/05, q-parser [EMAIL PROTECTED]
wrote:
  
  I
have a different problem now. I've migrated the whole program to my
server, but it does not work there. I set up different ports for it and
server does not listen to them, though I have Listen directives. I'm
getting time-outs, but I don't know why. Does anybody have any idea why

apache does not listen to my my ports, no matter what they are? Thanks


  
  
  
Can you send me your config file or the relevant parts from it?
  
-Mike
  
-- 

Michael E. Crute
Software Developer
SoftGroup Development Corporation
  
Linux, because reboots are for installing hardware.
"In a world without walls and fences, who needs windows and gates?"

Here it is:

# 

Listen 100
Listen 200

# NameVirtualHost is used by one of the optional configurations
detailed below
# Please make sure this line is correct before uncommenting.
# See http://httpd.apache.org/docs/vhosts/ for some guides.

#NameVirtualHost 11.22.33.44
#NameVirtualHost virtual:100

# KOHA's OPAC Configuration
VirtualHost virtual:100
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/koha/opac/htdocs
 ServerName virtual
 ServerPath /usr/local/
 ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
 Redirect permanent index.html
http://virtual:100/cgi-bin/koha/opac-main.pl
 ErrorLog /usr/local/koha/log/opac-error_log
 TransferLog /usr/local/koha/log/opac-access_log
 SetEnv PERL5LIB "/usr/local/koha/intranet/modules"
 SetEnv KOHA_CONF "/etc/koha.conf"
 Directory "/usr/local/koha/opac/htdocs"
 Order allow,deny
 Allow from all
 AllowOverride None
 Options +Includes -FollowSymlinks -Indexes
 #Options Indexes FollowSymLinks
 AddHandler server-parsed .html
 /Directory
 Directory /usr/local/koha/opac/cgi-bin
 Order allow,deny
 Allow from all
 AllowOverride None
 Options +Includes -FollowSymLinks -Indexes
 #Options Indexes FollowSymLinks
 AddHandler server-parsed .html
 /Directory
/VirtualHost

# KOHA's INTRANET Configuration
VirtualHost virtual:200
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/koha/intranet/htdocs
 ServerName virtual
 ScriptAlias /cgi-bin/koha/ "/usr/local/koha/intranet/cgi-bin/"
 Redirect permanent index.html
http://virtual:200/cgi-bin/koha/mainpage.pl
 ErrorLog /usr/local/koha/log/koha-error_log
 TransferLog /usr/local/koha/log/koha-access_log
 SetEnv PERL5LIB "/usr/local/koha/intranet/modules"
 SetEnv KOHA_CONF "/etc/koha.conf"

 Directory "/usr/local/koha/intranet/htdocs"
 Order allow,deny
 Allow from all
 AllowOverride None
 Options +Includes -FollowSymlinks -Indexes
 #Options Indexes FollowSymLinks
 AddHandler server-parsed .html
 /Directory
 Directory /usr/local/koha/intranet/cgi-bin
 Order allow,deny
 Allow from all
 AllowOverride None
 Options +Includes -FollowSymLinks -Indexes
 #Options Indexes FollowSymLinks
 AddHandler server-parsed .html
 /Directory

/VirtualHost

# 

Those port numbers are chosen for explanatory reason, but I wouldn't
object if they worked ;) This whole file is Include-d into
apache2.conf. I emphasize that on my localhost, it works great, with
ports 85 and 8585 instead the two here. The curious thing is, that if I
want to use port 8585 here, the browser shows me main apache page (you
know, as if port 80 is used).
All I want to know is why apache does not 'want' to listen to the given
ports? I don't know, maybe it does, but I'm getting time-outs.





Re: [gentoo-user] [OT] Apache Virtual Host

2005-09-03 Thread q-parser

Michael Crute wrote:

On 9/3/05, *q-parser* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Those port numbers are chosen for explanatory reason, but I
wouldn't object if they worked ;) This whole file is Include-d
into apache2.conf. I emphasize that on my localhost, it works
great, with ports 85 and 8585 instead the two here. The curious
thing is, that if I want to use port 8585 here, the browser shows
me main apache page (you know, as if port 80 is used).
All I want to know is why apache does not 'want' to listen to the
given ports? I don't know, maybe it does, but I'm getting time-outs.


Well you really don't need those Listen directives, those will cause 
the main server to listen on those ports (thus the reason you see the 
main page). You DO need NameVirtualHost directives for each port you 
want to vhost on though. Try adding NameVirtualHosts for the ports and 
see if that works.


-Mike

--

Michael E. Crute
Software Developer
SoftGroup Development Corporation

Linux, because reboots are for installing hardware.
In a world without walls and fences, who needs windows and gates? 


Unfortunately, it was no help :( I'll try to reinstall Koha (that's what 
I'm trying to get working) and see if the problem persists. But I 
strongly believe that there's problem with apache or vhost.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [OT] Apache Virtual Host

2005-08-07 Thread q-parser
Thanks for help, however, it didn't work. I'm still getting 403 - You 
don't have permission to access / on this server.
I think it's not necessary to define virtual hosts in vhosts.conf as it 
is, to my knowledge, included to apache2.conf, so does my config. Any 
other suggestions for this? This is getting rather pushy.


Paul Raison wrote:

To use virtual hosting with Apache2, you should them up in the 
/etc/apache2/conf/vhosts/vhosts.conf file. Then you need to add this 
directive within the Virtual Host block:-


directory /usr/local/koha/opac/cgi-bin/
Order allow,deny
Allow from all
/directory

Repeat this section for /usr/local/koha/opac/htdocs/

This should get it working.

Paul

q-parser wrote:

I've got a problem with setting up a virtual host for my koha 
perl-based application. It has its own httpd.conf which I include 
into apache2.conf using Include directive. It looks like this:


#
Listen 85

VirtualHost Gentoo-drak:85
  ServerAdmin [EMAIL PROTECTED]
  DocumentRoot /usr/local/koha/opac/htdocs
  ServerName Gentoo-drak
  ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
  Redirect permanent index.html 
http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl

  ErrorLog /usr/local/koha/log/opac-error_log
  TransferLog /usr/local/koha/log/opac-access_log
  SetEnv PERL5LIB /usr/local/koha/intranet/modules
  SetEnv KOHA_CONF /etc/koha.conf

/VirtualHost

Gentoo-drak is a name of my machine. Ok, when I try to connect to 
localhost using port 85, I get this error message: You don't have 
permission to access / on this server. I don't understand because 
DocumentRoot dir /usr/local/koha/opac/htdocs has 775 permissions.


Could anybody advise me how to get this to work or tip me out some 
tutorial on virtual hosting?

Thanks





--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [OT] Apache Virtual Host

2005-08-07 Thread q-parser

Yes, that's it! Many thanks...I hope, there'll be no other problems.

Michael Crute wrote:


Try this...

VirtualHost Gentoo-drak:85
   ServerAdmin [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
   DocumentRoot /usr/local/koha/opac/htdocs
   ServerName Gentoo-drak

   ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
   Redirect permanent index.html 
http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl 
http://gentoo-drak:85/cgi-bin/koha/opac-main.pl


   ErrorLog /usr/local/koha/log/opac-error_log
   TransferLog /usr/local/koha/log/opac-access_log

   SetEnv PERL5LIB /usr/local/koha/intranet/modules
   SetEnv KOHA_CONF /etc/koha.conf

   Directory /usr/local/koha/opac/htdocs
  Options Indexes FollowSymLinks
  AllowOverride None
  Order allow,deny
  Allow from all
   /Directory
/VirtualHost


On 8/7/05, *q-parser* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Thanks for help, however, it didn't work. I'm still getting 403 - You
don't have permission to access / on this server.
I think it's not necessary to define virtual hosts in vhosts.conf
as it
is, to my knowledge, included to apache2.conf, so does my config. Any
other suggestions for this? This is getting rather pushy.

Paul Raison wrote:

 To use virtual hosting with Apache2, you should them up in the
 /etc/apache2/conf/vhosts/vhosts.conf file. Then you need to add
this
 directive within the Virtual Host block:-

 directory /usr/local/koha/opac/cgi-bin/
 Order allow,deny
 Allow from all
 /directory

 Repeat this section for /usr/local/koha/opac/htdocs/

 This should get it working.

 Paul

 q-parser wrote:

 I've got a problem with setting up a virtual host for my koha
 perl-based application. It has its own httpd.conf which I include
 into apache2.conf using Include directive. It looks like this:

 #
 Listen 85

 VirtualHost Gentoo-drak:85
   ServerAdmin [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
   DocumentRoot /usr/local/koha/opac/htdocs
   ServerName Gentoo-drak
   ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
   Redirect permanent index.html
 http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl
   ErrorLog /usr/local/koha/log/opac-error_log
   TransferLog /usr/local/koha/log/opac-access_log
   SetEnv PERL5LIB /usr/local/koha/intranet/modules
   SetEnv KOHA_CONF /etc/koha.conf

 /VirtualHost
 
 Gentoo-drak is a name of my machine. Ok, when I try to connect to
 localhost using port 85, I get this error message: You don't have
 permission to access / on this server. I don't understand because
 DocumentRoot dir /usr/local/koha/opac/htdocs has 775 permissions.

 Could anybody advise me how to get this to work or tip me out some
 tutorial on virtual hosting?
 Thanks



--
gentoo-user@gentoo.org mailto:gentoo-user@gentoo.org mailing list




--

Michael E. Crute
Software Developer
SoftGroup Development Corporation

In a world without walls and fences, who needs windows and gates? 



--
gentoo-user@gentoo.org mailing list



[gentoo-user] [OT] Apache Virtual Host

2005-07-28 Thread q-parser
I've got a problem with setting up a virtual host for my koha 
perl-based application. It has its own httpd.conf which I include into 
apache2.conf using Include directive. It looks like this:


#
Listen 85

VirtualHost Gentoo-drak:85
  ServerAdmin [EMAIL PROTECTED]
  DocumentRoot /usr/local/koha/opac/htdocs
  ServerName Gentoo-drak
  ScriptAlias /cgi-bin/koha/ /usr/local/koha/opac/cgi-bin/
  Redirect permanent index.html 
http://Gentoo-drak:85/cgi-bin/koha/opac-main.pl

  ErrorLog /usr/local/koha/log/opac-error_log
  TransferLog /usr/local/koha/log/opac-access_log
  SetEnv PERL5LIB /usr/local/koha/intranet/modules
  SetEnv KOHA_CONF /etc/koha.conf

/VirtualHost

Gentoo-drak is a name of my machine. Ok, when I try to connect to 
localhost using port 85, I get this error message: You don't have 
permission to access / on this server. I don't understand because 
DocumentRoot dir /usr/local/koha/opac/htdocs has 775 permissions.


Could anybody advise me how to get this to work or tip me out some 
tutorial on virtual hosting?

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



Re: [gentoo-user] konsole font

2005-06-29 Thread q-parser

Philip Webb wrote:


050628 q-parser wrote:
 


I've emerged kde-3.4.1 recently  the font in Konsole is different.
How do I set it back to normal ?
   



First try the Konsole 'settings' menu - 'font' - 'custom',
then try selecting 'Fixed (gnu) regular 13'.  That might help.

 


Yes, that's it. Thanks a lot.
--
gentoo-user@gentoo.org mailing list



[gentoo-user] konsole font

2005-06-28 Thread q-parser

Hi.

I've emerged kde-3.4.1 recently and I noticed that the font in Konsole 
is different. It no longer is so smooth and nice. I've tried to combine 
various combinations of fonts, sizes and it still isn't what it used to 
be. When I want to set font to Linux an error dialog appears that 
there's no such font or so. How do I set it back to normal. Thanks.

--
gentoo-user@gentoo.org mailing list



[gentoo-user] Koha on Gentoo

2005-06-28 Thread q-parser
Does anybody have any experience with Koha running on Gentoo? I'm trying 
to get it to work but I'm getting hopeless. The problem might be in 
setting virtual host on Apache but I think I have everything configured 
correctly.

--
gentoo-user@gentoo.org mailing list



[gentoo-user] KDE 3.4.1 won't start

2005-06-26 Thread q-parser

Hi.

I've just emerged kde-meta-3.4.1, but it won't start after issuing 
startx. I changed XSESSION in /etc/rc.conf to kde-meta-3.4.1 but 
still nothing. I could only start from within the X calling startkde 
in xterm. And it still don't work properly. I've also updated configs 
using etc-update that were mentioning change from kde 3.3 to 3.4. Any 
suggestions?

--
gentoo-user@gentoo.org mailing list



[gentoo-user] majordomo issue

2005-06-08 Thread q-parser

Hi!

I have a problem with majordomo. Everything had been ok until recently 
when it stopped working. The log says that user majordomo is not able to 
write to /usr/tmp but this folder has 777 mod set on it. I was thinking 
that my mail server was badly configured, however I can send and receive 
mails.


Thanks for suggestions.
q-parser
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Traffic monitor

2005-05-21 Thread q-parser




Jerry McBride wrote:

  On Saturday 21 May 2005 06:56 pm, Joseph Drake wrote:
  
  
Does anyone know any good traffic monitor? I want to how much data is
transported when my machine's up. I emerged traffic-vis, but I don't
know how it works. Thanks for any advice.


  
  
I have a number of "text mode only" servers running iptraf for network 
monitoring. Works quite well. If you need nicely formatted reports and 
charts, you can't beat ntop, but you need a browser to view the data.

Cheers.
  

Ok, thanks. I'm going to try ntop.




Re: [gentoo-user] Traffic monitor

2005-05-21 Thread q-parser




Jerry McBride wrote:

  On Saturday 21 May 2005 06:56 pm, Joseph Drake wrote:
  
  
Does anyone know any good traffic monitor? I want to how much data is
transported when my machine's up. I emerged traffic-vis, but I don't
know how it works. Thanks for any advice.


  
  
I have a number of "text mode only" servers running iptraf for network 
monitoring. Works quite well. If you need nicely formatted reports and 
charts, you can't beat ntop, but you need a browser to view the data.

Cheers.
  

So I installed ntop, ran it and now what? 




Re: [gentoo-user] links in Thunderbird

2005-05-13 Thread q-parser




Arran Fraser wrote:

  I recently did my first-in-a-long-while "emerge world".  Now, when I
click a link in Thunderbird nothing happens.  I'd like the link to be
opened in Firefox (of course).  I'm using KDE.

Any ideas?


--
Arran
  

Something similar here. I'm getting an error dialog saying:
"Epiphany appears to have crashed or been killed the last time it was
run."
And shortly after another one comes: "Epiphany can't be used now.
Mozilla initialization failed. Check your MOZILLA_FIVE_HOME
environmental variable."

Anybody knows what to do with it?





Re: [gentoo-user] links in Thunderbird

2005-05-13 Thread q-parser




Andrew Gaffney wrote:

  q-parser wrote:
  
  
Arran Fraser wrote:



  I recently did my first-in-a-long-while "emerge world".  Now, when I
click a link in Thunderbird nothing happens.  I'd like the link to be
opened in Firefox (of course).  I'm using KDE.

  

Something similar here. I'm getting an error dialog saying: "Epiphany
appears to have crashed or been killed the last time it was run."
And shortly after another one comes: "Epiphany can't be used now.
Mozilla initialization failed. Check your MOZILLA_FIVE_HOME
environmental variable."

Anybody knows what to do with it?

  
  
How exactly is that similar?

  

Maybe the way it's not working at all?!




Re: [gentoo-user] kde-base/kdelibs-3.3.2-r8 failing compilation

2005-05-01 Thread q-parser
Vittorio wrote:
The compilation of kde-base/kdelibs-3.3.2-r8 dies with the following message:
..
echo dummy.cpp
/bin/sh ../libtool --silent --mode=compile --tag=CXX i686-pc-linux-gnu-g++ 
-DHAV
E_CONFIG_H -I. -I. -I.. -I../dcop -I../kio/kssl -I./.. -I../dcop -I../libltdl 
-I
../kdefx -I../kdecore -I../kdeui -I../kio -I../kio/kio -I../kio/kfile -I.. 
-I/us
r/qt/3/include -I. -I/usr/kde/3.3/include   -D_LARGEFILE64_SOURCE 
-DQT_THREAD_SU
PPORT  -D_REENTRANT  -Wnon-virtual-dtor -Wno-long-long -Wundef -ansi 
-D_XOPEN_SO
URCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W 
-Wpo
inter-arith -Wwrite-strings -DNDEBUG -DNO_DEBUG -O2 -O2 -mcpu=i686 
-march=pentiu
m4 -fomit-frame-pointer -Wformat-security -Wmissing-format-attribute 
-fno-except
ions -fno-check-new -fno-common  -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST 
-DQT_NO
_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION  -c -o dummy.lo dummy.cpp
/bin/sh ../libtool --silent --mode=link --tag=CXX i686-pc-linux-gnu-g++  
-Wnon-v
irtual-dtor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE 
-Wcas
t-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith 
-Wwrite-strings
-DNDEBUG -DNO_DEBUG -O2 -O2 -mcpu=i686 -march=pentium4 -fomit-frame-pointer 
-Wfo
rmat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new 
-fno-com
mon  -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT 
-DQT_NO_
TRANSLATION-o libkio.la -rpath /usr/kde/3.3/lib -version-info 6:0:2 
-no-unde
fined -Wl,--no-undefined -Wl,--allow-shlib-undefined -L/usr/lib 
-L/usr/qt/3/lib
-L/usr/kde/3.3/lib   dummy.lo kssl/libkssl.la kio/libkiocore.la 
kio/libksycoca.l
a bookmarks/libkbookmarks.la 
kfile/libkfile.la ../kdeui/libkdeui.la ../kdesu/lib
kdesu.la ../kwallet/client/libkwalletclient.la -lz -lfam
i686-pc-linux-gnu-g++: //usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.5/libstdc++.so: 
No such file or directory
make[3]: *** [libkio.la] Error 1
make[3]: Leaving directory 
`/var/tmp/portage/kdelibs-3.3.2-r8/work/kdelibs-3.3.2/kio'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory 
`/var/tmp/portage/kdelibs-3.3.2-r8/work/kdelibs-3.3.2/kio'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory 
`/var/tmp/portage/kdelibs-3.3.2-r8/work/kdelibs-3.3.2'
make: *** [all] Error 2

!!! ERROR: kde-base/kdelibs-3.3.2-r8 failed.
!!! Function kde_src_compile, Line 166, Exitcode 2

What should I do?
Vittorio
 

This whole path looks bad in my opinion:  
//usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.5/libstdc++.so,
I mean double slash in the beginning.

What's your output of qpkg -f libstdc++.so anyway?
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] python fails to emerge

2005-05-01 Thread q-parser
Jonas Pedersen wrote:
Antoine wrote:
Hi,
I am trying to get up to date and python won't emerge. It borks at :
i686-pc-linux-gnu-gcc: glibc: No such file or directory
ln: accessing `libpython2.3.so.1.0': No such file or directory
make: *** [libpython2.3.so] Error 1
I tried revdep-rebuild but it gives me nothing to do with python. Can
anyone shed any light on this?
You are not the only one with this problem. Got the exact same problem 
when I tried to do a 'emerge -uD world' earlier today. Have not found 
a sollution (on the other hand I did not try to find a sollution).


Maybe running fix_libtool_files.sh could repair libraries. I would 
give it a try.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] local network interface

2005-05-01 Thread q-parser




Panos Laganakos wrote:
Hello,
  
  
I am getting an error on startup about not having configured my eth0
right.
  
  
The thing is i don't have network access on that machine neither an
ethernet card. So i think loopback (lo) should be enough, no matter
though, Gentoo asks me to specify one.
  
  
What should i do then, what configuration should fit this particular
need?
  
  
file in question: "/etc/conf.d/net"
  
  
Thanks in advance.
  

Maybe you should check if eth0 is set to start. Check
"rc-status" and remove eth0 from there if necessary.




Re: [gentoo-user] local network interface

2005-05-01 Thread q-parser




Panos Laganakos wrote:
q-parser
wrote:
  
  
  Panos Laganakos wrote:


Hello,
  
  
I am getting an error on startup about not having configured my eth0
right.
  
  
The thing is i don't have network access on that machine neither an
ethernet card. So i think loopback (lo) should be enough, no matter
though, Gentoo asks me to specify one.
  
  
What should i do then, what configuration should fit this particular
need?
  
  
file in question: "/etc/conf.d/net"
  
  
Thanks in advance.
  


Maybe you should check if eth0 is set to start. Check "rc-status" and
remove eth0 from there if necessary.

  
  
So, i could also delete the file, as i don't need it?
  

No, just leave it there. I don't know where would you get that
file, if you ever considered having your computer connected to net. In
/etc/conf.d are many files that you don't need to use currently.