Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
SETI: Gentoo Linux Users Everywhere (GLUE)
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, ... 22, 23, 24  Next  
Reply to topic    Gentoo Forums Forum Index Gentoo Chat
View previous topic :: View next topic  
Author Message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Wed Sep 04, 2002 3:16 am    Post subject: Reply with quote

squanto wrote:
but I want an opteron.... :drool:
That's where I'm going, and likely dual. Serial-ATA too. Thats another thread though. Anxiously awaiting seti performance on that bugger.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
squanto
Guru
Guru


Joined: 20 Apr 2002
Posts: 524
Location: Rochester, NY, USA

PostPosted: Wed Sep 04, 2002 3:20 am    Post subject: Reply with quote

kanuslupus wrote:
That's where I'm going, and likely dual. Serial-ATA too. Thats another thread though. Anxiously awaiting seti performance on that bugger.

I am saving my pennies, even got a TA job here at school to make some more cash by teaching freshmen. :lol:
I would like a dual, but I probably can't afford it, oh well, 1 64bit processor will have to do. Oh yea, and Gentoo will support it as soon as I order one right? :D

Andrew
Back to top
View user's profile Send private message
Mnemia
Guru
Guru


Joined: 17 May 2002
Posts: 476

PostPosted: Wed Sep 04, 2002 3:25 am    Post subject: Reply with quote

squanto wrote:
We are doing quite well, we have a bunch of ppl under 5 hours, and everyone is cranking away.
I think the Ars Technica team is cheating... http://setiathome.ssl.berkeley.edu/stats/team/team_14240.html
but we can still top them, you know, with the fastest linux distro out there :lol:
I like my Athlon 1600+, but I want an opteron.... :drool:

Andrew


I currently hold the dubious honor of having the longest average time per work unit on the team! Dunno how much longer I'll keep it though...my combined throughput on the two machines I have is about 3.5 hours per unit now. Hehe the first machine I ran Seti on took like 50 hours a unit (!)
Back to top
View user's profile Send private message
delta407
Bodhisattva
Bodhisattva


Joined: 23 Apr 2002
Posts: 2876
Location: Chicago, IL

PostPosted: Wed Sep 04, 2002 3:28 am    Post subject: Reply with quote

I'm in, with a Pentium 2 233 (;)), an Athlon XP 1600+, and (when I'm not booted into Windows) my dual P3 1.0 GHz box. I just hope I have adequate cooling. :D
_________________
I don't believe in witty sigs.
Back to top
View user's profile Send private message
delta407
Bodhisattva
Bodhisattva


Joined: 23 Apr 2002
Posts: 2876
Location: Chicago, IL

PostPosted: Wed Sep 04, 2002 4:23 am    Post subject: Reply with quote

delta407 wrote:
my dual P3 1.0 GHz box

Argh, the init script doesn't launch >1 process on dual-processor machines. So, one of my CPUs was sitting idle.

