Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Поиск по:hea-www.harvard.edu   - Поискать по всем серверам
На этой странице приведены все страницы сервера hea-www.harvard.edu ,которые мы индексируем. Показаны документы 7421 - 7440 из 7508.

В начало ] Пред. | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | След.

Упорядочить по: URL  |  дате изменения
7421. http://hea-www.harvard.edu/~fine/Tech/cs1.2/Makefile.solaris
CC=gcc CFLAGS=-O -DSOLARIS conserver: $(CC) $(CFLAGS) conserver.c -o conserver -lsocket -lnsl -lresolv console: $(CC) $(CFLAGS) console.c -o console -lsocket -lnsl -lresolv conview: conview.c $(CC) $(CFLAGS) conview.c -o conview -lcurses -ltermcap
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.2/Makefile.solaris -- 1.2 Кб -- 06.08.1998
Похожие документы

7422. http://hea-www.harvard.edu/~fine/Tech/cs1.2/Makefile.sunos
CC=cc CFLAGS=-O conserver: $(CC) $(CFLAGS) conserver.c -o conserver -lnsl -lresolv console: $(CC) $(CFLAGS) console.c -o console -lsocket -lnsl -lresolv conview: conview.c $(CC) $(CFLAGS) conview.c -o conview -lcurses -ltermcap
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.2/Makefile.sunos -- 1.2 Кб -- 06.08.1998
Похожие документы

7423. http://hea-www.harvard.edu/~fine/Tech/cs1.1/Makefile
... DMNDIR = /usr/local/daemons # # In what directory do I put the client program (console)? ... GRP = staff # # That's all that needs to be set here. # all: console conserver console : $(CC) $(CFLAGS) console .c -o console -lresolv conserver : $(CC) $(CFLAGS) conserver .c -o conserver install : console conserver # install client cp console $( BINDIR ) chmod 750 $( BINDIR )/ console chgrp $(GRP) $( BINDIR )/ console # install server cp conserver $( DMNDIR ) ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/Makefile -- 2.5 Кб -- 06.08.1998
Похожие документы

7424. http://hea-www.harvard.edu/~fine/Tech/cs1.1/constab
Sample configuration file (/etc/ constab ) # groups should be numbered starting at 1 and skipping no numbers # current limits - 20 groups / 10 members per group # #format: #server:/ dev / file :/usr/ adm /logfile:group_num tree:/ dev /ttyj0:/ tmp /treelog:1 fish:/ dev /ttyj1:/ tmp /fishlog:1 bird :/ dev /ttyj2:/ tmp / birdlog :1 solar:/ dev /ttyj3:/ tmp /solarlog:2 stellar:/ dev /ttyj4:/ ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/constab -- 1.5 Кб -- 06.08.1998
Похожие документы

7425. http://hea-www.harvard.edu/~fine/Tech/cs1.1/NEWSTUFF
New things in this distribution: Multiple Console Servers The client can now connect to several machines in succession when searching for a particluar console. ... This introduces one bug, but I'm not likely to fix it: the mechanism for finding unique abbreviations can't work accross multiple console servers. ... Carrier Detect The TIOCSSOFTCAR ioctl is used to turn off (ignore) carrier detect. ... Serial Line Break I switched from using TIOCSBRK and TIOCCBRK, to TCSBRK, for generating the line break. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/NEWSTUFF -- 3.2 Кб -- 06.08.1998
Похожие документы

7426. http://hea-www.harvard.edu/~fine/Tech/cs1.1/Readme
... It also provides log file of the consoles. ... Makefile first attempt at a Makefile console.c client sources conserver.c server sources cons.h source configuration constab sample config file console.1 man pages constab.5 conserver.8 BUILDING and INSTALLING First off, this stuff isn't guarenteed to work, or compile or anything. ... This compiles the client and server. ... Edit /etc/constab (on the machine which will be the console server), and create whatever directories you need for the log files. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/Readme -- 7.2 Кб -- 06.08.1998
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.2/Readme1.1 -- 7.2 Кб -- 06.08.1998
Похожие документы

7427. http://hea-www.harvard.edu/~fine/Tech/cs1.1/mips
From: Ken Nawyn <ken@nynexst.com> I have just finished porting the "console.c" and "conserver.c" programs to a MIPS Magnum 3000 system. ... The operating system revision is RISCOS 4.52. 1) use the -lbsd flag during compilation to resolve the library references to "Berkeley" system calls. 2) in the program "conserver.c" add the following around the calls the include of "errno.h." #ifdef mips #include <sysv/errno.h> #else #include <errno.h> #endif /* mips */ ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/mips -- 2.0 Кб -- 06.08.1998
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.2/mips -- 2.0 Кб -- 06.08.1998
Похожие документы

7428. http://hea-www.harvard.edu/~fine/Tech/cs1.1/paper.asc
A Console Server Thomas A. Fine Steven M. Romig The Ohio State University Abstract Most computers nowadays include some sort of ``console terminal'' from which one can perform certain special administrative tasks, such as booting the machine, or running diagnostics. Some things also write error message to the console terminal. ... The software consists of a server program which does the logging and handles connections, and a client program used to connect to any desired terminal. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/paper.asc -- 14.2 Кб -- 06.08.1998
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.2/paper.asc -- 14.2 Кб -- 06.08.1998
Похожие документы

7429. http://hea-www.harvard.edu/~fine/Tech/cs1.1/Sun-serial
If you are going to be hooking Sun consoles to your console server, you may run into a problem: The sun will halt whenever the cable is unplugged. It will also halt when the the console server is powered off and on. To prevent this we modified the wiring of our serial cables at the end that attaches to the suns. ... The server can still be halted by generating a software line break, which is can be done by sending an escape sequence to the console server. ... 5 CTS --+ 5 CTS 6 DSR --+ 6 DSR | ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/Sun-serial -- 3.0 Кб -- 06.08.1998
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.2/Sun-serial -- 3.0 Кб -- 06.08.1998
Похожие документы

7430. http://hea-www.harvard.edu/~fine/Tech/cs1.1/conserver.8
conserver.8 01/06/91 OSU CIS; Thomas A. Fine .TH CONSERVER 8 "6 January 1991" "OSU/CIS" .SH NAME conserver \- console server .SH SYNOPSIS .B conserver [dummy argument] .SH DESCRIPTION .B Conserver is the server for the .IR console (1) program. ... When .IR console (1) is used to make a connection, the following protocol is executed: .IP 1) The client program attaches to the parent server process, and sends it a server name, followed by a carriage return (`\\n'). ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/conserver.8 -- 3.6 Кб -- 06.08.1998
Похожие документы

7431. http://hea-www.harvard.edu/~fine/Tech/cs1.1/constab.5
constab.5 01/06/91 OSU CIS; Thomas A. Fine .TH CONSTAB 5 "6 January 1991" "OSU/CIS" .SH NAME constab \- table of server console terminals used by conserver(8) .SH SYNOPSIS .B /etc/constab .SH DESCRIPTION .B Constab is the configuration file for .IR conserver (8). ... Server name - this doesn't have to be the name of the server; it is used to refer to the server when using the console program. .sp 2. ... Group number - defines which group of servers this server is with. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/constab.5 -- 2.4 Кб -- 06.08.1998
Похожие документы

7432. http://hea-www.harvard.edu/~fine/Tech/cs1.1/console.1
console.1 01/06/91 OSU CIS; Thomas A. Fine .TH CONSOLE 1 "6 January 1991" "OSU/CIS" .SH NAME console \- console server client program .SH SYNOPSIS .B console [ -a | ... w ] .I server [escape characters] .br .B console who .SH DESCRIPTION .B Console is used to manipulate the server console terminals remotely. ... B Console will request a password, except when using the -w option (who). ... Options for .B console are: .TP .B \-a Requests a two-way connection to the specified console (default). ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cs1.1/console.1 -- 3.8 Кб -- 06.08.1998
Похожие документы

7433. http://hea-www.harvard.edu/~pgreen/educ/ASP2.ps
Peer Instruction in Physics & Astronomy By encouraging student participation and interaction during the lecture, Peer Instruction encourages students to critically think through the arguments being developed, and to discuss their ideas and insights with their neighbors. ... After one minute, the students record an answer and are then asked to turn to their neighbors to try and convince them of their answers. ... Student satisfaction with the courses have been high. ...
[ Текст ]  Ссылки http://hea-www.harvard.edu/~pgreen/educ/ASP2.ps -- 9.6 Кб -- 26.06.1998
Похожие документы

7434. http://hea-www.harvard.edu/~pgreen/educ/ASP3.ps
The ConcepTest Library For Peer Instruction to succeed, students need to be able to focus quickly on the concept in an interactive way that highlights the most common misconceptions. ConcepTests are multiple choice questions which the students pose to each other in small groups, during class. ... We have begun to compile a library of ConcepTests for introductory astronomy. ... ConcepTest questions should be short, conceptual, multiple choice tests that can be presented without elaborate diagrams. ...
[ Текст ]  Ссылки http://hea-www.harvard.edu/~pgreen/educ/ASP3.ps -- 10.4 Кб -- 26.06.1998
Похожие документы

7435. http://hea-www.harvard.edu/~pgreen/educ/ASP1.ps
ConcepTests for Introductory Undergraduate Astronomy Paul J. Green Harvard Smithsonian Center for Astrophysics One of the most challenging aspects of teaching introductory science courses is that many students, expecting to be spoon­fed "the facts", fail to think critically and begin to lose interest. ... For them, this is their last science class. ... Phone is (617)495­7057 and FAX (617)495­7356, at the Harvard­Smithsonian Center for Astrophysics, 60 Garden St., Cambridge MA 02138 ...
[ Текст ]  Ссылки http://hea-www.harvard.edu/~pgreen/educ/ASP1.ps -- 9.3 Кб -- 26.06.1998
Похожие документы

7436. http://hea-www.harvard.edu/PROS/PUG/fig7_1b.ps
rp90_obs.tab[3:34]012 min Chi­Squared = 60.69 for abs(20.0000)*ray(11.9984 0.6389 cosmic 50)+ray(0.7000 1.7195 cosmic 50) using abs(20.0000)*ray(0.4887:0.7887 cosmic 50)+ray(0.7000 1.2200:2.2200 cosm .5 .55 .6 .65 .7 .75 1.4 1.6 1.8 2 2.2 temperature temperature Chi­Squared Grid contours at: + 2.30 + 4.61 + 9.21
[ Текст ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/fig7_1b.ps -- 25.8 Кб -- 10.06.1998
Похожие документы

7437. http://hea-www.harvard.edu/PROS/PUG/fig8_1a.ps
MJD Start: 44427 85397.985s Clock Start: 79486997.985s Valid­time span: 7691.520s Tot Cnts: 4523 Src Region: CIRCLE 503. 512. 24. Bkg Region: NONE Num of Bins: 500 Bin Length: 1.538304008E1s Light Curve : psr_ltc.tab Count Rate (cts/sec) Time (seconds) 0.00000E0 3.07661E3 6.15322E3 0.000E0 1.000E0 2.000E0
[ Текст ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/fig8_1a.ps -- 28.1 Кб -- 10.06.1998
Похожие документы

7438. http://hea-www.harvard.edu/PROS/PUG/fig8_1b.ps
MJD Start: 44427 85397.985s Clock Start: 79486997.985s Valid­time span: 7691.520s Tot Cnts: 4523 Src Region: CIRCLE 503. 512. 24. Bkg Region: NONE Num of Bins: 16384 Bin Length: 4.694531274E­1s Tot Valid Secs: 4440.754s Fourier Intv: 7691.520s Power Spectrum : psr_fft.tab power frequency (Hz) 0.00000E0 3.25033E­1 6.50067E­1 9.75100E­1 0.000E0 5.000E0 1.000E1 1.500E1
[ Текст ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/fig8_1b.ps -- 126.7 Кб -- 10.06.1998
Похожие документы

7439. http://hea-www.harvard.edu/PROS/PUG/fig8_1c.ps
MJD Start: 44427 85397.985s Clock Start: 79486997.985s Valid­time span: 7691.520s Tot Cnts: 4523 Src Region: CIRCLE 503. 512. 24. Bkg Region: NONE Num of Bins: 5 Bin Length: 3.000000000E­4s Chi Square : psr_chi.tab chisq period (seconds) 3.45000E0 3.46500E0 3.48000E0 3.49500E0 5.000E1 1.000E2 1.500E2
[ Текст ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/fig8_1c.ps -- 15.1 Кб -- 10.06.1998
Похожие документы

7440. http://hea-www.harvard.edu/PROS/PUG/fig5_1.ps
SCALE LINEAR WRAP LOG SQRT HISTEQ BLINK MONO OVLAY GAMMA INVERT CMAP DITH1 DITH2 DIFFUSE INVERT COLOR CURSOR POINT POLY BOX CIRCLE ELLIPSE ANNULI REGION ETC QUIT RAISE PRINT VERB COORD TRACK NEW PAN CENTER ZOOM 1 X4 X2 X1/2 X1/4 18 WRITE READ GRAY BB HE A B VIEW LABEL CYCLE OMIT RESET WRITE READ 0 o
[ Текст ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/fig5_1.ps -- 49.0 Кб -- 10.06.1998
Похожие документы

В начало ] Пред. | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | След.

Rambler's Top100 RFBR Яндекс цитирования