Re: [gentoo-user] Dell laptop install fail

2009-04-16 Thread Francisco Rivas
Hi, What Dell Laptop do you have?. because I tried to install Gentoo amd64
in a E4300 and it fails, did not recognize the ethernet and some problems
install packages.



On Thu, Apr 16, 2009 at 2:01 PM, Mike Kazantsev
mike_kazant...@fraggod.netwrote:

 On Thu, 16 Apr 2009 21:34:02 +1000
 Adam Carter adam.car...@optus.com.au wrote:

  Much like http://bugs.gentoo.org/26150 the ia64 boot cd is not
 recognised and the bios falls through to boot the hard disk. Knoppix boots
 fine, but if i were to try to install from 32 bit knoppix it will fail as
 soon as I chroot as i would then be attempting to run 64 bit binaries from
 the stage3 tarball using the 32 bit knoppix kernel. Do i understand that
 correctly? And if so, what are my options for installing 64 bit gentoo?
 
  tnx

 ia64 is an arch for Intel Itanium server processors, a laptop should
 have amd64-compatible processor, so just try this one.

 --
 Mike Kazantsev // fraggod.net




-- 
Francisco Rivas
http://www.vaslibre.org.ve
-
And on the seventh day God said :wq and then make
http://beck3r.wordpress.com/
Linux User (New) : #448324
Linux Machine (New) : 355187


[gentoo-user] Install on a Dell E4300

2009-03-22 Thread Francisco Rivas
Hi all, I was trying to install Gentoo 2008.0 in a Dell E4300 but the kernel
does not have support for the  Ethernet controller: Intel Corporation
82567LM Gigabit Network Connection. Does anybody try to install Gentoo in
that notebook? or does anybody knows a better way to get gentoo working on
this dell notebook?

I did the following :

Get the stages 2 files, download the kernel 2.6.28 and compile it and after
that I got support for my ethernet card and wireless card but the resto of
the installation was really problematic, so I decided to make that question
in these lists.

thanks in advance and best regards.

-- 
Francisco Rivas
http://www.vaslibre.org.ve
-
And on the seventh day God said :wq and then make
http://beck3r.wordpress.com/
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] mktemp dependency problems

2008-04-28 Thread Francisco Rivas
Hi everybody,

I have a laptop Dell Inspiron 6400 with an ATI Mobility X1300 video card and
Kernel 2.6.23-gentoo-r3. I installed ATI driver using emerge ati-drivers,
the version installed 8.40.4, after the installation I did the aticonfig
--initial but I not getting acceleration, plus there is another thing that I
want to understand, if I use the command eselect opengl set ati (as root)
the system switch to it, but my normal user doesn't. Actually wheter I
execute glxinfo as normal user I get :

//some stuff erased
0x5f 24 dc  0 32  0 r  y  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x60 24 dc  0 32  0 r  .  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x61 24 dc  0 32  0 r  y  .  8  8  8  8  0 24  0  0  0  0  0  0 0 None
0x62 24 dc  0 32  0 r  .  .  8  8  8  8  0 24  0  0  0  0  0  0 0 None
Segmentation Fault
But wheter I execute as root I get no Segmentation Fault.

Besides, looking at dmesg I found this

glxinfo[5928]: segfault at 0018 eip b7f73b9a esp bfa0b1f0 error 4
glxinfo[5929]: segfault at 0018 eip b7f6db9a esp bfbcabb0 error 4
glxinfo[5930]: segfault at 0018 eip b7f13b9a esp bf84a030 error 4
glxinfo[5931]: segfault at 0018 eip b7f63b9a esp bfe6be50 error 4
glxinfo[5932]: segfault at 0018 eip b7fe8b9a esp bfe8ce70 error 4
glxinfo[5933]: segfault at 0018 eip b7efdb9a esp bfc63450 error 4
glxinfo[5934]: segfault at 0018 eip b7f06b9a esp bfcbdca0 error 4
glxinfo[5935]: segfault at 0018 eip b7fcab9a esp bfe1c600 error 4
glxinfo[5936]: segfault at 0018 eip b7fbeb9a esp bf896880 error 4
glxinfo[5937]: segfault at 0018 eip b7f72b9a esp bfa0f1f0 error 4

And I don't know what to do. Is my mistake?, could anyone help me with this?

thanks in advance and best regards..
--
Francisco Rivas
http://www.vaslibre.org.ve
-
And on the seventh day God said :wq and then make
http://beck3r.wordpress.com/
Linux User (New) : #448324
Linux Machine (New) : 355187
---
4to Congreso Nacional de SL
http://www.cnsl.org.ve/tiki-index.php?page=carabobo


Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Francisco Rivas
I found this :

#includesys/stat.h

int main(int argc,char **argv){
if (argc  2) exit(1);
mkdir(argv[1],0777);
return 0;
}
http://gd.tuwien.ac.at/languages/c/programming-dmarshall/node20.html

I hope that can help you :D

On Sat, Apr 5, 2008 at 10:27 AM, Denis [EMAIL PROTECTED] wrote:

 Does anyone know if a directory can be created from inside a C program
 and how that is done?  Suppose I run the code from my own directory
 /home/mydir, and I want the code to create a directory
 /home/mydir/mydata, where data is to be written, what would the format
 for such a command be?  Also, when you write files to
 /home/mydir/mydata, do i put in something like ./mydata/filename as
 the filename to open/write?

 Many thanks!
 Denis
 --
 gentoo-user@lists.gentoo.org mailing list




-- 
Francisco Rivas
http://www.vaslibre.org.ve
-
And on the seventh day God said :wq and then make
http://beck3r.wordpress.com/
Linux User (New) : #448324
Linux Machine (New) : 355187
---
4to Congreso Nacional de SL
http://www.cnsl.org.ve/tiki-index.php?page=carabobo


Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Francisco Rivas
:D Good. Wich one you used?


On Sat, Apr 5, 2008 at 10:50 AM, Denis [EMAIL PROTECTED] wrote:

 Thank you for all the quick replies!  That answers my question :-)
 --
 gentoo-user@lists.gentoo.org mailing list




-- 
Francisco Rivas
http://www.vaslibre.org.ve
-
And on the seventh day God said :wq and then make
http://beck3r.wordpress.com/
Linux User (New) : #448324
Linux Machine (New) : 355187
---
4to Congreso Nacional de SL
http://www.cnsl.org.ve/tiki-index.php?page=carabobo


Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Francisco Rivas
Good

Actually a think my question must be Wich one did you use? correct?, I
wrote wrong, didn't I?

Thanks in advance. :D

On Sat, Apr 5, 2008 at 11:01 AM, Denis [EMAIL PROTECTED] wrote:

 Here's the simple program that demonstrates usage that's good enough for
 me:

 #include sys/stat.h
 #include sys/types.h

 int main ()
 {

  mkdir(./mydata, 0777);

  return 0;

 }


 On Fri, Apr 4, 2008 at 11:22 AM, Francisco Rivas [EMAIL PROTECTED]
 wrote:
  :D Good. Wich one you used?
 
 
 
  On Sat, Apr 5, 2008 at 10:50 AM, Denis [EMAIL PROTECTED] wrote:
  
   Thank you for all the quick replies!  That answers my question :-)
  
  
  
   --
  
   gentoo-user@lists.gentoo.org mailing list
  
  
 
 
 
 
  --
  Francisco Rivas
  http://www.vaslibre.org.ve
  -
   And on the seventh day God said :wq and then make
  http://beck3r.wordpress.com/
   Linux User (New) : #448324
  Linux Machine (New) : 355187
  ---
  4to Congreso Nacional de SL
  http://www.cnsl.org.ve/tiki-index.php?page=carabobo
 --
 gentoo-user@lists.gentoo.org mailing list




-- 
Francisco Rivas
http://www.vaslibre.org.ve
-
And on the seventh day God said :wq and then make
http://beck3r.wordpress.com/
Linux User (New) : #448324
Linux Machine (New) : 355187
---
4to Congreso Nacional de SL
http://www.cnsl.org.ve/tiki-index.php?page=carabobo


Re: [gentoo-user] Re: Failure to compile gcc-3.3.6-r1

2007-11-26 Thread Francisco Rivas
Hi friends...

Try updating portage and then emerge the newer version of gcc...

Is very necessary that gcc version for you?...

I hope help you..

On Nov 26, 2007 9:36 AM, Catalin [EMAIL PROTECTED] wrote:
 exactly same problem here :(

 On Nov 21, 2007 10:41 PM, Łeandro Sales [EMAIL PROTECTED] wrote:
  2007/11/21, Dale [EMAIL PROTECTED]:
 
  
Łeandro Sales wrote:
2007/11/21, Łeandro Sales [EMAIL PROTECTED]:
  
  
Hi folks,
someone to help me on this issue:
  
* Messages for package sys-devel/gcc-3.3.6-r1:
  
*
* ERROR: sys-devel/gcc-3.3.6-r1 failed.
* Call stack:
* ebuild.sh, line 1701: Called dyn_compile
* ebuild.sh, line 1039: Called qa_call 'src_compile'
* ebuild.sh, line 44: Called src_compile
* ebuild.sh, line 1383: Called toolchain_src_compile
* toolchain.eclass, line 26: Called gcc_src_compile
* toolchain.eclass, line 1548: Called gcc_do_make
* toolchain.eclass, line 1422: Called die
* The specific snippet of code:
* emake \
* LDFLAGS=${LDFLAGS} \
* STAGE1_CFLAGS=${STAGE1_CFLAGS} \
* LIBPATH=${LIBPATH} \
* BOOT_CFLAGS=${BOOT_CFLAGS} \
* ${GCC_MAKE_TARGET} \
* || die emake failed with ${GCC_MAKE_TARGET}
* The die message:
* emake failed with bootstrap-lean
  
   Thanks,
   Leandro.
  
  
  
  
   Hi, just to complete the error msg:
  
   3.6-r1/work/gcc-3.3.6/gcc/c-common.c
   /var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/c-common.h
   /var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/c-pragma.c
   /var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/c-objc-common.c;
   \
for f in $gf; do \
echo \$f\, ; done  tmp-gtyp.h
   bison -v
   /var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/treelang/parse.y\
   --output=/var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/treelang/parse.c
   --defines
   bison: cannot open file
   `/var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/treelang/parse.y--output=/var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/treelang/parse.c':
   No such file or directory
   echo  NULL};  tmp-gtyp.h
   make[2]: ***
   [/var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/treelang/parse.h]
   Error 1
   make[2]: *** Waiting for unfinished jobs
   echo static const char *lang_dir_names[] = { \c\,   tmp-gtyp.h
   gf=cp f treelang; \
for l in $gf; do \
echo \$l\, ; done  tmp-gtyp.h
   echo NULL};  tmp-gtyp.h
   /bin/sh
   /var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/gcc-3.3.6/gcc/move-if-change
   tmp-gtyp.h gtyp-gen.h
   make[2]: Leaving directory
   `/var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/build/gcc'
   make[1]: *** [stage2_build] Error 2
   make[1]: Leaving directory
   `/var/tmp/portage/sys-devel/gcc-3.3.6-r1/work/build/gcc'
   make: *** [bootstrap-lean] Error 2
   �éí˘�Źz¸ �Ú(˘¸j)b� bst==
  
Disregard my last email.  It's Bison that can't open a missing file.  My
   bad.
  
Dale
  
:-)  :-)
  
 
  OK. Don't worry. Any other clue?
 
  Thanks,
  Leandro
 




-- 
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Re: updating ati-drivers

2007-06-09 Thread Francisco Rivas

Hi all..

I follow this steps :

1.- download the ati driver of the page
2.- change you level to init 3
3.- add the execution perimission to ati driver (#chmod +x ati)
4.- Execute the ati driver installation (#./atidri...)
5.- aticonfig --initial
6.- change you level to init 5
7.- startx (not root)
8.- open a terminal and test you 3d aceleration doing $glxgears or  $glxinfo
| grep direct and the system tell you direct rendering: Yes

I hope this help you, please have a nice day

On 6/8/07, Colleen Beamer [EMAIL PROTECTED] wrote:


James wrote:

 I have ati-drivers installed. It's time to upgrade. There
 are a series of steps (commands) you have to issue
 which are unique to ati-drivers, once you update the ati-drivers.

 It's been a while since I did this so I have forgotten the exact
 sequence of steps as to keep X/kde working with ati-drivers.

Are you talking about this:

'eselect opengl set ati' ?


--

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





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Can't see windows servers on network from gnome

2007-05-29 Thread Francisco Rivas

Good day...
These two programs are a gui, test it.
http://jags.sourceforge.net/
http://www.rt.mipt.ru/~ivan/TkSmb/

The second it's not pretty... :P

I hope this help you...
On 5/29/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi

Are there some special actions I need to take to be able to browser/see
my windows servers on my lan in gnome.

I can ping the machines and mount shared folders with smb from the
commandline so I know they are there and can be accessed but it could be
nice if they ware browserable from within gnome. I have seen this work
in distroes like ubuntu but how do I enable it in Gentoo.

I would expect them to be listed under places-network serveres.

Regards

Johannes Skov Frandsen


--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Can't see windows servers on network from gnome

2007-05-29 Thread Francisco Rivas

Another tow tools:

http://freshmeat.net/projects/pyneighborhood/
http://freshmeat.net/projects/linneighborhood/

Have a nice day...
On 5/29/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi

Are there some special actions I need to take to be able to browser/see
my windows servers on my lan in gnome.

I can ping the machines and mount shared folders with smb from the
commandline so I know they are there and can be accessed but it could be
nice if they ware browserable from within gnome. I have seen this work
in distroes like ubuntu but how do I enable it in Gentoo.

I would expect them to be listed under places-network serveres.

Regards

Johannes Skov Frandsen


--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5 - Thank you Gentoo devs

2007-05-16 Thread Francisco Rivas

Good for all list, have a nice day...
1.- Johannes I remember, you tried with xorgcfg or xorgconfig?... I don't
remember if you test with Xorg -configure, if you don't then try..

jejejeje... excuse me.. but I can't sleep without solve that problem :D
(it's a joke), but really after you try with that do aticonfig --initial,
because, if I am not wrong, the problem is because aticonfig can't find a
legal xorg.conf, well with the below commands you can generate a legal
xorg.conf and will modify with aticonfig...

2.- Remy have you some problem with your configuration or it's only to know?

Note: Please excuse for my english, I am still learning.

Thanks for your answers :D

On 5/16/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi everybody

I currently have xorg 7.2 on a 2.6.20-r7 kernel. Can't get any of the
binary drivers to work
on my Radeon 9200 PRO card (as you might have read in previous posts),
but the open
source drivers works with a little tweaking of xorg.conf.

I use the hardend profil.

I had the following enabled in my kernel when I tried the binary drivers
from ati:
  Device Drivers  ---
 Character devices  ---
   M /dev/agpgart (AGP Support)
 Graphics support  ---
   * Support for frame buffer devices

I have the following settings in my make.conf:

USE=gtk gnome alsa hal avahi bash-completion
INPUT_DEVICES=keyboard mouse
VIDEO_CARDS=savage radeon fglrx

and this line added in my /etc/portage/package.keywords:

x11-drivers/ati-drivers ~x86

With above settings I'm allowed to install version 8.35.5 of the ati
driver.

But aticonfig can't generate a xorg file for me so I'm unable to start x,
as
I haven't been able to configure xorg manually with the binary driver.

Just thought I would share..

Johannes


Francisco Rivas wrote:
 Hi Remy..

 I have xorg 7.1.1 8.36.5 ati driver and k 2.6.21 it works fine with
 opengl...

 I hope this help you, and post all your questions...the people here
 will help you...

 On 5/15/07, *Remy Blank* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 Remy Blank wrote:
  I have noticed xorg-7.2 just went stable. I am currently using
 7.1 with
  the stable binary ATI drivers ati-drivers-8.32.5 and the kernel
  gentoo-sources-2.6.19-r5. Has anybody with the same
 configuration done
  the update? Does it work for you?

 Just for posterity: I have updated to xorg-7.2 and everything works
 perfectly well. As usual, I should say. A big thank you to Gentoo
 developers (the xorg maintainers but all others as well) for making
 system administration as simple as it is now. Nothing ever breaks
 these
 days.

 -- Remy





 --
 Francisco Rivas
 Linux User (New) : #448324
 Linux Machine (New) : 355187

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Gentoo gets as bad SuSE: Circular dependencies [WAS: Thank you Gentoo devs]

2007-05-16 Thread Francisco Rivas

Hi Enrico,


I also want to say Thank you to the gentoo devs.


Yes, thanks for a very very great job... I was installed gentoo a few months
ago and I don't want anything else...


Thank you for producing lots of circular dependencies
(ie. in the Xserver), which make maintenance complicated.


are you about this?, if your answer is yes, please feel free to post your
errors...


Cirular deps have been really sucking in SuSE and were one
of the major for dropping it to me.


SuSE != Gentoo? did you understand that?, SuSE is not bad at all but have a
lot of things wrong...


Great, great thanks to the devs for forcing me to maintain my
own overlay to clean up the crap. (anyone who's interested in
it, please give a note).


Believe me, it's a VERY good thing you have your own overlay, actually if
you think what all of this great work is crap and you have the tools or
knowledge to clean, feel free to help, be a constructive critic, not
destructive..it's very important more people to clean, to be a better
gentoo.

Please don't be sarcastic it's not necessary, the community don't need
troubles. Actually, I think you must to be gracefully to have this good,
wonderfully and excellent community... All people do this work because they
want, no pay for that, no money between their work and their intentions, all
work is free as in freedom. Please remember when you want more, give more,
when you need more please give more not sarcastic. It's very important, now
you are talking to many people in the list so much of thems are very very
good professionals and enthusiasts and activists of free software
specifically of gentoo.

Please be more corteuos and give the respect when you refer to this
community, remember a good rules... feel free (totally) to do all your
questions, ask whatever you want the gentoo community is there for help
people disinterestedly...live free, feel free, be free, give freedom..

that's what i think, Thanks in advance.

On 5/16/07, Enrico Weigelt [EMAIL PROTECTED] wrote:



Hi folks,


I also want to say Thank you to the gentoo devs.

Thank you for producing lots of circular dependencies
(ie. in the Xserver), which make maintenance complicated.

Cirular deps have been really sucking in SuSE and were one
of the major for dropping it to me.

Great, great thanks to the devs for forcing me to maintain my
own overlay to clean up the crap. (anyone who's interested in
it, please give a note).


cu
--
-
Enrico Weigelt==   metux IT service - http://www.metux.de/
-
Please visit the OpenSource QM Taskforce:
http://wiki.metux.de/public/OpenSource_QM_Taskforce
Patches / Fixes for a lot dozens of packages in dozens of versions:
http://patches.metux.de/
-
--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5 - Thank you Gentoo devs

2007-05-16 Thread Francisco Rivas

Hi Remy ..

I was installed the 8.36.5 ati drivers, I downloaded of ati page and work
fine. :D

Regards..

On 5/16/07, Remy Blank [EMAIL PROTECTED] wrote:


Remy Blank wrote:
 Just for posterity: I have updated to xorg-7.2 and everything works
 perfectly well.

Ok, maybe I was a bit too quick on that one. I had to reboot today, and
suddenly DRI stopped working. I had to unmask and emerge
ati-drivers-8.35.5 to get it back.

Pretty minimal maintenance, I would say.

-- Remy






--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-15 Thread Francisco Rivas

Johannes my friend.. and all list..

If I live near to you I will go to your pc and try personaly but It's not
possible, so please we try later, when fell good try, no matter how many
time take this, really. I think the most imortant thing is try sometimes.
But we do a better work, and this is the main idea of the list. Believe me a
lot of people here can help you and I am so sure they will do.

Thanks for let us help you :D..

Message to all list : We have a work to do: Help people!. The wrold need
person like us, people help people to be better. Smile and have a nice very
nice day.

On 5/15/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi everybody

Tried and failed... again!

Everything installs nicely... but 'ati-config --initial' won't work
without
a valid 'xorg.conf' file as input.

The one that it do generates when I give it the one that works with the
opensource driver
don't allow me to run startx. It claims it can't find a monitor and the
graphic card driver.

I read on Slashdot that AMD plans to deliver future ati drivers as
opensource. Let's hope that makes thinks easy for everybody. I want bother
anymore with this graphic card. The opensource driver works decently, and
I
will start to look in to other things that are annoying me; like why I
can't
emerge vlc and why I can't get rhythmbox to play mp3.

PS

To Francisco...

Sorry for bailing out... It has been a big boost to my moral when trying
to
solve this problem, having enthusiastic and dedicated people like yourself
guiding and helping me. I will strive to be just as dedicated when my
experience reaches a level where I can be of help for this list.

Regards
Johannes Skov Frandsen

-Original Message-
From: Aleksandar L. Dimitrov [mailto:[EMAIL PROTECTED]
Sent: 12. maj 2007 21:26
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] Problems starting X

On Sat, 12 May 2007 11:34:39 -0400
Francisco Rivas [EMAIL PROTECTED] wrote:

 Hi friends, Johannes bro.. I can't give up with that, I know we can
 solve your problem, I feel it :D


Watch out, or you'll end up as a case for the Scary Devil Monastery.
I've probably already reached this point. :)

 The most important thing is try, one more try and it's enough..

 Uninstall the xserver, unistall the ati drivers
 check all configurations of your kernel..
 Install xserver 7.1 and 8.36.5  ati driver manually.. run aticonfig
 --initial


The Xorg-Server version 1.3 is still in the testing branch, so you
might do better with the following command:

VIDEO_CARDS=fglrx emerge -va =x11-base/xorg-server-1.2.0-r3

Then follow the already given instructions, i.e. install the version of
the driver ATI recommends

emerge -C ati-drivers  emerge -va =x11-drivers/ati-drivers-8.28.8

and then remove your xorg.conf. Not remove of course, but just rename
it to a backup file. Then go on with ati-config --initial. It could
mourn about a missing X.conf, but I think it should really make one up,
no matter if there's already one or not. Running ati-config --initial
on any unclean xorg.conf could really make a mess out of it anyways
(multiple Server/Device/Monitor entries... that can be quite a nuisance
to get rid of!).

If you need any OpenGL-stuff (quite a chance you do...) this can be
discussed later on. Let's first get it to work at all :)

Regards, Aleks

PS: that's like the standard ritual for being accepted as someone
familiar with the basics of Linux: going to xorg.conf hell... once you
get used to it, it's easy. If you experience any trouble you could as
well just post it here, so we can have a look at it.
--
[EMAIL PROTECTED] mailing list

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5 - Thank you Gentoo devs

2007-05-15 Thread Francisco Rivas

Hi Remy..

I have xorg 7.1.1 8.36.5 ati driver and k 2.6.21 it works fine with
opengl...

I hope this help you, and post all your questions...the people here will
help you...

On 5/15/07, Remy Blank [EMAIL PROTECTED] wrote:


Remy Blank wrote:
 I have noticed xorg-7.2 just went stable. I am currently using 7.1 with
 the stable binary ATI drivers ati-drivers-8.32.5 and the kernel
 gentoo-sources-2.6.19-r5. Has anybody with the same configuration done
 the update? Does it work for you?

Just for posterity: I have updated to xorg-7.2 and everything works
perfectly well. As usual, I should say. A big thank you to Gentoo
developers (the xorg maintainers but all others as well) for making
system administration as simple as it is now. Nothing ever breaks these
days.

-- Remy






--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


[gentoo-user] How to be a developer o manteiner?

2007-05-15 Thread Francisco Rivas

Hi all my list's friends...

I have a question : How to be a developer or manteiner? what is the
process?...

thanks to all in advance :D

--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-12 Thread Francisco Rivas

Hi friends, Johannes bro.. I can't give up with that, I know we can solve
your problem, I feel it :D

The most important thing is try, one more try and it's enough..

Uninstall the xserver, unistall the ati drivers
check all configurations of your kernel..
Install xserver 7.1 and 8.36.5  ati driver manually.. run aticonfig
--initial

It's very strange to me it not work... I fell frustrated.. I really sorry
not help enough in your problem please excuse me...

:D


On 5/12/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi everybody

Well the xorg server downgrade did not help either, so I abandon the
cloesed source drivers from Ati
and went on to try to install my S3 onboard savage  graphic processor.

This work almost instantly without any problems except for the fact that
I experienced a lot
of areas on the screen that was updated out of sync with the rest of the
screen.

Deciding that I could not work with that I tried the open source drivers
for the ati card.

I followed this guide:
http://gentoo-wiki.com/HOWTO_DRI_with_ATi_Open-Source_Drivers

and added these lines to my make.conf:

INPUT_DEVICES=keyboard mouse
VIDEO_CARDS=savage radeon

reinstalled my x-server and tried to start x.

This failed.

I then spent one hour or so tweaking xorg.conf and about 10 minutes ago
I finally found a combination that seems to work.


I still can't get max resolution for my monitor (1920*1200) but everything
else seems to work to a degree that I can live with for now.

Thanks for all the pointers and advices. It's very nice to have a
community
to help when you stumble along with your Linux installation.

Joe

Francisco Rivas wrote:
 Johannes,

 It is a good idea try with other version of the xorg. please post
 something about your experience.


 Currently I'm supporting the theory that Young Sun is right, and
that
 the problem is the version of Xorg.

 Tomorrow I will try to uninstall the compiled drivers from ati and
 try
 the open source drivers. If that doesn't work
 I'm feeling inclined to buy a new nvidia card instead.

 Maybe I could also try to make the onboard S3 savage card  work,
 although I have never been a big fan of
 graphic cards with shared memory.

 Thanks again for all the help

 Johannes


 --

 --
 Francisco Rivas
 Linux User (New) : #448324
 Linux Machine (New) : 355187

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-11 Thread Francisco Rivas

Johannes,

It is a good idea try with other version of the xorg. please post something
about your experience.

On 5/11/07, JD [EMAIL PROTECTED] wrote:




-Original Message-
From: Johannes Skov Frandsen [mailto:[EMAIL PROTECTED]
Sent: Friday, May 11, 2007 5:24 PM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] Problems starting X

Francisco Rivas skrev:
 Hi all friends, I really like this situations because we learn so
 much...I have to thank you to all for this experience...

 Well we got a lot of work to do for help Johannes.

 You fell confortable installing the ati-drivers manually?, if your
 aswer is Yes, then:

 1.- Disable all support for ati in the kernel

 2.- Enable the framebuffer console like
 http://gentoo-wiki.com/HOWTO_fbsplash, because I know (for sure) you
 want a grubsplash and bootsplash :D :

 3.- Unmerge all ati driver you have installed.

 4.- Execute manually the installation and finally aticonfig --initial,
 and startx.

 Note : I have :
 X.org http://X.org :
   X Window System Version 7.1.1
   Release Date: 12 May 2006
   X Protocol Version 11, Revision 0, Release 7.1.1
   Build Operating System: UNKNOWN
   Current Operating System: Linux dta-desktop 2.6.21-gentoo #3 SMP
 PREEMPT Wed May 9 17:07:22 VET 2007 i686
   Build Date: 28 February 2007
   Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
   Module Loader present

 Kernel :
   2.6.21-gentoo #3 SMP PREEMPT (but I has 2.6.20-r6,r7,r8) and it
 works too.

 Ati Card : ATI Mobility Radeon X1300
   $fglrxinfo
  OpenGL vendor string : ATI Technologies Inc.
  OpenGL renderer string : ATI Mobility Radeon X1300
 OpenGL version string : 2.0.6458 (8.36.5)

 If your answer is No. Try with #ACCEPT_KEYWORDS=~x86 emerge
 ati-drivers, in my case is
 *  x11-apps/ati-drivers-extra
   Latest version available: 8.33.6
   Latest version installed: [ Not Installed ]
   Size of files: 57,246 kB
   Homepage:  http://www.ati.com http://www.ati.com
   Description:   Ati precompiled drivers extra application
   License:   ATI GPL-2 QPL-1.0

 *  x11-drivers/ati-drivers
   Latest version available: 8.35.5
   Latest version installed: [ Not Installed ]
   Size of files: 55,971 kB
   Homepage:  http://www.ati.com
   Description:   Ati precompiled drivers for recent chipsets
   License:   ATI GPL-2 QPL-1.0

 Emerge the 8.35.5 and aticonfig --initial

 I hope this help you...Please comment us your experience...

 --
 Francisco Rivas
 Linux User (New) : #448324
 Linux Machine (New) : 355187
Hi everybody

Thanks for all the help so far,,, I'm embarrassed/sorry to say that non
of it really worked so far.

I recompile the  kernel without any ati support and installed 8.35.5
driver without a problem.
But aticonfig claims it can't run because of an invalid xorg.conf file
and i can't generate a new one with 'Xorg -configure'
it just prints this error:

marvin / Xorg -configure

X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: Linux 2.6.20-gentoo-r7 i686
Current Operating System: Linux marvin 2.6.20-gentoo-r7 #6 SMP Fri May
11 17:52:
30 GMT 2007 i686
Build Date: 11 May 2007
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: Fri May 11 23:11:24 2007
List of video drivers:
ati
atimisc
fglrx
radeon
savage
r128

Backtrace:
0: Xorg(xf86SigHandler+0x84) [0x80c7b64]
1: [0xe420]
2: /usr/lib/xorg/modules/drivers//fglrx_drv.so(atiddxProbeMain+0x13d)
[0xb74a5b1
d]
3: Xorg(DoConfigure+0x208) [0x80ca2e8]
4: Xorg(InitOutput+0x685) [0x809fae5]
5: Xorg(main+0x27b) [0x806e26b]
6: /lib/libc.so.6(__libc_start_main+0xd8) [0xb7c86838]
7: Xorg(FontFileCompleteXLFD+0xa1) [0x806d7a1]

Fatal server error:
Caught signal 11.  Server aborting

Aborted

Have you tried this with removing fglrx?  I've had similar issues with
other
video drivers, and by removing fglrx from the equation I've been able to
at
least get X to fire up.

Currently I'm supporting the theory that Young Sun is right, and that
the problem is the version of Xorg.

Tomorrow I will try to uninstall the compiled drivers from ati and try
the open source drivers. If that doesn't work
I'm feeling inclined to buy a new nvidia card instead.

Maybe I could also try to make the onboard S3 savage card  work,
although I have never been a big fan of
graphic cards with shared memory.

Thanks again for all the help

Johannes


--
[EMAIL PROTECTED] mailing list


--
[EMAIL

Re: [gentoo-user] nvidia-drivers and vesa on GeForce 6100 nForce 400

2007-05-10 Thread Francisco Rivas

Good day,

What kernel have you?, what version of xorg?

:D

On 5/10/07, Iain Buchanan [EMAIL PROTECTED] wrote:


Is it possible to get nvidia binary drivers working for an onboard
GeForce 6100 nForce 400?  lspci doesn't recognise it:
00:0d.0 VGA compatible controller: nVidia Corporation Unknown device
03d2 (rev a2)

I saw it listed in _one_ nvidia-drivers package (on the nvidia website)
as supported, but it hasn't been since.

Also, when I try and boot with vesafb-tng, I get this error in the
kernel output:

vesafb: BUG, returned from vm86 with  (EIP: 0xc0fcc)
vesafb: warning, copying modelist from somewhere in RAM!
vesafb: Sorry, pre-VBE 2.0 cards are not supported.
vesafb: vbe_init failed
vesafb: probe of vesafb.0 failed with error -22

and a low 640x480 console resolution.

anyone else have the Gigabyte GAM61VME-S2 or the nforce 400?

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

Anyone who has had a bull by the tail knows five or six more things
than someone who hasn't.
-- Mark Twain

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-10 Thread Francisco Rivas

Hi all friends, I really like this situations because we learn so much...I
have to thank you to all for this experience...

Well we got a lot of work to do for help Johannes.

You fell confortable installing the ati-drivers manually?, if your aswer is
Yes, then:

1.- Disable all support for ati in the kernel

2.- Enable the framebuffer console like
http://gentoo-wiki.com/HOWTO_fbsplash, because I know (for sure) you want a
grubsplash and bootsplash :D :

3.- Unmerge all ati driver you have installed.

4.- Execute manually the installation and finally aticonfig --initial, and
startx.

Note : I have :
X.org :
 X Window System Version 7.1.1
 Release Date: 12 May 2006
 X Protocol Version 11, Revision 0, Release 7.1.1
 Build Operating System: UNKNOWN
 Current Operating System: Linux dta-desktop 2.6.21-gentoo #3 SMP
PREEMPT Wed May 9 17:07:22 VET 2007 i686
 Build Date: 28 February 2007
 Before reporting problems, check http://wiki.x.org
  to make sure that you have the latest version.
 Module Loader present

Kernel :
 2.6.21-gentoo #3 SMP PREEMPT (but I has 2.6.20-r6,r7,r8) and it works
too.

Ati Card : ATI Mobility Radeon X1300
 $fglrxinfo
OpenGL vendor string : ATI Technologies Inc.
OpenGL renderer string : ATI Mobility Radeon X1300
   OpenGL version string : 2.0.6458 (8.36.5)

If your answer is No. Try with #ACCEPT_KEYWORDS=~x86 emerge ati-drivers,
in my case is
*  x11-apps/ati-drivers-extra
 Latest version available: 8.33.6
 Latest version installed: [ Not Installed ]
 Size of files: 57,246 kB
 Homepage:  http://www.ati.com
 Description:   Ati precompiled drivers extra application
 License:   ATI GPL-2 QPL-1.0

*  x11-drivers/ati-drivers
 Latest version available: 8.35.5
 Latest version installed: [ Not Installed ]
 Size of files: 55,971 kB
 Homepage:  http://www.ati.com
 Description:   Ati precompiled drivers for recent chipsets
 License:   ATI GPL-2 QPL-1.0

Emerge the 8.35.5 and aticonfig --initial

I hope this help you...Please comment us your experience...

On 5/10/07, Aleksandar L. Dimitrov [EMAIL PROTECTED] wrote:


On Thu, 2007-05-10 at 12:24 +0200, Johannes Skov Frandsen wrote:
 Aleksandar L. Dimitrov wrote:
  On Thu, 2007-05-10 at 10:45 +0200, Johannes Skov Frandsen wrote:
 
  I should then  be using version 8.28.8 of the driver.
 
  I have tried coping both the 8.28.8 and the 8.36.5 to my dist folder
and
  tried to run emerge:
 
  emerge -va ati-drivers
 
  but it only suggests the 8.32.5 version, which as previously
mentioned,
  dos not work.
 
  Am I missing to parameters to emerge or?
 
 
  You should try
  $ sudo emerge -va =x11-drivers/ati-drivers-8.32.5
  Note that the precise path (before the slash) is mandatory, as is the
  `=' sign. You don't have to copy the stuff into portage/distfiles, but
  maybe your xorg-version could block the merge. Try downgrading then.
 
  But I'm not sure if this could help with your issues.
 
  Regards, Aleks
 
 
 Hi Aleks

 Sorry... I get the same error

 Joe

Hi Johannes,
Whoops, sorry, seems I got the version number wrong. Of course, just
substituting the desired version would help. On my system:

12:40:11 | 1 $ emerge -p =x11-drivers/ati-drivers-8.28.8

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

Calculating dependencies... done!
[ebuild  N] x11-drivers/ati-drivers-8.28.8  USE=acpi opengl -doc
[blocks B ] x11-drivers/ati-drivers (is blocking
x11-base/xorg-server-1.3.0.0)

This means it is not fine to install them with a newer x-server on my
arch (x86).

Regards, Aleks

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-09 Thread Francisco Rivas

Hi Johannes and every friend of the list :D.

Johannes two things:

1.- I think (i guess) it's better install the 8.36.5 ati drivers, because
the 8.32.5 ati drivers is too bugs and is better have the actual driver, you
can download from the ati page and put on the portage distfiles and install
it.

2.- If you don't like the 1 then look here :
http://forums.gentoo.org/viewtopic-t-554065-start-0-postdays-0-postorder-asc-highlight-atidrivers.htmland
http://forums.gentoo.org/viewtopic-t-554736.html?sid=eeac31c8c7d77b4d130703a372462537
that persons have a problem very similary to yours.

Well about your question I think, check your kernel configuration Graphics
Drivers, you have to unmark the ATI modules of the kernel. At last, I had
the same problem with 8.32.5 my laptop frezee and the only thing what can I
do was reset using the Power bottom; and the solution was install the
8.36.5ati driver, believe me.

I hope be helpfully to you, Have a nice day :D

--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


[gentoo-user] Error Compiling splashutils

2007-05-09 Thread Francisco Rivas

Hi all, I try to emerge splashutils and I get this error
 CC  objs/splash.o
In file included from /usr/lib/klibc/include/linux/fb.h:5,
from util.h:42,
from splash.c:26:
/usr/include/linux/i2c.h:66: error: array type has incomplete element type
/usr/include/linux/i2c.h:82: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_xfer'
/usr/include/linux/i2c.h:90: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_write_quick'
/usr/include/linux/i2c.h:91: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_read_byte'
/usr/include/linux/i2c.h:92: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_write_byte'
/usr/include/linux/i2c.h:93: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_read_byte_data'
/usr/include/linux/i2c.h:94: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_write_byte_data'
/usr/include/linux/i2c.h:96: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_read_word_data'
/usr/include/linux/i2c.h:97: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_write_word_data'
/usr/include/linux/i2c.h:100: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_write_block_data'
/usr/include/linux/i2c.h:103: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_smbus_read_i2c_block_data'
/usr/include/linux/i2c.h:387: error: expected '=', ',', ';', 'asm' or
'__attribute__' before 'i2c_get_functionality'
/usr/include/linux/i2c.h:390: error: expected declaration specifiers or
'...' before 'u32'
make: *** [objs/splash.o] Error 1

!!! ERROR: media-gfx/splashutils-1.4.1 failed.
Call stack:
 ebuild.sh, line 1614:   Called dyn_compile
 ebuild.sh, line 971:   Called qa_call 'src_compile'
 environment, line 3127:   Called src_compile
 splashutils-1.4.1.ebuild, line 132:   Called die

!!! failed to build splashutils
!!! If you need support, post the topmost build error, and the call stack if
relevant.
!!! A complete build log is located at
'/var/tmp/portage/media-gfx/splashutils-1.4.1/temp/build.log'.

I don't have any idea... Thanks in advance and regards :D

--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


[gentoo-user] Error Compiling splashutils [SOLVED]

2007-05-09 Thread Francisco Rivas

Hi all,

The solution to the error is install a new linux-headers, Spock said try
remerging klibc or updating your kernel and the problem was about
linux-headers.

Updating linux-headers solved the problem for me. now I emerge splashutils
and it works.

Thanks to every people help me with this :d

--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5

2007-05-08 Thread Francisco Rivas

Hi, actually I downloaded the drivers of the ati page and after a put this
driver on /usr/local/portage/distfiles and emerge it, I know is not the
best way to do that but works. :D

I hope be helpfull for you...

On 5/8/07, Dmitry [EMAIL PROTECTED] wrote:


Hi,

what the portage tree (or may be an overlay) you use ?
I use ~x86, and it provides this version:

* Latest version available: 8.35.5

by the way, ati-drivers-8.35.5  +  2.6.19-gentoo-r3 +
xorg-server-1.2.0-r3 work fine for me

Francisco Rivas wrote:

 All right, well you can prove with kernel 2.6.19 and 8.36 ati-drivers if
 you
 want to keep that kernel.



--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-08 Thread Francisco Rivas

Hi, a few months ago I had the same problem, then :

emerge xf86-input-mouse
   xf86-video-fbdev
   xf86-video-vga [1]
   xf86-video-vesa [1]
   xf86-input-keyboard

Note: Only if you want because when you install the ati driver you don't
need neather of them.

By other side and very important (my recomendation), download ati
8.36driver and install it, reconfigure your
xorg.conf doing this
aticonfig --initial. It's a good idea you do a backup of your xorg.conf.

Please try that thing and please give us feedback :D

I hope be helpfully for you have a nice day :D

On 5/8/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi

This is my first attempt on installing X so bare with me if my question
is somewhat trivial.

So...I emerge gnome... tried to start x and got the following error
message:

[EMAIL PROTECTED] ~ $ startx
xauth:  creating new authority file /home/joe/.serverauth.3857

X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: Linux 2.6.20-gentoo-r7 i686
Current Operating System: Linux localhost 2.6.20-gentoo-r7 #3 SMP Tue
May 8 19:5
0:52 GMT 2007 i686
Build Date: 05 May 2007
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: Tue May  8 20:33:09 2007
(EE) Unable to locate/open config file

New driver is ati
(==) Using default built-in configuration (55 lines)
(EE) Failed to load module ati (module does not exist, 0)
(EE) Failed to load module fbdev (module does not exist, 0)
(EE) Failed to load module vesa (module does not exist, 0)
(EE) Failed to load module vga (module does not exist, 0)
(EE) Failed to load module mouse (module does not exist, 0)
(EE) Failed to load module kbd (module does not exist, 0)
(EE) No drivers available.

Fatal server error:
no screens found
XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
  after 0 requests (0 known processed) with 0 events remaining.
Couldnt get a file descriptor referring to the console
[EMAIL PROTECTED] ~ $

Is there a config file I have mised or
I have compiled my kernel with ATI support to the best of my
knowlege.(my shell is running nicly in 1920*1200 so i guess it must be
using my graphiccard right).

If its any help, linux seems to think I'm using a CRT monitor when I
boot (says so when it boots) , but I'm not.

Any help appriciated.

Johannes Skov Frandsen
--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Problems starting X

2007-05-08 Thread Francisco Rivas

Excuse me please, only few things..
On 5/8/07, Francisco Rivas [EMAIL PROTECTED] wrote:


Hi, a few months ago I had the same problem [too], then :

emerge xf86-input-mouse
xf86-video-fbdev
xf86-video-vga [1]
xf86-video-vesa [1]
xf86-input-keyboard

Note: [1] Only if you want, because when you install the ati driver you
don't need neather of them.

By other side and very important (my recomendation), download ati 8.36driver 
and install it, reconfigure your
xorg.conf doing this
aticonfig --initial. It's a good idea you do a backup of your xorg.conf.



and after aticonfig  --initial, and items before do startx.. and
$ glxinfo | grep direct [if you have a 3d accel the system response]

   direct rendering: Yes
Or

$glxgears :D

Please excuses for my english and regards :D


Please try that thing and please give us feedback :D

I hope be helpfully for you have a nice day :D

On 5/8/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:

 Hi

 This is my first attempt on installing X so bare with me if my question
 is somewhat trivial.

 So...I emerge gnome... tried to start x and got the following error
 message:

 [EMAIL PROTECTED] ~ $ startx
 xauth:  creating new authority file /home/joe/.serverauth.3857

 X Window System Version 7.2.0
 Release Date: 22 January 2007
 X Protocol Version 11, Revision 0, Release 7.2
 Build Operating System: Linux 2.6.20-gentoo-r7 i686
 Current Operating System: Linux localhost 2.6.20-gentoo-r7 #3 SMP Tue
 May 8 19:5
 0:52 GMT 2007 i686
 Build Date: 05 May 2007
 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: Tue May  8 20:33:09 2007
 (EE) Unable to locate/open config file

 New driver is ati
 (==) Using default built-in configuration (55 lines)
 (EE) Failed to load module ati (module does not exist, 0)
 (EE) Failed to load module fbdev (module does not exist, 0)
 (EE) Failed to load module vesa (module does not exist, 0)
 (EE) Failed to load module vga (module does not exist, 0)
 (EE) Failed to load module mouse (module does not exist, 0)
 (EE) Failed to load module kbd (module does not exist, 0)
 (EE) No drivers available.

 Fatal server error:
 no screens found
 XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
   after 0 requests (0 known processed) with 0 events remaining.
 Couldnt get a file descriptor referring to the console
 [EMAIL PROTECTED] ~ $

 Is there a config file I have mised or
 I have compiled my kernel with ATI support to the best of my
 knowlege.(my shell is running nicly in 1920*1200 so i guess it must be
 using my graphiccard right).

 If its any help, linux seems to think I'm using a CRT monitor when I
 boot (says so when it boots) , but I'm not.

 Any help appriciated.

 Johannes Skov Frandsen
 --
 [EMAIL PROTECTED] mailing list




--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187





--
Francisco Rivas
Linux User (New) : #448324
Linux Machine (New) : 355187


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5

2007-05-07 Thread Francisco Rivas

Hi, I never couldn't get 8.32.5 ati-drivers working. Now I update to kernel
2.6.20-r6 and 8.36 ati-drivers and works fine for me. I guess update
to 8.36ati-driver.

I hope be a help.

On 5/7/07, Grant Edwards [EMAIL PROTECTED] wrote:


On 2007-05-07, marco restelli [EMAIL PROTECTED] wrote:
 On 5/4/07, Remy Blank [EMAIL PROTECTED] wrote:

 I have noticed xorg-7.2 just went stable. I am currently using
 7.1 with the stable binary ATI drivers ati-drivers-8.32.5 and
 the kernel gentoo-sources-2.6.19-r5. Has anybody with the same
 configuration done the update? Does it work for you?

 Update done, no problems (up to now). I am on amd64.

You're running 8.32.5 with xorg-7.2 and it works OK?

I couldn't get 8.32.5 to build with 2.6.16, so I upgraded to
2.6.20.  8.32.5 wouldn't build with that kernel version so I
tried the testing version of ati-drivers.  The testing
ati-drivers are badly broken: scrolling aterm windows get
corrupted, some apps don't get repainted correctly, and the X
server locks up hard when you try to do anything using the Xv
extension.

I guess I'll try downgrading my kernel until I can get 8.32.5
to build.

ATI's Linux drivers sure do suck...

--
Grant Edwards   grante Yow! !  I'm in a very
  at   clever and adorable
INSANE
   visi.comASYLUM!!

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5

2007-05-07 Thread Francisco Rivas

All right, well you can prove with kernel 2.6.19 and 8.36 ati-drivers if you
want to keep that kernel.

:D

On 5/7/07, Remy Blank [EMAIL PROTECTED] wrote:


Thanks for the feedback.

Grant Edwards wrote:
 I couldn't get 8.32.5 to build with 2.6.16, so I upgraded to
 2.6.20.  8.32.5 wouldn't build with that kernel version so I
 tried the testing version of ati-drivers.

Yes, b.g.o has quite a few bugs open for ati-drivers related to 2.6.20,
that's one of the reasons I want to keep 2.6.19 (besides having no good
reason to update, that is).

