Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
2.6.5-love5 aka "Still Ruler Of The World"
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
dvc5
Guru
Guru


Joined: 06 Dec 2003
Posts: 433
Location: Sunnyvale, California

PostPosted: Sun Apr 18, 2004 4:03 pm    Post subject: Reply with quote

thebell wrote:
dvc5 wrote:
I noticed I'm still using the anticipatory scheduler. Is this normal? or is there a way to change it?

The anticipatory scheduler is the default. If you want to use CFQ, put 'elevator=cfq' on your kernel command line in grub.conf.

Thanks, I'll give that a shot. I can't belive how much more responsive this kernel is. My laptop has been liberated. :D
_________________
#define NULL rand() /*heh heh heh */

Green Is Good
Back to top
View user's profile Send private message
nevynxxx
Veteran
Veteran


Joined: 12 Nov 2003
Posts: 1123
Location: Manchester - UK

PostPosted: Mon Apr 19, 2004 9:23 am    Post subject: Reply with quote

thebell wrote:

Just added to my .bashrc:


I knew someone else would have a quicker way. That second one does exactly the same as mine but in a lot fewer chars doesn't it? grab the index and pull out the ebuild name then grab it? but yours doesn't digest them?

Ahh well its nice to see different ways.
_________________
My Public Key

Wanted: Instructor in the art of Bowyery
Back to top
View user's profile Send private message
Robe
n00b
n00b


Joined: 05 Jan 2004
Posts: 64

PostPosted: Mon Apr 19, 2004 12:15 pm    Post subject: 2.6.6-mm1 Reply with quote

Woohoo ! kernel 2.6.6-rc1-mm1 is out !
Back to top
View user's profile Send private message
WaVeX
Tux's lil' helper
Tux's lil' helper


Joined: 15 Mar 2004
Posts: 102
Location: USA, Michigan or Ohio

PostPosted: Mon Apr 19, 2004 1:16 pm    Post subject: Reply with quote

thebell wrote:
dvc5 wrote:
I noticed I'm still using the anticipatory scheduler. Is this normal? or is there a way to change it?

The anticipatory scheduler is the default. If you want to use CFQ, put 'elevator=cfq' on your kernel command line in grub.conf.


Wait a min If I want to use nicks scheduler I have to put elevator=cfq in my grub?

Sorry if this was a dumb question. I really feel like a noob by asking it.
Back to top
View user's profile Send private message
PrakashP
Veteran
Veteran


Joined: 27 Oct 2003
Posts: 1249
Location: C.C.A.A., Germania

PostPosted: Mon Apr 19, 2004 1:21 pm    Post subject: Reply with quote

Nope, we are talking about io schedulers, and "Nick's schduler" is a CPU scheduler and not selectable, either it is patched in and activer or is is not.
Back to top
View user's profile Send private message
felixaa
n00b
n00b


Joined: 18 Aug 2003
Posts: 3

PostPosted: Mon Apr 19, 2004 2:38 pm    Post subject: Reply with quote

Hi!!
I have been install 2.6.5-love4 with Dxr3 (EM8300) builded has a module, I have a Hollywood + Adv7170 Card, then when I try to emerge em8300-libraries-0.13 or 0.14 ebuilds to include microcode and em8300setup tool a error appear!!.. any sugestion?? Another way tu include microcode and tools??

Thanks!!
Back to top
View user's profile Send private message
spb
Retired Dev
Retired Dev


Joined: 02 Jan 2004
Posts: 2135
Location: Cambridge, UK

PostPosted: Mon Apr 19, 2004 4:50 pm    Post subject: Reply with quote

nevynxxx wrote:
That second one does exactly the same as mine but in a lot fewer chars doesn't it?
And without using temporary files, yes.
nevynxxx wrote:
but yours doesn't digest them?

Code:
alias fetch-love="rm *.ebuild; for i in \$(lynx -dump http://www.public.iastate.edu/~jpcox/ |awk '/ebuild/{print \$2}'); do wget \${i}; ebuild $(basename ${i}) digest; done"