Not to fear, though. Behold, the newly souped-up, multi-processor-aware init script. (It ought to work on single-CPU machines as well; it deduces processor count from /proc/cpuinfo and doesn't do anything if the CPU count is 1.)

/etc/init.d/setiathome:
Code:
#!/sbin/runscript

cpus=`grep -c processor /proc/cpuinfo`

checkconfig() {
        if [ ! -e ${SETIATHOME_DIR} ]
        then
                einfo "Creating ${SETIATHOME_DIR}"
                mkdir ${SETIATHOME_DIR}
        fi

        if [ ! -e ${SETIATHOME_DIR}/user_info.sah ]
        then
                einfo "Setting up SETI@home for the first time"
                cd ${SETIATHOME_DIR}
                ./setiathome -login
        fi

        if [ $cpus != '1' ]; then
                cd ${SETIATHOME_DIR}
                for cpu in `seq 2 $cpus`; do
                        if [ ! -e ${SETIATHOME_DIR}/cpu${cpu} ]; then
                                mkdir ${SETIATHOME_DIR}/cpu${cpu}
                                cp ${SETIATHOME_DIR}/* ${SETIATHOME_DIR}/cpu${cpu} > /dev/null
                                rm ${SETIATHOME_DIR}/cpu${cpu}/*.sah > /dev/null
                                cp ${SETIATHOME_DIR}/user_info.sah ${SETIATHOME_DIR}/cpu${cpu}
                        fi
                done
        fi
}

start() {
        checkconfig


        if [ $cpus = '1' ]; then
                ebegin "Starting SETI@home"
        else
                ebegin "Starting SETI@home ($cpus processors)"
        fi

        for cpu in `seq 1 $cpus`; do
                cd ${SETIATHOME_DIR}
                if [ $cpu != '1' ]; then
                        cd cpu${cpu}
                fi

                ./setiathome ${SETIATHOME_OPTIONS} >&/dev/null&
        done

        eend $?
}

stop() {
        ebegin "Stopping SETI@home"
        killall setiathome
        eend $?
}


If you have a >1 CPU machine, just replace the init script with this, and to a /etc/init.d/setiathome stop, /etc/init.d/setiathome start. (That's because checkconfig isn't called on restart, just on stop/start. It's silly.) It will make a copy of your SETI directory (into /opt/setiathome/cpu#), delete the work files in the new copy, and launch an instance in that new directory. Very nice.

Have fun. (Maybe I should submit this to the bug tracker...)

Edit: bug 7483 filed.
_________________
I don't believe in witty sigs.


Last edited by delta407 on Wed Sep 04, 2002 10:01 pm; edited 1 time in total
Back to top
View user's profile Send private message
Incon
n00b
n00b


Joined: 03 Sep 2002
Posts: 10

PostPosted: Wed Sep 04, 2002 5:25 am    Post subject: Reply with quote

Shame I forgot my previous username and email, oh well, a fresh start with Gentoo isn't an entirely bad thing.
Back to top
View user's profile Send private message
squanto
Guru
Guru


Joined: 20 Apr 2002
Posts: 524
Location: Rochester, NY, USA

PostPosted: Wed Sep 04, 2002 12:37 pm    Post subject: Reply with quote

Yea! I remembered my old SETI account that I used to use on my G4, so I added myself, I am andrewbradford, give us some more stats!
Wh00t!
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Tue Sep 17, 2002 3:55 am    Post subject: Reply with quote

delta407 is Sssssssssssmokin'! Anyone think they'll be able to keep up?

aka

*bump*
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
squanto
Guru
Guru


Joined: 20 Apr 2002
Posts: 524
Location: Rochester, NY, USA

PostPosted: Tue Sep 17, 2002 8:22 pm    Post subject: Reply with quote

no.... I sadly won't be able to keep up. Unless....................

:idea::good idea comes to mind::idea:
Back to top
View user's profile Send private message
delta407
Bodhisattva
Bodhisattva


Joined: 23 Apr 2002
Posts: 2876
Location: Chicago, IL

PostPosted: Tue Sep 17, 2002 9:58 pm    Post subject: Reply with quote

kanuslupus wrote:
delta407 is Sssssssssssmokin'! Anyone think they'll be able to keep up?

Oh, come on. My user page currently shows that I've been a member for 330 hours with ~1900 CPU hours put in. That's only 5.7 processors on average.

Doesn't everyone have 5.7 unused processors at their disposal? ;)
_________________
I don't believe in witty sigs.
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Tue Sep 17, 2002 10:33 pm    Post subject: Reply with quote

hehe, I'm using 1.0382 processors. Need to get another machine going again.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
delta407
Bodhisattva
Bodhisattva


Joined: 23 Apr 2002
Posts: 2876
Location: Chicago, IL

PostPosted: Wed Sep 18, 2002 2:25 am    Post subject: Reply with quote

What's silly is that it was running on my dual-CPU box for ~12 hours, then I added another one (about 85% of the CPU), then another one a few minutes later, then another one 24 hours later...

Now I think I'm up to nine or so. But I'm not sure. ;)
_________________
I don't believe in witty sigs.
Back to top
View user's profile Send private message
zojas
Veteran
Veteran


Joined: 22 Apr 2002
Posts: 1138
Location: Phoenix, AZ

PostPosted: Thu Sep 19, 2002 10:12 pm    Post subject: seti group Reply with quote

I joined the group! I've been a seti user for a long time. I was originally under 'kevin' but I changed my nickname to match my gentoo forum nickname.

I've been a seti contributor for a long time. I used to have about 15 computers running it, but now I'm down to just my 90 MHz pentium firewall and 700 MHz athlon thunderbird workstation. I might also add the 1.7GHz p4 at work, but I'm not the only one using it right now.
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Thu Sep 19, 2002 11:12 pm    Post subject: Reply with quote

Welcome to the team.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Fri Sep 20, 2002 6:01 am    Post subject: Reply with quote

Woohoo! Someone from Armenia has joined the team. I was hoping to see the non-US users grow.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
Pitr
Tux's lil' helper
Tux's lil' helper


Joined: 23 Jun 2002
Posts: 90

PostPosted: Fri Sep 20, 2002 6:39 am    Post subject: Reply with quote

kanuslupus wrote:
Woohoo! Someone from Armenia has joined the team. I was hoping to see the non-US users grow.


Actually that would be me, and I'm really from Denmark but I kinda put the wrong number in the profile - it should be corrected in the next update.
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Fri Sep 20, 2002 7:58 am    Post subject: Reply with quote

:lol: OK, Denmark is good too.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
Pitr
Tux's lil' helper
Tux's lil' helper


Joined: 23 Jun 2002
Posts: 90

PostPosted: Fri Sep 20, 2002 9:45 am    Post subject: Reply with quote

kanuslupus wrote:
:lol: OK, Denmark is good too.


Yeah... Denmark is nice, sadly I don't see many danish Linux users, let alone Gentoo users..
Back to top
View user's profile Send private message
EatYourGreens
n00b
n00b


Joined: 21 Aug 2002
Posts: 25
Location: Munich, Germany

PostPosted: Sat Sep 21, 2002 7:47 am    Post subject: Reply with quote

I've joined too, although I don't have many results since I only started seti this week, and I have a slow PC.

I have a confession to make. I am not a Gentoo user, I run SuSE :) . I will change to Gentoo as soon as Deutsche Telekom can get my ADSL connection working. Hope you don't mind.

Has anybody emailed the members of the other Gentoo seti groups to ask them to switch over?
_________________
Microsoft, the Gates of Hell
Back to top
View user's profile Send private message
delta407
Bodhisattva
Bodhisattva


Joined: 23 Apr 2002
Posts: 2876
Location: Chicago, IL

PostPosted: Sat Sep 21, 2002 4:12 pm    Post subject: Reply with quote

I just got the following e-mail:
Quote:
Dear delta407,

Congratulations on recently completing your 250th SETI@home workunit. Through your support, SETI@home has grown to become the largest distributed computation on Earth. We at SETI@home greatly appreciate the 0.28 years of computer time you have donated to the project, and hope that you will continue your support.


Member for 420 hours. :D
_________________
I don't believe in witty sigs.
Back to top
View user's profile Send private message
karmakillernz
n00b
n00b


Joined: 01 May 2002
Posts: 55

PostPosted: Sun Sep 22, 2002 12:40 am    Post subject: Reply with quote

hehe Congrats :wink:

If I continue at my average time per unit, I should hit 250 in 888 hours... :)
Back to top
View user's profile Send private message
EatYourGreens
n00b
n00b


Joined: 21 Aug 2002
Posts: 25
Location: Munich, Germany

PostPosted: Sun Sep 22, 2002 9:25 pm    Post subject: Reply with quote

I am clearly in a different (lower) league to the rest of you, since my PC has only managed 2 work units in 69 hr CPU time.

However, I have also completed more work units than 42.136% of SETI users, which means that a lot of people register, but never give any CPU time to seti@home. Why do they bother?
_________________
Microsoft, the Gates of Hell
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20067

PostPosted: Mon Sep 23, 2002 12:44 am    Post subject: Reply with quote

Maybe alot give up after 1 result. I had some problems for a while when the GUI part only ran at 800x600 resolution. This could have been part of the problem.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
digicosm
Tux's lil' helper
Tux's lil' helper


Joined: 23 Sep 2002
Posts: 90

PostPosted: Mon Sep 23, 2002 1:12 am    Post subject: Re: SETI and Gentoo Linux Users Everywhere Reply with quote

kanuslupus wrote:
I have found three Gentoo SETI 'teams'.

Gentoo Linux Team, German Gentoo Linux Team and Gentoo Linux User Germany.

I created the Gentoo Linux Users Everywhere group to 'consolidate' efforts. The Gentoo Linux Team might have been useable, but there is no contact information on their page and I could find none of their 'names' as registered forum members. In addition, they no longer seem active.

Join if you are interested.


Sure, I'll join! But the SETI@Home website lists two groups with this name:


http://setiathome.ssl.berkeley.edu/stats/team/team_149444.html


http://setiathome.ssl.berkeley.edu/stats/team/team_149448.html

I assume the one with 1 user is just a fluke. But you may want to delete it to avoid confusion...
Back to top
View user's profile Send private message
arkane
l33t
l33t


Joined: 30 Apr 2002
Posts: 918
Location: Phoenix, AZ

PostPosted: Mon Sep 23, 2002 1:14 am    Post subject: Reply with quote

EatYourGreens wrote:
I am clearly in a different (lower) league to the rest of you, since my PC has only managed 2 work units in 69 hr CPU time.

However, I have also completed more work units than 42.136% of SETI users, which means that a lot of people register, but never give any CPU time to seti@home. Why do they bother?


I think like alot of people, they hear about seti@home then go the page to download it and make a userid. When it comes down to running it continuously, they shutter a bit. They probably put in a day or two of effort, but thats it.

I used to run it continously on about 8 machines back about 3 years ago. (all 500mhz and up) I just started running it now, since I was reminded of it :) I just need to go to the site and figure out how to join a group.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Gentoo Chat All times are GMT
Goto page Previous  1, 2, 3, ... 22, 23, 24  Next
Page 2 of 24

 
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