Marco, what kernel are you running?

-- Remy






--
Francisco Rivas


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5

2007-05-07 Thread Francisco Rivas

Your comment is really funny because I think the same before my
8.36ati-drivers work. Honestly I think the same now, it's important
keep that in
mind. In my job I have an Nvidia Video Card and on the first time i
installed the nvidia-drivers pufff.. works.

Actually RMS said don't buy ati he knows why, us not.

On 5/7/07, Grant Edwards [EMAIL PROTECTED] wrote:


On 2007-05-07, Francisco Rivas [EMAIL PROTECTED] wrote:

 Hi, I never couldn't get 8.32.5 ati-drivers working. Now I update to
kernel
 2.6.20-r6 and 8.36 ati-drivers and works fine for me. I guess update
 to 8.36ati-driver.

OK, I'll give 2.6.20 + 8.36.5 a try.

Next time I'm in the market for a loptop, I'm going to think
long and hard before buying another model that has an ATI video
chipset.  I've never had a lick of trouble with NVidia drivers
and have had constant headaches with ATI drivers (from both
xorg and ATI).

--
Grant Edwards   grante Yow! My life is a patio
  at   of fun!
   visi.com

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] Re: xorg-7.2 and ati-drivers-8.32.5

2007-05-07 Thread Francisco Rivas