Does now ;) Haven't tested this version, but it ought to work. Of course, you have to run it in $PORTDIR_OVERLAY/sys-kernel/love-sources. I usually use emerge --digest love-sources rather than digesting manually and then emerging, so it doesn't really matter for my usage. If you want the function version that works from any directory, then
Code:
function update-love
{
    pushd /usr/local/portage/sys-kernel/love-sources
    rm *.ebuild
    for i in $(lynx -dump http://www.public.iastate.edu/~jpcox/ |awk '/ebuild/{print $2}'); do
        wget ${i}
        ebuild $(basename ${i}) digest
    done
    popd
}
should do it.

Edit: realised I can do it more efficiently; updated version here.
Back to top
View user's profile Send private message
charlieg
Advocate
Advocate


Joined: 30 Jul 2002
Posts: 2149
Location: Manchester UK

PostPosted: Mon Apr 19, 2004 6:40 pm    Post subject: Reply with quote

This is the best love-sources for a while. After a peak in the early 2.6.3_rcs, I've had issues with sound skipping when switching windows in Gnome and glxgears scores being slightly low (~50-80fps lower than at it's peak).

Now everything is back to utopia. 8)
_________________
Want Free games?
Free Gamer - open source games list & commentary

Open source web-enabled rich UI platform: Vexi
Back to top
View user's profile Send private message
mirko_3
l33t
l33t


Joined: 02 Nov 2003
Posts: 605
Location: Birreria

PostPosted: Mon Apr 19, 2004 7:52 pm    Post subject: Reply with quote

any news on when reiser4 will be in again? or in -mm, if that's the next step...?
_________________
Non fa male! Non fa male!
Back to top
View user's profile Send private message
steel300
Veteran
Veteran


Joined: 10 Jul 2003
Posts: 1155

PostPosted: Mon Apr 19, 2004 8:00 pm    Post subject: Reply with quote

mirko_3 wrote:
any news on when reiser4 will be in again? or in -mm, if that's the next step...?


As soon as they release another snapshot, I'll try everything I can to get it back.
_________________
Rationality is the recognition of the fact that nothing can alter the truth and nothing can take precedence over that act of perceiving it.
Back to top
View user's profile Send private message
nevynxxx
Veteran
Veteran


Joined: 12 Nov 2003
Posts: 1123
Location: Manchester - UK

PostPosted: Tue Apr 20, 2004 8:55 am    Post subject: Reply with quote

thebell wrote:


I have my overlays exported to my network over nfs so yeah I like to digest them when I get them. Thanks for that anyway.
_________________
My Public Key

Wanted: Instructor in the art of Bowyery
Back to top
View user's profile Send private message
Gentree
Watchman
Watchman


Joined: 01 Jul 2003
Posts: 5350
Location: France, Old Europe

PostPosted: Mon May 03, 2004 12:23 pm    Post subject: Reply with quote

Hi Steel300, (or anyone who knows)

is this the most recent love sources based on mm? I believe the lastest in vanilla-based.


Q2.
where is the love + xorg howto. The gentoo search is not the most powerful tool and I have not been able to find it.
[edit]
found it : http://www.public.iastate.edu/~jpcox/xorg_instructions
[/edit]


Q3 , seem to be having diffs getting DRI wkg. Can someone comfirm I am not attempting the impossible : 2.6.5-love5, xorg, PCI S3 virege

Thanks for any help. Gentree. 8)
Back to top
View user's profile Send private message
bssteph
l33t
l33t


Joined: 26 Feb 2003
Posts: 652
Location: Wisconsin

PostPosted: Mon May 03, 2004 4:54 pm    Post subject: Reply with quote

Gentree wrote:
Hi Steel300, (or anyone who knows)

is this the most recent love sources based on mm? I believe the lastest in vanilla-based.

https://forums.gentoo.org/viewtopic.php?t=168283

No idea about the DRI. Enjoy new love.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3
Page 3 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum