.\" $FreeBSD$ .Dd May 19, 1999 .Dt setiathome 1 LOCAL .Os FreeBSD .Sh NAME .Nm setiathome .Nd the SETI@home client program .Sh SYNOPSIS .Nm .Op Ar options .Sh DESCRIPTION .Nm is the .Ux version of the .Tn SETI@home client. It downloads radio telescope data from a network server, analyzes the data looking for signals of extraterrestrial origin, and uploads results to the server, repeating this cycle indefinitely. See .Li http://setiathome.berkeley.edu for more information. .Pp The first time you run .Nm it will interactively ask you for E-mail address, name, country etc. This info is stored in a file and no interaction is needed when you run the program subsequently. .Pp After this you can run .Nm in the background, and direct its output to .Pa /dev/null if you like. .Pp .Nm can be freely aborted and restarted. It saves its state in files, and will pick up where it left off. .Pp If you want to run multiple instances of .Nm (on a multiprocessor machine, or on multiple machines that share a filesystem) each one must be run in a different directory. .Pp .Nm requires about 0.5\ MBytes of disk space per working directory, and about 15\ MBytes of memory per instance. If you have ample physical memory, its work load should be almost undetectable. Additionally, .Nm requires a permanent or .Dq dial on demand Internet connection to upload results to and download new work units from the .Tn SETI@home server at any time. .Ss Starting setiathome This .Fx port includes a start-up script that starts .Nm at system start-up. .Ss Configuration File The optional configuration file .Pa /usr/local/etc/setiathome.conf can contain one or more of the following variable assignments to override their default values: .Bl -tag -width seti_wrkdir .It Pa seti_wrkdir=/var/db/setiathome The working directory where .Nm will store it's temporary files. .It Pa seti_user=nobody The user to run .Nm as. .It Pa seti_nice=1 The .Xr nice 1 value to run .Nm at. .It Pa seti_maxprocs= Ns Va Number of CPUs The number of .Nm processes to run concurrently. Defaults to the number of CPUs installed. Running more than one instance per CPU is not useful, as .Nm is almost completely CPU-bound. .El .Pp If you change values in the configuration file, you need to stop and start .Nm Ns , and possibly reconfigure the working directory for the changes to take effect. Run .Dl /usr/local/etc/rc.d/setiathome.sh stop .Dl /usr/local/etc/rc.d/setiathome.sh register .Dl /usr/local/etc/rc.d/setiathome.sh start to do that. .Ss Setting up setiathome You can use the start-up script to set up a working directory and register with or log in to .Tn SETI@home by calling it with the argument .Ar register . If you'd like to configure and run it manually, you should first disable the start-up script. Then, for each .Nm instance you'd like to run, create a directory, make it owned by the user you'd like to run .Nm as, and run .Ic setiathome -login in that directory. .Pp Then, arrange for .Nm to be started automatically. You can easily do so by adding a line similiar to .Bd -ragged -offset indent .Li */10 * * * * cd .Va working directory .Li && setiathome -email >/dev/null .Ed .Pp to the user's crontab. .Sh OPTIONS .Bl -tag -width countries .It Fl countries Show list of country codes. .It Fl email Send E-mail (to login E-mail address) on errors. Useful if you run in background directed to .Pa /dev/null . .It Fl graphics Generate a data stream for the .Xr xsetiathome 1 graphical interface. .It Fl login Login or create new account. .It Fl nice Ar N Set .Xr nice 1 priority to .Ar N (default 1). .It Fl nolock Omit the multiple-instance check, which uses file locking (not available on some NFS systems). .It Fl proxy Ar hostname : Ns Ar port Connect to .Tn SETI@home server via specified HTTP proxy server and port. .It Fl socks_passwd Ar password SOCKS .Ar password . .It Fl socks_server Ar hostname : Ns Ar port Connect to .Tn SETI@home server via specified SOCKS server and port. Overrides .Ev SOCKS_SERVER . SOCKS versions 4 and 5 are supported. .It Fl socks_user Ar name SOCKS user .Ar name . .It Fl stop_after_process Stop after processing current work unit. Do not send result. .It Fl stop_after_xfer Stop after current work unit has been sent to the SETI server and a new work unit has been obtained. (See also .Pa stop_after_send.sah mentioned in .Sx FILES below.) .It Fl verbose Print a running summary of the work being done. .It Fl version Show software version. .El .Sh ENVIRONMENT .Bl -tag -width SOCKS_SERVER .It Ev HTTP_PROXY If defined, .Nm will connect through a proxy server, specified as .Do Ns Va hostname Ns .Op Li : Ns Va port .Dc . .It Ev SOCKS_SERVER If defined, .Nm will connect through a SOCKS server, specified as .Do Ns Va hostname Ns .Op Li : Ns Va port .Dc . .It Ev SOCKS_USER , Ev SOCKS_PASSWD If defined, these will be used as the login name and password for the SOCKS server. Otherwise .Nm will query you. .El .Sh FILES .Bl -tag -width /var/db -compact .It Pa /usr/local/etc/setiathome.conf Optional configuration file for the start-up script. .It Pa /usr/local/etc/rc.d/setiathome.sh Start-up script. .It Pa /var/db/setiathome/ Primary working directory. .It Pa /var/db/setiathome/user_info.sah Registration data. .It Pa /var/db/setiathome/ Ns Va n Ns Pa / Working directories for additional process .Va n (when running more than one instance). .It Pa /var/db/setiathome/ Ns Xo .Op Ns Va n Ns Pa / Ns .Pa lock.sah .Xc Lock file to prevent multiple instances to work on the same data. .It Pa /var/db/setiathome/ Ns Xo .Op Ns Va n Ns Pa / Ns .Pa *.sah .Xc Working files. These should not be modified. .It Pa /var/db/setiathome/ Ns Xo .Op Ns Va n Ns Pa / Ns .Pa pid.sah .Xc The process ID of the current instance. .It Pa /var/db/setiathome/ Ns Xo .Op Ns Va n Ns Pa / Ns .Pa stop_after_send.sah .Xc While the client is running, touch this file in the working directory to finish up your current work unit, return your result, and not download a new work unit. When the processing is finished, and the result sent, the client will stop. .El .Sh SEE ALSO .Xr xsetiathome 1 .Sh AUTHORS .Tn SETI@home was developed by David Anderson, Jeff Cobb, Charles Congdon, Charlie Fenton, David Gedye, Kyle Granger, Eric Korpela, Matt Lebofsky, Peter Leiser, Brad Silen, Woody Sullivan, and Dan Werthimer. .Pp .An Stefan Bethke Aq stb@freebsd.org amended the original manual page for this .Fx port.