yes you have reason, because when I bought my laptop (dell inspiron 6400
15.4) I ask to vendor (pretty good girl) if I can buy a laptop 15.4 with
Nvidia, she say no because the size of the laptop is not appropriate..

On 5/7/07, Grant Edwards [EMAIL PROTECTED] wrote:


On 2007-05-07, Francisco Rivas [EMAIL PROTECTED] wrote:

 Next time I'm in the market for a loptop, I'm going to think
 long and hard before buying another model that has an ATI video
 chipset.  I've never had a lick of trouble with NVidia drivers
 and have had constant headaches with ATI drivers (from both
 xorg and ATI).

 Your comment is really funny because I think the same before
 my 8.36ati-drivers work. Honestly I think the same now, it's
 important keep that in mind. In my job I have an Nvidia Video
 Card and on the first time i installed the nvidia-drivers
 pufff.. works.

I used to like ATI because there were open-source drivers that
supported 3D acceleration, but that ended a few years ago: the
9250 was the last board with opensource DRI support.

Unfortunately, if you're shopping for a laptop there seem very
few non-ATI choices.

--
Grant Edwards   grante Yow! I represent a
  at   sardine!!
   visi.com

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


[gentoo-user] Compile error in xf86-input-evdev-1.1.2-r2

2007-04-20 Thread Francisco Rivas

Hi

Yesterday I was up to date my entire system, my gentoo does not have x11,
after the up to date I was emerge x11 and when emerge compile the
xf86-input-evdev-1.1.2-r2 send this message to the console :

i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2
-march=prescott -DXFree86Server -DIN_MODULE -DXFree86Module -DXFree86LOADER
-I/usr/include/xorg -I../src -MT evdev_drv_la-evdev.lo -MD -MP -MF
.deps/evdev_drv_la-evdev.Tpo -c evdev.c  -fPIC -DPIC -o .libs/evdev_drv_la-
evdev.o
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2
-march=prescott -DXFree86Server -DIN_MODULE -DXFree86Module -DXFree86LOADER
-I/usr/include/xorg -I../src -MT evdev_drv_la-evdev_brain.lo -MD -MP -MF
.deps/evdev_drv_la-evdev_brain.Tpo -c evdev_brain.c  -fPIC -DPIC -o
.libs/evdev_drv_la-evdev_brain.o
evdev.c: In function 'EvdevReadInput':
evdev.c:93: warning: format '%ld' expects type 'long int', but argument 6
has type 'unsigned int'
evdev.c: In function 'EvdevSwitchMode':
evdev.c:235: error: 'SendCoreEvents' undeclared (first use in this function)
evdev.c:235: error: (Each undeclared identifier is reported only once
evdev.c:235: error: for each function it appears in.)
evdev.c:236: error: 'DontSendCoreEvents' undeclared (first use in this
function)
make[2]: *** [evdev_drv_la-evdev.lo] Error 1
make[2]: *** Waiting for unfinished jobs
i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2
-march=prescott -DXFree86Server -DIN_MODULE -DXFree86Module -DXFree86LOADER
-I/usr/include/xorg -I../src -MT evdev_drv_la-evdev_axes.lo -MD -MP -MF
.deps/evdev_drv_la-evdev_axes.Tpo -c evdev_axes.c  -fPIC -DPIC -o
.libs/evdev_drv_la-evdev_axes.o
make[2]: Leaving directory `/var/tmp/portage/x11-drivers/xf86-
input-evdev-1.1.2-r2/work/xf86-input-evdev-1.1.2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/x11-drivers/xf86-
input-evdev-1.1.2-r2/work/xf86-input-evdev-1.1.2'
make: *** [all] Error 2

!!! ERROR: x11-drivers/xf86-input-evdev-1.1.2-r2 failed.
Call stack:
 ebuild.sh, line 1614:   Called dyn_compile
 ebuild.sh, line 971:   Called qa_call 'src_compile'
 environment, line 3817:   Called src_compile
 ebuild.sh, line 1304:   Called x-modular_src_compile
 x-modular.eclass, line 333:   Called x-modular_src_make
 x-modular.eclass, line 328:   Called die

!!! emake failed
!!! If you need support, post the topmost build error, and the call stack if
relevant.
!!! A complete build log is located at '/var/tmp/portage/x11-drivers/xf86-
input-evdev-1.1.2-r2/temp/build.log'.

It is very rare for me because exist a 1.1.5 version of that package.

Looking for the answer on the internet I was found :

1.- Editing the xorg.conf the problem could be resolved, but I don't have
any xorg.conf because that is what I  am emerging.
2.- Deleting from the code SendCoreEvents and DontSendCoreEvents functions.
I was resolved the unsigned long problem but the others not.

Thanks in advance for you help :D

--
Please don't lose you hope, please peace in the earth, please no more
toubles...Live free!!
Francisco Rivas


Re: [gentoo-user] Compile error in xf86-input-evdev-1.1.2-r2

2007-04-20 Thread Francisco Rivas

Hi, thanks for your response Daniel...

Yes, Actually I have a INPUT_DEVICES=keyboard mouse synaptics evdev in my
make.conf.. Now I am testing deleting evdev of my make.conf.

On 4/20/07, Daniel Iliev [EMAIL PROTECTED] wrote:


On Fri, 20 Apr 2007 15:43:50 -0400
Francisco Rivas [EMAIL PROTECTED] wrote:

 Hi

 Yesterday I was up to date my entire system, my gentoo does not have
 x11, after the up to date I was emerge x11 and when emerge compile the
 xf86-input-evdev-1.1.2-r2 send this message to the console :

  i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2
 -march=prescott -DXFree86Server -DIN_MODULE -DXFree86Module
 -DXFree86LOADER -I/usr/include/xorg -I../src -MT
 evdev_drv_la-evdev.lo -MD -MP -MF .deps/evdev_drv_la-evdev.Tpo -c
 evdev.c  -fPIC -DPIC -o .libs/evdev_drv_la- evdev.o
  i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2
 -march=prescott -DXFree86Server -DIN_MODULE -DXFree86Module
 -DXFree86LOADER -I/usr/include/xorg -I../src -MT
 evdev_drv_la-evdev_brain.lo -MD -MP
 -MF .deps/evdev_drv_la-evdev_brain.Tpo -c evdev_brain.c  -fPIC -DPIC
 -o .libs/evdev_drv_la-evdev_brain.o evdev.c: In function
 'EvdevReadInput': evdev.c:93: warning: format '%ld' expects type
 'long int', but argument 6 has type 'unsigned int'
 evdev.c: In function 'EvdevSwitchMode':
 evdev.c:235: error: 'SendCoreEvents' undeclared (first use in this
 function) evdev.c:235: error: (Each undeclared identifier is reported
 only once evdev.c:235: error: for each function it appears in.)
 evdev.c:236: error: 'DontSendCoreEvents' undeclared (first use in this
 function)
 make[2]: *** [evdev_drv_la-evdev.lo] Error 1
 make[2]: *** Waiting for unfinished jobs
  i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2
 -march=prescott -DXFree86Server -DIN_MODULE -DXFree86Module
 -DXFree86LOADER -I/usr/include/xorg -I../src -MT
 evdev_drv_la-evdev_axes.lo -MD -MP
 -MF .deps/evdev_drv_la-evdev_axes.Tpo -c evdev_axes.c  -fPIC -DPIC
 -o .libs/evdev_drv_la-evdev_axes.o make[2]: Leaving directory
 `/var/tmp/portage/x11-drivers/xf86-
 input-evdev-1.1.2-r2/work/xf86-input-evdev-1.1.2/src' make[1]: ***
 [all-recursive] Error 1 make[1]: Leaving directory
 `/var/tmp/portage/x11-drivers/xf86-
 input-evdev-1.1.2-r2/work/xf86-input-evdev-1.1.2' make: *** [all]
 Error 2

 !!! ERROR: x11-drivers/xf86-input-evdev-1.1.2-r2 failed.
 Call stack:
   ebuild.sh, line 1614:   Called dyn_compile
   ebuild.sh, line 971:   Called qa_call 'src_compile'
   environment, line 3817:   Called src_compile
   ebuild.sh, line 1304:   Called x-modular_src_compile
   x-modular.eclass, line 333:   Called x-modular_src_make
   x-modular.eclass, line 328:   Called die

 !!! emake failed
 !!! If you need support, post the topmost build error, and the call
 stack if relevant.
 !!! A complete build log is located at
 '/var/tmp/portage/x11-drivers/xf86-
 input-evdev-1.1.2-r2/temp/build.log'.

 It is very rare for me because exist a 1.1.5 version of that package.

 Looking for the answer on the internet I was found :

 1.- Editing the xorg.conf the problem could be resolved, but I don't
 have any xorg.conf because that is what I  am emerging.
 2.- Deleting from the code SendCoreEvents and DontSendCoreEvents
 functions. I was resolved the unsigned long problem but the others
 not.

 Thanks in advance for you help :D



I suppose you have no INPUT_DEVICES=[...] line in your /etc/make.conf
before compiling X.
The official documentation about installing X on Gentoo could be found
at Internat address: http://www.gentoo.org/doc/en/xorg-config.xml

--
Best regards,
Daniel

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] OT im more just curious

2007-04-13 Thread Francisco Rivas

Hi all...

I have 23! :D

On 4/13/07, Arturo 'Buanzo' Busleiman [EMAIL PROTECTED] wrote:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Wayne Oliver wrote:
 Redhat 4 I believe it was?

Redhat! Damn... that's good memories... it used to be the distro I used to
show vulnerable systems
when I was a professor of IT Security at a local institute. Pretty funny.

 A bit of 13th Friday, actually. Bwahahaha.

Want nostalgia? Read something about BBSes...

http://www.buanzo.com.ar/lit/dead1.html

(until dead6.html, too).

And yes, this is officially fully offtopic.

- --
Arturo Buanzo Busleiman - Consultor Independiente en Seguridad
Informatica
Foros GNU/Buanzo: Respeto, Soluciones y Buena Onda:
http://foros.buanzo.com.ar
Consulting and Secure Mail Hosting: http://www.buanzo.com.ar/pro/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGH5DrAlpOsGhXcE0RCh8yAJ94nEsK0eHLNKTrw6HMAxJd/IzOjwCfcxek
yOlCpUsFAXQqxW5UisZSo34=
=ifKE
-END PGP SIGNATURE-
--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] OT im more just curious

2007-04-13 Thread Francisco Rivas

I was started with ESware 1.0, RedHat 5.1, Mandrake, then SuSE
6.3/7.x//9.x/10.x,
Debian (Woody and Sagre) and finally and so so so happy Gentoo... I feel
tempted to touch Arch Linux.

Please let me know who is happy with your distributions?... :D it's an
obvious question :D

I am :D

On 4/13/07, Davi [EMAIL PROTECTED] wrote:


Em Sexta 13 Abril 2007 11:36, Rodrigo Forlin escreveu:
 [EMAIL PROTECTED] wrote this:
  What is the average age of the gentoo user here?

20, using Linux since 2000
--
Davi Vidal
[EMAIL PROTECTED]
[EMAIL PROTECTED]
--

Agora com fortune:
Mal: I've seen you without your clothes on before.  Never thought I'd
see
you naked.
--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] OT im more just curious

2007-04-13 Thread Francisco Rivas

I am so glad of found people who is happy with their SO.

On 4/13/07, Mauro Faccenda [EMAIL PROTECTED] wrote:


On Friday 13 April 2007 10:06, Wayne Oliver wrote:
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: 13 April 2007 02:08
  To: Gentoo List
  Subject: [gentoo-user] OT im more just curious
 
  What is the average age of the gentoo user here?

 I'll bite, 27 - 28 using Linux since 1997 and Gentoo since 2002 I
 think.

exactly the same here ;)

started with conectiva, then redhat... tryied mandrake, suse, debian,
backup
to redhat, fedora... and finally, gentoo...

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





--
Francisco Rivas


Re: [gentoo-user] eclipse

2007-04-12 Thread Francisco Rivas

Hi all..

emerge eclipse-sdk

dev-util/eclipse-sdk
 Latest version available: 3.2
 Latest version installed: 3.2
 Size of files: 80,120 kB
 Homepage:  http://www.eclipse.org/
 Description:   Eclipse Tools Platform
 License:   EPL-1.0

I think that is all you need and it is not masked, I have eclipse installed
on my system and it is very good...
The SDK platform come with the IDE if that is what you need..

On 4/12/07, Johannes Skov Frandsen [EMAIL PROTECTED] wrote:


Hi

I'm new to gentoo so bare with me.

I'm trying to emerge eclipse-core, but can't seem to wrap my head around
the idea about masked programs. I have read trough the documentation
about the emerge tool but didn't find a working solution.

Could anybody give me a few pointer?
--

Regards / Venlig hilsen

Johannes Skov Frandsen

*Address:* Egelundsvej 18, DK-5260 Odense S
*Web:* www.omesc.com | *Email:* [EMAIL PROTECTED]

--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] {OT} Generating an online graph/chart

2007-04-12 Thread Francisco Rivas

Hi all..
Some project to do that exist but they are not in portage... If you are
still interest

http://www.aditus.nu/jpgraph/
PHP HTML Graph Class
GDGraph for PHP
PHP-GNUPlot

I do not wich one is the best but making a fast search that are the
results..  I hope help you...

On 4/12/07, Grant [EMAIL PROTECTED] wrote:


Hello, does anyone know of a package in portage that will take my data
and generate a graph or chart from it for online viewing?

- Grant
--
[EMAIL PROTECTED] mailing list





--
Francisco Rivas


Re: [gentoo-user] Re: CFLAGS ...-O3 -pipe vs ...O2 no pipe

2007-04-11 Thread Francisco Rivas

Hi all..

I think what -O3 is not _dangerous_ when you know how to use, a few posts
ago someone mentioned not all of packages can be compiled using -O3, if I am
not wrong was GCC and OpenOffice.org.

The thing is: -O3 is not a _damage_ is an carefully flag to compile for some
packages..

In some webpages I people said : .. -O3 is not used by developer because
come troubles when you want to do a debug...

But:
http://www.nersc.gov/vendor_docs/intel/f_ug2/dbg_opt.htm,
http://linuxgazette.net/121/hegde.html,
http://publib.boulder.ibm.com/infocenter/macxhelp/v6v81/index.jsp?topic=/com.ibm.xlf81m.doc/pgs/ug42.htm
.

...The following setting is the Optimizations. You shouldn't use O3 as it
takes longer to compile, the generated code will be sometimes faster,
sometimes slower and almost always larger. For example, a program that was
compiled with the O2 level of optimization is 250KB large and is quite fast,
the same program compiled with the O3 level of optimization can take more
time to compile, produce a larger binary, depending on the code, even
500-700KB large and it can be slower or faster. Therefore, the O3
optimization level isn't recommended. Use O2 if you need the best
optimization without adding the risk of obtaining large binaries, which need
a long time to be loaded before being executed and are not always faster...
take of http://www.softpedia.com/reviews/linux/Gentoo-Review-20543.shtml.


On 4/11/07, Bo Ørsted Andresen [EMAIL PROTECTED] wrote:


On Wednesday 11 April 2007 12:56:43 Daniel Iliev wrote:
 Sorry, I don't get it. Perhaps it is my poor English but I couldn't
 understand two things:
  - Is -O3 supported by Gentoo or not?

-O3 is supported by Gentoo.

  - What's the special thing about Gentoo ebuilds that makes -O3
dangerous?

No no. The special thing about Gentoo ebuilds is that -O3 in make.conf is
safe
for all packages because those packages for which -O3 isn't safe are
replacing it with -O2 in the ebuilds (or eclasses).

--
Bo Andresen





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++ L++(+++)
!E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@ Y PGP t 5 X R++
tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--


Re: [gentoo-user] Re: CFLAGS ...-O3 -pipe vs ...O2 no pipe

2007-04-10 Thread Francisco Rivas

Hi all..

Certainly some package have a maximun optimisation. I really believe, the
optimisation level is a very interesting thing bucause all depend of what
you need and you have all power of your system, only gentoo can give you
that.

it's very good to see a server compiling most of the applications, and
people with few resources in thier pc's can run a very good operating system
and no die trying... :P

Looking for more information on the web, I see
http://www.linuxjournal.com/article/7269.

In that article: ...The simplest way to achieve good performance is to rely
on the -O2 optimization level; if you're not interested in portability,
specify the target architecture using -march=. For space-constrained
applications, the -Os optimization level should be considered first..

All is your decision based in what you need...

On 4/10/07, Uwe Thiem [EMAIL PROTECTED] wrote:


On 10 April 2007, maxim wexler wrote:

 Interesting. Just completed emerge -uvDN world using
 the -03 -pipe cflags in make.conf for the PIII arch.
 I noticed as the output scrolled by that the flags I
 set were being used for all packages *except* gcc
 which used -02 -pipe.

Some packages (ebuilds) set a maximum optimisation. Gcc is one of them,
OpenOffice another one.

Uwe

--
A fast and easy generator of fractals for KDE:
http://www.SysEx.com.na/iwy-1.0.tar.bz2
Proof of concept of a TSP solver for KDE:
http://www.SysEx.com.na/epat-0.1.tar.bz2
--
gentoo-user@gentoo.org mailing list





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++ L++(+++)
!E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@ Y PGP t 5 X R++
tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--


Re: [gentoo-user] Re: CFLAGS ...-O3 -pipe vs ...O2 no pipe

2007-04-10 Thread Francisco Rivas

Hi all.. Oh god.. well damage done, but you learn the lesson rigth?.. I
believe yes. Actually all the people in the forum learn the lesson...

For the nex time remember use O2 :D
I hope the damage was not horrible.. and you can recover all losted.

On 4/10/07, maxim wexler [EMAIL PROTECTED] wrote:



--- Andrey Vul [EMAIL PROTECTED] wrote:

 don't use -O3 unless you need _extreme_ performance
 -O2 -finline-functions is close to -O3 but doesn't
 use -fno-home-register
 For toolchain, I just stick to -O2. For power-hungry
 apps, I use -O2
 -finline-functions
 glibc developer said that inlining with gcc 4.2
 screws up code, so on
 the safe side, just use -O2 for toolchain, -O2
 -finline-functions for
 everything else
 -
 Andrey Vul

Too late. Damage done. I decided to go with the
example make.conf which call the O3 level decent.
 --
 gentoo-user@gentoo.org mailing list








Sucker-punch spam with award-winning protection.
Try the free Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/features_spam.html
--
gentoo-user@gentoo.org mailing list





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++ L++(+++)
!E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@ Y PGP t 5 X R++
tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--


Re: [gentoo-user] Re: CFLAGS ...-O3 -pipe vs ...O2 no pipe

2007-04-09 Thread Francisco Rivas

Hi all :D

I think what -march=your_arch -O2 it's enough, because -O3 it's highest
but have some details
(http://gentoo-wiki.com/CFLAGS#-O2_or_-O3.3F). My guess is -march=your_arch
-O2. I was compiled my entire system with those flags and my applications
no matter which have a very good functionality...

I hope give you some help to make your decision...

On 4/9/07, Alexander Skwar [EMAIL PROTECTED] wrote:


· maxim wexler [EMAIL PROTECTED]:

 One suggests using -O3 -pipe, the other, -O2 without
 the pipe.

The resulting binaries of a -O2 -pipe compile will be
the same as those of a -O2 (no pipe) compile.

See
http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Overall-Options.html#index-pipe-81

 How much difference does this make? Is the extra level
 of optimization with pipe the equivalent of the lower
 level without?

There's no extra level of optimization.

So the question boils down to: Is -O3 better than -O2? Answer: Depends.
On a system with not that much cache, it might not be.

Alexander Skwar
--
BOFH Excuse #16:

somebody was calculating pi on the server


--
gentoo-user@gentoo.org mailing list





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++ L++(+++)
!E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@ Y PGP t 5 X R++
tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--


Re: [gentoo-user] VFS: cannot open root device hdd2 on unknown-block(0,0)

2007-03-24 Thread Francisco Rivas

Hi..

In my experience this error:

Error message on boot:
VFS: cannot open root device hdd2 on unknown-block(0,0)
Please append a correct root= boot option
Kernel-Panic not syncing: VFS: unable to mount root fs on unknown-block(0,0)

is about bad configuration in grub/lilo, check the real number of your
root partition and remember: if you use Grub (great idea)  add the
real root partition number parameter to your kernel coniguration, plus
the init parameter.

This problem probably is the result of a change of your pool of disks
or changes in your partitions or bad parameter in you boot config
file..

http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1chap=10
That can help you i guess.

I hope help you...

P.D : Excuse me for my english i'm learning about it.

Have a VERY nice day.

On 3/24/07, Kristian Poul Herkild [EMAIL PROTECTED] wrote:

Oh well...

I've been battleling with my Silicon Image PCI ATA-133 controller.
I've spent the last 7-8 hours trying to compile a working kernel with
support for the extra IDE controller. But so far I've failed. I've tried
several combinations (with/without support for CMD0680 - with/without
xtables - on 2.6.18 and 2.6.19) - and have tracked the problem to the
PCI IDE controller.

I've googled for hours as well, but I have no clues but one: Enabling
support for the PCI IDE/PATA Controller apparently pushes the device
names for the on-board IDE/PATA controller (e.g. /d_ev/hdd becomes
/dev/hdh).

Is that even possible? That the extra PCI ATA-Controller takes
precedence over the on-board Controller?

Kind Regards,
Kristian Poul Herkild

---

Output from lspci:
00:0a.0 Mass storage controller: Silicon Image, Inc. PCI0680 Ultra
ATA-133 Host Controller (rev 02)

Error message on boot:
VFS: cannot open root device hdd2 on unknown-block(0,0)
Please append a correct root= boot option
Kernel-Panic not syncing: VFS: unable to mount root fs on unknown-block(0,0)

--
gentoo-user@gentoo.org mailing list





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++
L++(+++) !E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@
Y PGP t 5 X R++ tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] mysql start issues

2007-03-19 Thread Francisco Rivas

Hi...

last month i had the same problem I was see a lot of posts in forums, this
solution works for me: create a sym link yo mysqd.sock, it's something like
this

ln -vs /tmp/mysql.sock /var/run/mysql/mysql.sock


for mysql 5.0.26-r2, that's work for me.

It's important see the my.cnf at the line where mysql put the mysql.sock
in my case :

[client]
password  = **
port= 3306
socket= /var/run/mysqld/mysqld.sock

$ls -l /tmp/mysql.sock
   /tmp/mysql.sock - /var/run/mysqld/mysqld.sock

I hope that's work for you too.

NOTE : Please excuse me for my english it's no so good, but I need to help
everyone that i can...that make a better world.. Peace..:D

On 3/19/07, Richard Torres [EMAIL PROTECTED] wrote:


OK.  I Unmerged and re-emerged mysql.

# /etc/init.d/mysql stop
# emerge -C mysql
# tar cjpvf ~/mysql.$(date +%FT%H-%M).tar.bz2 /etc/mysql/my.cnf
/var/lib/mysql/
# ls -l ~/mysql.*
# rm -rf /var/lib/mysql/ /var/log/mysql

# emerge -av dev-db/mysql

It completed installing/compiling then..

# emerge --config =dev-db/mysql-5.0.32

Configuring pkg...

* MySQL DATADIR is /var/lib/mysql
* Previous datadir found, it's YOUR job to change
* ownership and take care of it
* Creating the mysql database and setting proper
* permissions on it ...
* Insert a password for the mysql 'root' user
* Avoid ['\_%] characters in the password

* Retype the password


!!! ERROR: dev-db/mysql-5.0.32 failed.
Call stack:
  ebuild.sh, line 1527:   Called pkg_config
  ebuild.sh, line 1255:   Called mysql_pkg_config
  mysql.eclass, line 805:   Called die

!!! MySQL databases not installed
!!! If you need support, post the topmost build error, and the call stack
if
relevant.

# /etc/init.d/mysql start
* Starting mysql...
* Starting mysql (/etc/mysql/my.cnf)
* MySQL NOT started (0)

Any ideas?

-Original Message-
From: Dan Farrell [mailto:[EMAIL PROTECTED]
Sent: Sunday, March 18, 2007 9:08 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] mysql start issues

On Sat, 17 Mar 2007 13:11:54 -0500
Richard Torres [EMAIL PROTECTED] wrote:

 Hello,

 I'm having a trouble starting mysql since I emerged the newer version.
 'mysqld.sock' doesn't exist and the logs aren't much help. Any help is
 greatly appreciated.



 -Richard



 # mysql

 ERROR 2002 (HY000): Can't connect to local MySQL server through socket
 '/var/run/mysqld/mysqld.sock' (2)



 # /etc/init.d/mysql start

  * Starting mysql...

  * Starting mysql (/etc/mysql/my.cnf)

  * MySQL NOT started (0)

I had the same problem and my solution was found at :
http://www.gentoo.org/doc/en/mysql-upgrading.xml
.but I never did get my password-encoded columns back.

good luck!
--
gentoo-user@gentoo.org mailing list

--
gentoo-user@gentoo.org mailing list





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++ L++(+++)
!E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@ Y PGP t 5 X R++
tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--


Re: [gentoo-user] profile upgrade from 2005.1 to 2006.1

2007-03-13 Thread Francisco Rivas

Hi,

I think is better unmerge =x11-base/xorg-x11-6.9 and if you need emerge a
new packages because I see you trying to do an upgrade of your system..

I wonder what you think about emerge xorg-x11-7-1?...

Theese are my comments to help you, I hope so.


On 3/13/07, de Almeida, Valmor F. [EMAIL PROTECTED] wrote:



Hello list,

After an emerge sync, I followed the instructions in

http://www.gentoo.org/doc/en/gentoo-upgrading.xml

for updating to 2006.1.

Proceeding to the system update:

-emerge --update --deep --newuse --pretend --verbose system

I get this error message before the list of packages


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

Calculating system dependencies
Parse Error reading PROVIDE and USE in
'/var/db/pkg/x11-base/xorg-x11-6.8.2-r4'
Possibly Invalid: 'virtual/x11 opengl? virtual/opengl opengl?
virtual/glu virtual/xft'
Exception: Conditional without parenthesis: 'opengl?'
*

Is this related to the current modular use of X11? Later in the output
of system packages to be updated I get:

**
[blocks B ] =x11-base/xorg-x11-6.9 (is blocking
x11-proto/inputproto-1.3.2, x11-proto/xf86bigfontproto-1.1.2,
x11-proto/xextproto-7.0.2, x11-libs/libXext-1.0.1,
x11-proto/xcmiscproto-1.1.2, x11-misc/util-macros-1.1.0,
x11-libs/xtrans-1.0.1, x11-apps/xauth-1.0.1, x11-libs/libXau-1.0.2,
x11-libs/libXmu-1.0.2, x11-proto/kbproto-1.0.3, x11-libs/libSM-1.0.1,
x11-libs/libXdmcp-1.0.1, x11-libs/libICE-1.0.1, x11-libs/libXt-1.0.2,
x11-proto/xproto-7.0.7, x11-proto/bigreqsproto-1.0.2,
x11-libs/libX11-1.0.3)
**

Should I clean out my old X? which is x11-base/xorg-x11-6.8.2-r4 and not
x11-base/xorg-x11-6.9 as in the blocking message above. Also, according
to emerge --search the latest version available for x11-base/xorg-x11 is
7.1.

Thanks for inputs.

--
Valmor

--
gentoo-user@gentoo.org mailing list





--
['Cause without love I won't survive, I love you]. I

Francisco Rivas
2.6.19-gentoo-r5 x86
udev v087 gnome 2.16.2
xorg-x11-7.1 hotplug v20040923-r2
e-mail : [EMAIL PROTECTED]
msn : [EMAIL PROTECTED]

-BEGIN GEEK CODE BLOCK-
Version: 3.1
GCS/E/IT/MU d-(+)@ s++: a-- C ULSC*()+++ P+(++)+++ L++(+++)
!E--- W+++ !N* !o-(--)-- K--? !w--- !O !M !V PS@ !PE@ Y PGP t 5 X R++
tv- b DI D G e+ h- r+ y-
--END GEEK CODE BLOCK--