home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / internet / news0495.zip / NEWS0495.TXT
Text File  |  1993-05-14  |  49KB  |  996 lines

  1. Archive-name: x-faq/part2
  2. Last-modified: 1993/05/11
  3.  
  4. ----------------------------------------------------------------------
  5. Subject:  21)  How do I use another window manager with DEC's session manager?
  6.  
  7.     DEC's session manager will start dxwm up by default. To override this, 
  8. add to your .Xdefaults file something like this line, naming the full pathname:
  9.     sm.windowManagerName:   /wherever/usr/bin/X11/your_favorite_wm
  10.  
  11. ----------------------------------------------------------------------
  12. Subject:  22)  How do I change the keyboard auto-repeat rate?
  13.  
  14.     You can turn auto-repeat on or off by using "xset r on|off". The X
  15. protocol, however, doesn't provide for varying the auto-repeat rate, which is
  16. a capability not supported by all systems.
  17.     Some servers running on systems that support this, however, may provide
  18. command-line flags to set the rate at start-up time. If you have control over 
  19. server start-up (see the man pages for xinit and xdm), you can invoke the 
  20. server with the chosen settings; for example, you can start the Xsun server 
  21. from MIT with the options "-ar1 350 -ar2 30" to reduce the sensitivity of the 
  22. keyboard.
  23.  
  24. ----------------------------------------------------------------------
  25. Subject:  23)  How do I remap the keys on my keyboard to produce a string?
  26.  
  27.     There is no method of arranging for a particular string to be
  28. produced when you press a particular key. The xmodmap client, which is useful 
  29. for moving your CTRL and ESC keys to useful places, just rearranges keys and 
  30. does not do "macro expansion."
  31.     Some (few) clients, including xterm and several X-based editors, 
  32. accept a translation resource such as:
  33.     xterm*VT100.Translations: #override \
  34.         <Key>F1: string("setenv DISPLAY unix:0")
  35. which permits the shorthand F1 to be pressed to reset the display locally
  36. within an xterm; it takes effect for new xterm clients. To include control
  37. characters in the string, use \nnn, where nnn is the octal encoding of the
  38. control character you want to include.
  39.     Window managers, which could provide this facility, do not yet; nor
  40. has a special "remapper" client been made available.
  41.  
  42. ----------------------------------------------------------------------
  43. Subject:  24)  How do I make a screendump or print my application?
  44.  
  45.     The xwd client in the X11 distributions can be used to select a window 
  46. or the background. It produces an XWD-format file of the image of that window. 
  47. The file can be post-processed into something useful or printed with the xpr 
  48. client and your local printing mechanism. You can use this command:
  49.         csh% sleep 10; xwd -root > output.xwd &
  50. and then spend 10 seconds or so setting up your screen; the entire current
  51. display will be saved into the file output.xwd. Note that xwd also has an
  52. undocumented (before R5) -id flag for specifying the window id on the 
  53. command-line. [There are also unofficial patches on export to xwd for 
  54. specifying the delay and the portion of the screen to capture.]
  55.  
  56.     Two publicly-available programs which allow interactive definition of 
  57. arbitrary portions of the display and built-in delays are asnap and xgrabsc.
  58. There are several versions of xgrabsc; version 2.2, available on export [8/92]
  59. is the most recent.
  60.     xsnap includes some asnap features and supersedes it; it also renders 
  61. XPM output [version unknown]. It is available on export or avahi.inria.fr;
  62. see xsnap-pl2.tar.Z.
  63.     A screen-dump and merge/edit program combining features of xwd and xpr
  64. is available from vernam.cs.uwm.edu as xdump1.0.tar.Z. Information: 
  65. soft-eng@cs.uwm.edu.
  66.     xprint, by Alberto Accomazzi (alberto@cfa.harvard.edu) is available
  67. from cfa0 (128.103.40.1) in xprint.export-2.1.tar.Z.
  68.  
  69.     To post-process the xwd output of some of these tools, you can use xpr,
  70. which is part of the X11 distribution. Also on several archives are xwd2ps
  71. and XtoPS, which produce Encapsulated PostScript with trimmings suitable for 
  72. use in presentations (see export.lcs.mit.edu:contrib/xwd2ps.tar.Z and
  73. contrib/ImageMagick.tar.Z). Also useful is the PBMPLUS package on many archive
  74. servers; and the Xim package contains Level 2 color PostScript output.
  75.  
  76.     The XV program can grab a portion of the X display, manipulate it, and
  77. save it in one of the available formats. ImageMagick has similar capabilities.
  78.  
  79.     Also: 
  80.  
  81.     Bristol Technology (info@bristol.com, 203-438-6969) offers Xprinter 
  82. 2.0, an Xlib API for PostScript and PCL printers; a demo is on ftp.uu.net
  83. in vendor/Bristol/Xprinter.
  84.  
  85.     ColorSoft 9619-459-8500) offers OPENprint package includes a screen-
  86. capture facility, image-processing, and support for PostScript and 
  87. non-PostScript printers.
  88.  
  89.     Some vendors' implementations of X (e.g. DECWindows and OpenWindows) 
  90. include session managers or other desktop programs which include "print portion
  91. of screen" or "take a snapshot" options. Some platforms also have tools which 
  92. can be used to grab the frame-buffer directly; the Sun systems, for example, 
  93. have a 'screendump' program which produces a Sun raster file. Some X terminals 
  94. have local screen-dump utilities to write PostScript to a local serial printer.
  95.  
  96.     Some vendors' implementations of lpr (e.g. Sony) include direct 
  97. support for printing xwd files, but you'll typically need some other package 
  98. to massage the output into a useful format which you can get to the printer.
  99.  
  100. ----------------------------------------------------------------------
  101. Subject:  25)  How do I make a color PostScript screendump of the X display?
  102.  
  103.     If you need color PostScript in particular, you can 
  104.     - grab the screen-image using a program which can produce color 
  105. PostScript, such as xgrabsc and xv 
  106.     - grab the screen-image using xwd and post-process xwd into color PS.
  107. You can do this using xwd2ps or the XtoPS program from the ImageMagick 
  108. distribution. The PBMPLUS package is also good for this, as is the Xim package.
  109.  
  110. ----------------------------------------------------------------------
  111. Subject:  26)  How do I make a screendump including the X cursor?
  112.  
  113.     This can't be done unless the X server has been extended. Consider 
  114. instead a system-dependent mechanism for, e.g.,  capturing the frame-buffer.
  115.  
  116. ----------------------------------------------------------------------
  117. Subject:  27)! How do I convert/view Mac/TIFF/GIF/Sun/PICT/img/FAX images in X?
  118.  
  119.     The likeliest program is an incarnation of Jef Poskanzer's useful++ 
  120. Portable Bitmap Toolkit, which includes a number of programs for converting 
  121. among various image formats. It includes support for many types of bitmaps, 
  122. gray-scale images, and full-color images. PBMPLUS has been updated recently;
  123. the most recent version [12/91] is on export in contrib/pbmplus10dec91.tar.Z.
  124.     Another tool is San Diego Supercomputing Center's IMtools ('imconv' in 
  125. particular), which packages the functionality of PBM into a single binary.
  126. It's available anonymous ftp from sdsc.edu (132.249.20.22).
  127.  
  128.     Useful for viewing some image-formats is Jim Frost's xloadimage, a
  129. version of which is in the R4 directory contrib/clients/xloadimage; there are 
  130. later versions available, including contrib/xloadimage.3.03.tar.Z on export.  
  131. Graeme Gill's updates to an earlier version of xloadimage are also on export; 
  132. see xli.README and xli.tar.Z.uu; version 1.14 was released 2/93.
  133.  
  134.     xv (X Image Viewer), written by bradley@cis.upenn.edu (John Bradley), 
  135. can read and display pictures in Sun Raster, PGM, PBM, PPM, X11 bitmap, TIFF, 
  136. GIF and JPEG. It can manipulate on the images: adjust, color, intensity, 
  137. contrast, aspect ratio, crop). It can save images in all of the aforementioned 
  138. formats plus PostScript. It can grab a portion of the X display, manipulate on 
  139. it, and save it in one of the available formats. The program was updated 5/92; 
  140. see the file contrib/xv-2.21.tar.Z on export.lcs.mit.edu. Version 3.00 [5/93]
  141. is distributed as shareware.
  142.  
  143.     The Fuzzy Pixmap Manipulation, by Michael Mauldin <mlm@nl.cs.cmu.edu>.
  144. Conversion and manipulation package, similar to PBMPLUS.  Version 1.0 available
  145. via FTP as nl.cs.cmu.edu:/usr/mlm/ftp/fbm.tar.Z, uunet.uu.net:pub/fbm.tar.Z, 
  146. and ucsd.edu:graphics/fbm.tar.Z.
  147.  
  148.     The Img Software Set, by Paul Raveling <raveling@venera.isi.edu>, reads
  149. and writes its own image format, displays on an X11 screen, and does some image
  150. manipulations.  Version 1.3 is available via FTP on expo.lcs.mit.edu as
  151. contrib/img_1.3.tar.Z, along with large collection of color images.
  152.  
  153.     The Utah RLE Toolkit is a conversion and manipulation package similar 
  154. to PBMPLUS.  Available via FTP as cs.utah.edu:pub/urt-*, 
  155. weedeater.math.yale.edu:pub/urt-*, and freebie.engin.umich.edu:pub/urt-*.
  156.  
  157.     Xim, The X Image Manipulator, by Philip Thompson, does essential 
  158. interactive displaying, editing, filtering, and converting of images. There is 
  159. a version in the X11R4 contrib area; but a more recent version (using R4 and 
  160. Motif 1.1) is available from gis.mit.edu (18.80.1.118). Xim reads/writes gif, 
  161. xwd, xbm, tiff, rle, xim, (writes level 2 eps) and other formats and also has a
  162. library and command-line utilities for building your own applications.
  163.  
  164.     ImageMagick [2.3; 2/93] by cristy@dupont.com can be retrieved from 
  165. export's contrib area. It is a collection of utilities to transform and display
  166. images on any X server. The tool uses the MIFF format; filters to and from MIFF
  167. from other popular formats (PPM, TIFF, GIF, SUN Raster, etc) are included.
  168.  
  169.     xtiff is a tool for viewing a TIFF file in an X window.  It was written
  170. to handle as many different kinds of TIFF files as possible while remaining
  171. simple, portable and efficient.  xtiff illustrates some common problems
  172. with building pixmaps and using different visual classes.  It is distributed
  173. as part of Sam Leffler's libtiff package and it is also available on
  174. export.lcs.mit.edu, uunet.uu.net and comp.sources.x. [dbs@decwrl.dec.com,10/90]
  175. xtiff 2.0 was announced in 4/91; it includes Xlib and Xt versions.
  176.  
  177.     A version of Lee Iverson's (leei@McRCIM.McGill.EDU) image-viewing tool
  178. is available as contrib/vimage-0.9.3.tar.Z on export.lcs.mit.edu.  The package
  179. also includes an ImageViewPort widget and a FileDialog widget. [12/91;5/92]
  180.  
  181.     The Andrew User Interface System (version 5.2 and later) provides an
  182. image inset which can view many image formats.  Like all Andrew insets, an
  183. image can be incorporated in a a document or sent in email via the MIME
  184. standard. The following formats can be read:  Sunraster, GIF, Xbitmap,  TIFF,
  185. Xpixmap, JPEG, PBM, XWD.
  186.  
  187. [some material from Larry Carroll (larryc@poe.jpl.nasa.gov), 5/91]
  188.  
  189. ----------------------------------------------------------------------
  190. Subject:  28)  How can I change the titlebar of my xterm window?
  191.  
  192.     The solution involves sending an escape sequence to xterm which will
  193. cause it to update the property which the window manager relies upon for the
  194. string which appears in the window titlebar.
  195.     A solution is as easy as typing this in an xterm running a shell:
  196.         echo "ESC]2;TEXT^G"
  197. where ESC is the escape key, TEXT is the string you wish to have displayed,
  198. and ^G is a Control-G (the BEL character).
  199.  
  200.     Here is a more complicated csh alias which changes the titlebar to
  201. the current working directory when you change directories:
  202.         alias newcd 'cd \!*; echo -n ESC]2\;$cwd^G'
  203.  
  204.     The digit '2' in these strings indicates to xterm that it should 
  205. change only the title of the window; to change both the title and the name 
  206. used in the icon, use the digit '0' instead, and use '1' to change only the 
  207. icon name.
  208.  
  209.     Note: another way to do this, which prevents an incorrect display of
  210. the local directory if a modified `cd` is used in a subshell, is to wrap the
  211. escape sequences into the PS1 prompt itself.
  212.  
  213.     Note: on an IBM RS/6000 is may be necessary to begin the sequence with
  214. a ^V.
  215.  
  216. ----------------------------------------------------------------------
  217. Subject:  29)  Where can I find the xterm control sequences?
  218.  
  219. The best source of such information is in your R5 sources in the file 
  220. ctlseqs.ms; a PostScript version is in mit/hardcopy/clients/ctlseqs.PS.Z.
  221.  
  222. O'Reilly's Volume 3, the X User's Guide, includes an R5 version of the control 
  223. sequences; the standard volume will be available 3/93, and a Motif version of 
  224. the book is available now. The current (R4) guide includes an outdated version
  225. of the control sequences. [1/93]
  226.  
  227. Other good sources of information include the R4 version of that document
  228. and also the file in the R4 sources called mit/clients/xterm/ctlseq2.txt, a 
  229. compilation put together by Skip Montanaro (GE CR&D) listing the VT100 
  230. sequences. It dates from R3 but is fairly accurate.  A hardcopy version was 
  231. published in the December 1989 XNextEvent (the XUG newsletter).
  232.  
  233. In a pinch, a VT100 manual will do.
  234.  
  235. [last updated 10/91]
  236.  
  237. ----------------------------------------------------------------------
  238. Subject:  30)  How can I use characters above ASCII 127 in xterm ?
  239.  
  240.     In order to use special characters such as the o-umlaut, you need to 
  241. "stty pass8" but also to use a charcell ISO8859 font, such as 
  242.     XTerm*font:     -*-*-medium-r-normal-*-*-130-*-*-c-*-iso8859-1
  243.     XTerm*boldfont:    -*-*-bold-r-normal-*-*-130-*-*-c-*-iso8859-1
  244. [The family is intentionally unspecified in this example.]
  245.  
  246. In addition, you may want to set this in your shell:
  247.     setenv LC_CTYPE iso_8859_1
  248.  
  249.         For a given character above 127, you can determine the key to use with 
  250. the Alt modifier by finding the equivalent character below 127 (try using
  251. `man ascii`). For example, o-umlaut (v) is Alt-v and the section character (') 
  252. is Alt-'. 
  253.  
  254. [thanks to Greg Holmberg (greg%thirdi@uunet.uu.net) and Stephen Gildea 
  255. (gildea@expo.lcs.mit.edu); 6/92]
  256.  
  257. ----------------------------------------------------------------------
  258. Subject:  31)  Why are my xterm menus so small?
  259.  
  260.     You are probably setting the geometry small accidentally. If you give 
  261. a resource specification like this:
  262.         xterm*geometry: 80x24
  263. then you are asking for all widgets under xterm to have their geometry set to
  264. 80x24. For the main window, this is OK, as it uses characters for its size. 
  265. But its popup menus don't; they are in pixels and show up small. To set only
  266. the terminal widget to have the specified geometry, name it explicitly:
  267.         xterm*VT100.geometry: 80x24
  268.  
  269. ----------------------------------------------------------------------
  270. Subject:  32)  How can I print the current selection?
  271.  
  272.     You could paste it into an xterm after executing the lpr command. 
  273. However, a program by Richard Hesketh (rlh2@ukc.ac.uk) specifically for 
  274. manipulating the selection will help; e.g. 
  275.     % xselection PRIMARY | lpr
  276. finds the primary selection and prints it. This command can be placed in a 
  277. window-manager menu or in shell-scripts. xselection also permits the setting of
  278. the selection and other properties. A version is on export.
  279.     Also available is ria.ccs.uwo.ca:pub/xget_selection.tar.Z, which can be
  280. adapted to do this.
  281.  
  282. ----------------------------------------------------------------------
  283. Subject:  33)! How does Xt use environment variables in loading resources?
  284.  
  285.     You can use several environment variables to control how resources are 
  286. loaded for your Xt-based programs -- XFILESEARCHPATH, XUSERFILESEARCHPATH, and 
  287. XAPPLRESDIR.  These environment variables control where Xt looks for 
  288. application-defaults files as an application is initializing.  Xt loads at most
  289. one app-defaults file from the path defined in XFILESEARCHPATH and another from
  290. the path defined in XUSERFILESEARCHPATH.
  291.  
  292.     XAPPLRESDIR existed in R3 and before.  As of R4, the Xt developers
  293. added the more sophisticated *SEARCHPATH mechanism, but left XAPPLRESDIR in
  294. place to avoid breaking existing software.
  295.  
  296.     Set XFILESEARCHPATH if software is installed on your system in such a 
  297. way that app-defaults files appear in several different directory hierarchies.
  298. Suppose, for example, that you are running Sun's Open Windows, and you also 
  299. have some R4 X applications installed in /usr/lib/X11/app-defaults. You could 
  300. set a value like this for XFILESEARCHPATH, and it would cause Xt to look up 
  301. app-defaults files in both /usr/lib/X11 and /usr/openwin/lib (or wherever your
  302. OPENWINHOME is located):
  303.     setenv XFILESEARCHPATH /usr/lib/X11/%T/%N:$OPENWINHOME/lib/%T/%N
  304.  
  305. The value of this environment variable is a colon-separated list of pathnames.  The pathnames contain replacement characters as follows (see 
  306. XtResolvePathname()):
  307.  
  308.         %N      The value of the filename parameter, or the
  309.                 application's class name.
  310.         %T      The value of the file "type".  In this case, the
  311.                 literal string "app-defaults"
  312.         %C      customization resource (R5 only)
  313.         %S      Suffix.  None for app-defaults.
  314.         %L      Language, locale, and codeset (e.g. "ja_JP.EUC")
  315.         %l      Language part of %L  (e.g. "ja")
  316.         %t      The territory part of the display's language string
  317.         %c      The codeset part of the display's language string
  318.  
  319.     Let's take apart the example.  Suppose the application's class name is 
  320. "Myterm". Also, suppose Open Windows is installed in /usr/openwin. (Notice the 
  321. example omits locale-specific lookup.)
  322.     /usr/lib/X11/%T/%N        means /usr/lib/X11/app-defaults/Myterm
  323.     $OPENWINHOME/lib/%T/%N    means /usr/openwin/lib/app-defaults/Myterm
  324.  
  325.     As the application initializes, Xt tries to open both of the above 
  326. app-defaults files, in the order shown.  As soon as it finds one, it reads it 
  327. and uses it, and stops looking for others.  The effect of this path is to 
  328. search first in /usr/lib/X11, then in /usr/openwin.
  329.  
  330.     Let's consider another example. This time, let's set 
  331. XUSERFILESEARCHPATH so it looks for the file Myterm.ad in the current working 
  332. directory, then for Myterm in the directory ~/app-defaults.
  333.     setenv XUSERFILESEARCHPATH ./%N.ad:$HOME/app-defaults/%N
  334.  
  335.     The first path in the list expands to ./Myterm.ad.  The second expands 
  336. to $HOME/app-defaults/Myterm.  This is a convenient setting for debugging 
  337. because it follows the Imake convention of naming the app-defaults file 
  338. Myterm.ad in the application's source directory, so you can run the application
  339. from the directory in which you are working and still have the resources loaded
  340. properly.  NOTE: when looking for app-default files with XUSERFILESEARCHPATH,
  341. for some  bizarre reason, neither the type nor file suffix is defined so %T and
  342. %S are useless.
  343.  
  344.     With R5, there's another twist.  You may specify a customization 
  345. resource value.  For example, you might run the "myterm" application like this:
  346.     myterm -xrm "*customization: -color"
  347.  
  348.     If one of your pathname specifications had the value
  349. "/usr/lib/X11/%T/%N%C" then the expanded pathname would be
  350. "/usr/lib/X11/app-defaults/Myterm-color" because the %C substitution character 
  351. takes on the value of the customization resource.
  352.  
  353.     The default XFILESEARCHPATH, compiled into Xt, is:
  354.         /usr/lib/X11/%L/%T/%N%C:\  (R5)
  355.         /usr/lib/X11/%l/%T/%N%C:\  (R5)
  356.         /usr/lib/X11/%T/%N%C:\     (R5)
  357.         /usr/lib/X11/%L/%T/%N:\
  358.         /usr/lib/X11/%l/%T/%N:\
  359.         /usr/lib/X11/%T/%N
  360.  
  361.     (Note: some sites replace /usr/lib/X11 with a ProjectRoot in
  362. this batch of default settings.)
  363.  
  364.     The default XUSERFILESEARCHPATH, also compiled into Xt, is 
  365.         <root>/%L/%N%C:\  (R5)
  366.         <root>/%l/%N%C:\  (R5)
  367.         <root>/%N%C:\     (R5)
  368.         <root>/%L/%N:\
  369.         <root>/%l/%N:\
  370.         <root>/%N:
  371.  
  372.     <root> is either the value of XAPPLRESDIR or the user's home directory 
  373. if XAPPLRESDIR is not set.  If you set XUSERFILESEARCHPATH to some value other 
  374. than the default, Xt ignores XAPPLRESDIR altogether.
  375.  
  376.     Notice that the quick and dirty way of making your application find 
  377. your app-defaults file in your current working directory is to set XAPPLRESDIR 
  378. to ".", a single dot.  In R3, all this machinery worked differently; for R3 
  379. compatibilty, many people set their XAPPLRESDIR value to "./", a dot followed 
  380. by a slash.
  381.  
  382. [Thanks to Oliver Jones (oj@world.std.com); 2/93.]
  383.  
  384. ----------------------------------------------------------------------
  385. Subject:  34)  How to I have xdm put a picture behind the log-in window?
  386.  
  387. The answer lies in changing xdm's xrdb resource in the xdm-config file to run a
  388. program to change the background before loading the resources; for example, 
  389. your /usr/lib/X11/xdm/xdm-config file may add the line 
  390.     DisplayManager.0.authorize: false 
  391. to permit unrestricted access to the display before log-in (beware!) and also 
  392.     DisplayManager*xrdb:    /usr/lib/X11/xdm/new.xrdb
  393. where that file does something (for all connections) along the lines of:
  394.     #!/bin/sh
  395.     #comes in with arguments: -display :0 -load /usr/lib/X11/xdm/Xresources
  396.     /usr/bin/X11/xsetroot -display $2 -bitmap /usr/lib/X11/xdm/new.bitmap
  397.     /usr/bin/X11/xrdb $*
  398. Substitute xloadimage or xv for xsetroot, to taste.  Note that this is a 
  399. general hack that can be used to invoke a console window or any other client.
  400.  
  401. [Thanks to Jay Bourland (jayb@cauchy.stanford.edu), 9/91]
  402.  
  403. ----------------------------------------------------------------------
  404. Subject:  35)  Why isn't my PATH set when xdm runs my .xsession file?
  405.  
  406.     When xdm runs your .xsession it doesn't source your .cshrc or .login
  407. files. You can set the path explicitly as you normally could for any SH script;
  408. or you can place all environment-setting statements in a separate file and
  409. source it from both the .xsession file and your shell configuration file; or,
  410. if you set your PATH in your .cshrc file, the normal place, you can make your 
  411. .xsession have PATH set simply by making it a csh script, i.e. by starting
  412. your .xsession file off with "#!/bin/csh". 
  413.     If this doesn't work, also try starting off with:
  414.         #!/bin/sh
  415.         # Reset path:
  416.         PATH=`csh -c 'echo $PATH'` ; export PATH
  417.  
  418. ----------------------------------------------------------------------
  419. Subject:  36)  How do I keep my $DISPLAY when I rlogin to another machine?
  420.  
  421.     There are several ways to avoid having to do a "setenv DISPLAY ..."
  422. whenever you log in to another networked UNIX machine running X.
  423.     One solution is to use the clients/xrsh on the R5 contrib tape.  It 
  424. includes xrsh, a script to start an X application on remote machine, and
  425. xrlogin, a script to start a local xterm running rlogin to a remote machine.
  426. A more recent version is on export in xrsh-5.4.shar.
  427.     One solution is to use the xrlogin program from der Mouse
  428. (mouse@larry.mcrcim.mcgill.edu). You can ftp caveat-emptor versions from
  429. 132.206.1.1, in X/xrlogin.c and X/xrlogind.c. The program packages up $TERM and
  430. $DISPLAY into a single string, which is stuffed into $TERM.  rlogin then 
  431. propagates $TERM normally; your .cshrc on the remote machine should contain
  432.         eval `xrlogind`
  433. where xrlogind is a program that checks $TERM and if it is of the special 
  434. format it recognizes, unpacks it and spits out setenv and unsetenv commands to 
  435. recreate the environment variables. [11/90]
  436.  
  437.     In addition, if all you need to do is start a remote X process on 
  438. another host, and you find
  439.         rsh <HOST> -n /usr/bin/X11/xterm -display $DISPLAY 
  440. too simple (DISPLAY must have your real hostname), then this version of xrsh 
  441. can be used to start up remote X processes. The equivalent usage would be 
  442.         xrsh <HOST> xterm
  443.  
  444.   #! /bin/sh
  445.   # start an X11 process on another host
  446.   # Date: 8 Dec 88 06:29:34 GMT
  447.   # From: Chris Torek <chris@mimsy.umd.edu>
  448.   # rsh $host -n "setenv DISPLAY $DISPLAY; exec $@ </dev/null >&/dev/null"
  449.   #
  450.   # An improved version:
  451.   # rXcmd (suggested by John Robinson, jr@bbn.com)
  452.   #       (generalized for sh,ksh by Keith Boyer, keith@cis.ohio-state.edu)
  453.   #
  454.   # but they put the rcmd in ()'s which left zombies again.  This
  455.   # script combines the best of both.
  456.   
  457.   case $# in
  458.   [01])  echo "Usage: $0 host x-cmd [args...]";;
  459.   *)
  460.       case $SHELL in
  461.       *csh*)  host="$1"; shift
  462.           xhost "$host" > /dev/null
  463.           rsh "$host" -n \
  464.               "setenv TERM xterm; setenv DISPLAY `hostname`:0; \
  465.               exec $* </dev/null >& /dev/null" &
  466.           ;;
  467.       *sh)
  468.           host="$1"; shift
  469.           xhost "$host" > /dev/null
  470.           rsh "$host" -n \
  471.               "TERM=xterm export TERM; \
  472.               DISPLAY=`hostname`:0 export DISPLAY; \
  473.               LD_LIBRARY_PATH=/usr/X11/lib export LD_LIBRARY_PATH; \
  474.               PATH=\$PATH:/usr/X11/bin:/usr/bin/X11:/usr/local/bin; \
  475.             export PATH; \
  476.               exec $* < /dev/null > /dev/null 2>&1" &
  477.           ;;
  478.       esac
  479.       ;;
  480.   esac
  481.  
  482. ----------------------------------------------------------------------
  483. Subject:  37)! How can I design my own font?
  484.  
  485.     One way is to use the "bitmap" client or some other bitmap-editor (e.g.
  486. Sun's icon-editor tool, post-processed with pbmplus) to design the individual 
  487. characters and then to do some large amount of post-processing to concatenate 
  488. them into the BDF format. See Ollie Jones's article in the November 91 X 
  489. Journal for more information.
  490.     The R3 contrib/ area (in fonts/utils/ and in clients/xtroff) contained 
  491. a number of useful utilities, including some to convert between BDF font format
  492. and a simple character format which can be edited with any text editor.
  493.     An easier way is to use the "xfed" client to modify an existing font; a
  494. version is on the R4 or R5 X11R5 contrib tape in contrib/clients/xfed. Xfed is 
  495. available for anonymous ftp on ftp.Informatik.Uni-Dortmund.DE [129.217.64.63], 
  496. possibly as file /pub/windows/X/Diverse-X11-Sourcen/xfed.tar.Z. It can produce
  497. BDF-format fonts which can be compiled for a variety of X servers.
  498.     The xfedor client from Group Bull permits creation of bitmaps, cursors,
  499. XPM1 pixmaps, and fonts. Binaries for common machines are on avahi.inria.fr in
  500. /pub; in addition, the sources (an old Xlib implementation) have been placed 
  501. [5/91] in export:/contrib. 
  502.     If you are a MetaFont user you can use "mftobdf" from the SeeTeX
  503. distribution to convert PK, GF, and PXL fonts to BDF format; the distribution
  504. is on ftp.cs.colorado.edu and on export.lcs.mit.edu.
  505.     The GNU package fontutils-0.4.tar.Z on prep.ai.mit.edu includes xbfe,
  506. a font editor, and a number of utilities for massaging font formats.
  507.     The O'Reilly X Resource issue #2 contains an article on using these
  508. tools to modify a font.
  509.     Fonts can be resized with Hiroto Kagotani's bdfresize; a new version is
  510. in ftp.cs.titech.ac.jp:/X11/contrib.
  511.     bdffont in the Andrew User Interface System (versions 5.2.2 and higher)
  512. lets you create a font or edit an existing one.
  513.  
  514. ----------------------------------------------------------------------
  515. Subject:  38)  Why does adding a font to the server not work (sic)?
  516.  
  517.     After you have built the font using your system's font-compiler, 
  518. installed it in some directory, and run `mkfontdir` or your system's equivalent
  519. (e.g. bldfamily for OpenWindows) in that directory, be sure to use `xset +fp 
  520. $dir` to add that full path-name to the server's font-path, *or* if the 
  521. directory is already in the path, use `xset fp rehash` so that the new fonts in
  522. that directory are actually found; it is this last step that you're probably 
  523. leaving out. (You can also use `xset q` to make sure that that directory is in 
  524. the path.)
  525.     Sometimes your "xset +fp $dir" command fails with a BadValue error:
  526.         X Error of failed request:BadValue
  527.             (integer parameter out of range for operation)
  528.         Major opcode of failed request:  51 (X_SetFontPath)
  529.  
  530.     This means the X server cannot find or read your font directory, or
  531. that your directory does not look like a font directory to the server.  (The
  532. mention of an "integer parameter" in the message is spurious.)
  533.  
  534. -- Is the font directory you're specifying readable from the SERVER's file
  535.    system?  Remember, it's the server, not the client, which interprets your
  536.    font directory.  Trouble in this area is especially likely when you issue an
  537.    xset command with shell metacharacters in it (e.g. "xset +fp ~/myfonts") and
  538.    the server is an X terminal or managed by xdm.
  539.  
  540. -- Is the directory really a font directory?  If you're running an MIT server
  541.    (or most varieties of vendor servers) look in the directory for the file
  542.    "fonts.dir".  If you can't find that file, run mkfontdir(1).  (If you're
  543.    running OpenWindows, look for the file "Families.list".  If you can't find
  544.    it, run bldfamily(1).)
  545.  
  546. -- If you're in a site where some people run X11Rn servers and others run a
  547.    proprietary server with nonstandard font formats (OpenWindows, for
  548.    example), make sure the font directory is right for the server you're using.
  549.    Hint: if the directory contains .pcf and/or .snf files, it won't work for
  550.    Open Windows.  If the directory contains .ff and/or .fb files, it won't work
  551.    for X11Rn.
  552.  
  553. [thanks to der Mouse (mouse@larry.mcrcim.mcgill.edu) and to Oliver Jones 
  554. (oj@pictel.com); 7/92 ]
  555.  
  556. ----------------------------------------------------------------------
  557. Subject:  39)  How do I convert a ".snf" font back to ".bdf" font?
  558.  
  559.     A tool called "snftobdf 1.4" is part of the bdftools package, which is 
  560. available from export.lcs.mit.edu:contrib/bdftools.tar.Z and from 
  561. crl.nmsu.edu:pub/misc/bdftools.tar.Z.  [2/91]
  562.  
  563. ----------------------------------------------------------------------
  564. Subject:  40)  What is a general method of getting a font in usable format?
  565.  
  566.     der Mouse's getbdf is one solution; it connects to a server and 
  567. produces a .BDF file for any font the server is willing to let it.  It can be 
  568. used as an anything-to-BDF converter, but requires access to a server that can 
  569. understand the font file, thus is both more and less powerful than other tools 
  570. such as snftobdf. getbdf is on 132.206.1.1 in X/getbdf.c or available via mail 
  571. from mouse@larry.McRCIM.McGill.EDU. [5/91]
  572.     In addition, the R5 program "fstobdf" can produce bdf for any font that
  573. the R5 server has access to.
  574.  
  575. ----------------------------------------------------------------------
  576. Subject:  41)  How do I use DECwindows fonts on my non-DECwindows server?
  577.  
  578.     The DECwindows fonts typically don't exist on a non-DEC installation,
  579. but rewrite rules can be used to alias fonts used by DECwindows applications to
  580. standard MIT fonts of similar characteristics and size. Pick up the file 
  581. contrib/DECwindows_on_X11R4_font.aliases from export.lcs.mit.edu; this file is 
  582. for a standard MIT R4 server.  It can also serve as a starting point for 
  583. creating a similar aliases file for the Open Windows server or other servers 
  584. which do not use the MIT font scheme.
  585.  
  586. ----------------------------------------------------------------------
  587. Subject:  42)  How do I add ".bdf" fonts to my DECwindows server?
  588.  
  589.     The format of fonts preferred by DEC's X server is the ".pcf" format.
  590. You can produce this compiled format from the .bdf format by using DEC's dxfc
  591. font-compiler. Note that the DEC servers can also use raw .bdf fonts, with a
  592. performance hit.
  593.  
  594. ----------------------------------------------------------------------
  595. Subject:  43)  How can I set backgroundPixmap in a defaults file? (What is XPM?)
  596. I want to be able to do something like this:
  597.     xclock*backgroundPixmap:      /usr/include/X11/bitmaps/rootweave
  598.  
  599.     You can't do this. The backgroundPixmap resource is a pixmap of the 
  600. same depth as the screen, not a bitmap (which is a pixmap of depth 1). Because 
  601. of this, writing a generic String to Pixmap converter is impossible, since 
  602. there is no accepted convention for a file format for pixmaps. Therefore, 
  603. neither the X Toolkit or the Athena widget set define a String to Pixmap 
  604. converter, because there is no converter you cannot specify this value as a 
  605. resource.  The Athena widget set does define a String to Bitmap converter for 
  606. use in many of its widgets, however.
  607. [courtesy Chris D. Peterson (now kit@ics.com), 4/90]
  608.  
  609. However:
  610.     A specific converter which encapsulates much of the functionality of 
  611. the xloadimage package by Jim Frost was posted 12/90 by Sebastian Wangnick 
  612. (basti@unido.informatik.uni-dortmund.de); it permits loading of a number of 
  613. image formats as a pixmap.
  614.  
  615.     The leading general-purpose format for pixmaps is the XPM format used 
  616. by Groupe Bull in several of its programs, including the GWM window manager, by
  617. AT&T in its olpixmap editor, and by ICS in its interface builder. XPM 
  618. distribution, available on export as contrib/xpm.tar.Z, includes read/write 
  619. routines which can easily be adapted to converters by new widgets which want to
  620. allow specification of pixmap resources in the above manner.  See information
  621. on the xpm-talk mailing list above. XPM 3.0g was announced in 4/93 and is
  622. available from export.lcs.mit.edu and avahi.inria.fr; an older version is on 
  623. the R5 contrib tape. [A set of XPM icons collected by Anthony Thyssen 
  624. (anthony@kurango.cit.gu.edu.au) is on export in contrib/AIcons.]
  625.  
  626. ----------------------------------------------------------------------
  627. Subject:  44)  Why can't I override translations? Only the first item works.
  628.  
  629.     You probably have an extra space after the specification of the first 
  630. item, like this:
  631.     basic*text.translations:  #override \
  632.     Ctrl<Key>a:    beginning-of-line() \n\     
  633.     Ctrl<Key>e:    end-of-line()
  634.                           ^ extra space
  635. The newline after that space is ending the translation definition.
  636. [Thanks to Timothy J. Horton, 5/91]
  637.  
  638. ----------------------------------------------------------------------
  639. Subject:  45)! How can I have a clock show different timezones?
  640.  
  641.     One solution is xchron, in Volume 6 of comp.sources.x, which can show
  642. the time for timezones other than the local one. 
  643.     sunclock on export displays a world map with sun/dark areas and local 
  644. and UTC time.
  645.     The OpenWindows clock has a TimeZone property.
  646.     Modifications to the Xaw clock widget to support hour and minute 
  647. offsets    were posted by David Herron (david@twg.com).
  648.     A patch for the clock coming with the Xaw3D widgets introduces 
  649. resources hourOffset, minuteOffset, gmt; it can be found at
  650. ftp.wu-wien.ac.at:pub/src/X11/wafe/xaw3d.Clock.patch.
  651.  
  652.     Alternatively, you can probably set the timezone in the shell from
  653. which you invoke the xclock or oclock, or use a script similar to this:
  654.     #!/bin/sh
  655.     TZ=PST8PDT xclock -name "San_Luis_Obispo_CA" 2> /dev/null &
  656.     TZ=EST5EDT xclock -name "King_Of_Prussia_PA" 2> /dev/null &
  657.  
  658. ----------------------------------------------------------------------
  659. Subject:  46)  I have xmh, but it doesn't work. Where can I get MH?
  660.  
  661.     The xmh mail-reader requires the Rand MH mail/message handling system,
  662. which is not part of the UNIX software distribution for many machines. A list 
  663. of various ftp, uucp, e-mail and US-mail sites for both xmh and MH is given in 
  664. the monthly MH FAQ; one source is ics.uci.edu in the file pub/mh/mh-6.7.tar.Z.
  665. If you do not receive the comp.mail.mh newsgroup or the MH-users mailing list, 
  666. you can request a copy of the FAQ, which also includes a section on xmh, 
  667. by sending mail to mail-server@pit-manager.mit.edu containing the request
  668. "send usenet/news.answers/mh-faq".
  669.  
  670. ----------------------------------------------------------------------
  671. Subject:  47)  Why am I suddenly unable to connect to my Sun X server?
  672. After a seemingly random amount of time after the X server has been started, no
  673. other clients are able to connect to it.
  674.  
  675.     The default cron cleanup jobs supplied by Sun (for 4.0.3, at least)
  676. delete "old" (unreferenced) files from /tmp -- including /tmp/.X11-unix, which 
  677. contains the socket descriptor used by X. The solution is to add "! -type s" to
  678. the find exclusion in the cron job.
  679. [10/90]
  680.  
  681. ----------------------------------------------------------------------
  682. Subject:  48)  Why don't the R5 PEX demos work on my mono screen?
  683.  
  684. The R5 sample server implementation works only on color screens, sorry.
  685.  
  686. ----------------------------------------------------------------------
  687. Subject:  49)  How do I get my Sun Type-[45] keyboard fully supported by Xsun?
  688.  
  689. Many users wants the Num Lock key to light the Num Lock LED and have the 
  690. appropriate effect on the numeric keypad. The Xsun server as distributed by MIT
  691. doesn't do this but there are two different patches available.
  692.  
  693. The first patch is written by Jonathan Lemon and fixes the Num Lock related 
  694. problems. It is available from export.lcs.mit.edu in the file
  695. contrib/Xsun-R5.numlock_patch.Z .
  696.  
  697. The second is written by Martin Forssen and fixes the Num Lock and Compose keys
  698. and adds support for the different national keyboard layouts for Type-4 and 
  699. Type-5 keyboards. This patch is available from export.lcs.mit.edu in
  700. contrib/sunkbd1216-0314.tar.Z or via email from maf@dtek.chalmers.se.
  701.  
  702. [thanks to Martin Forssen (maf@dtek.chalmers.se or maf@math.chalmers.se), 8/92]
  703.  
  704. A set of patches by William Bailey (dbgwab@arco.com) was posted to newsgroups
  705. 11/92 to provide support for the Type-5 keyboard.
  706.  
  707. ----------------------------------------------------------------------
  708. Subject:  50)  How do I report bugs in X?
  709.  
  710.     Generally, report bugs you find to the organization that supplied you
  711. with the X Window System. If you received the R5 source distribution directly 
  712. from MIT, please read the file mit/bug-report for instructions. [Look in
  713. mit/doc/bugs/bug-report in R4.]
  714.  
  715. [Thanks to Stephen Gildea <gildea@expo.lcs.mit.edu>, 5/91; 12/91]
  716.  
  717. ----------------------------------------------------------------------
  718. Subject:  51)  Why do I get "Warning: Widget class version mismatch"?
  719.  
  720.     This error, which typically goes on to say, "widget 11004 vs. 
  721. intrinsics 11003" indicates that the header files you included when building 
  722. your program didn't match the header files that the Xt library you're linking 
  723. against was built with; check your -I include path and -L link-path to be sure.
  724.     However, the problem also occurs when linking against a version of the 
  725. X11R4 Xt library before patch 10; the version number was wrong. Some Sun OW
  726. systems, in particular, were shipped with the flawed version of the library, 
  727. and applications which link against the library typically give the warnings you
  728. have seen.
  729.  
  730. ----------------------------------------------------------------------
  731. Subject:  52)  Where can I find a dictionary server for xwebster?
  732.  
  733.     Webster's still owns the copyright to the on-line copies of Webster's
  734. Dictionary which are found at various (university) sites. After it became aware
  735. that these sites were then acting as servers for other sites running xwebster 
  736. and gnuemacs-webster, it asked that server sites close off external access.
  737.     [The NeXT machine apparently is also licensed to have the dictionary. A
  738. Webster daemon for NeXT machines is available from iuvax.cs.indiana.edu 
  739. (129.79.254.192) in "pub/webster/NeXT-2.0".]
  740.     Unless you want to get a legal on-line copy yourself or can find a site
  741. which can grant you access, you are probably out of luck. 
  742.  
  743.     However, if you are a legitimate site, you'll want to pick up the
  744. latest xwebster, as-is on export:contrib/xwebster.tar.Z [10/91]; the file 
  745. xwebster.README includes discussions of the availability, illegality, and 
  746. non-availability of dictionary servers. 
  747.     
  748. [courtesy steve@UMIACS.UMD.EDU (Steve Miller) and mayer@hplabs.hp.com (Niels 
  749. Mayer) 11/90]
  750.  
  751. ----------------------------------------------------------------------
  752. Subject:  53)  TOPIC: OBTAINING X AND RELATED SOFTWARE AND HARDWARE
  753. ----------------------------------------------------------------------
  754. Subject:  54)  Is X public-domain software?
  755.  
  756.     No. The X software is copyrighted by various institutions and is not 
  757. "public domain", which has a specific legal meaning. However, the X 
  758. distribution is available for free and can be redistributed without fee.
  759.     Contributed software, though, may be placed in the public domain by
  760. individual authors.
  761.  
  762. ----------------------------------------------------------------------
  763. Subject:  55)  How compatible are X11R3, R4, and R5? What changes are there?
  764.  
  765. The Release Notes for each MIT release of X11 specify the changes from the 
  766. previous release.  The X Consortium tries very hard to maintain compatibility 
  767. across releases.  In the few places where incompatible changes were necessary, 
  768. details are given in the Release Notes.  Each X11 distribution site on the 
  769. network also offers the Release Notes that go with the release they offer; the 
  770. file typically can be found at the top of the distribution tree.
  771.  
  772. [Stephen Gildea, 1/92]
  773.  
  774. The comp.windows.x.intrinsics FAQ-Xt lists Xt differences among these versions.
  775.  
  776. ----------------------------------------------------------------------
  777. Subject:  56)  Where can I get X11R5 (source and/or binaries)?
  778.  
  779. Information about MIT's distribution of the sources on 6250bpi and QIC-24 tape 
  780. and its distribution of hardcopy of the documents is available from 
  781. Software Center, Technology Licensing Office, Massachusetts Institute of 
  782. Technology, 28 Carleton Street, Room E32-300, Cambridge MA 02142-1324,
  783. phone: 617-258-8330.
  784.  
  785. You will need about 100Mb of disk space to hold all of Core and 140MB to hold
  786. the Contrib software donated by individuals and companies. 
  787.  
  788. PLEASE use a site that is close to you in the network.
  789.  
  790. Note that the RELEASE notes are generally available separately in the same
  791. directory; the notes list changes from previous versions of X and offer a
  792. guide to the distribution.
  793.  
  794.               North America anonymous FTP:
  795.  
  796. California    gatekeeper.dec.com        pub/X11/R5
  797.         16.1.0.2
  798. California    soda.berkeley.edu        pub/X11R5
  799.         128.32.131.179
  800. Indiana        mordred.cs.purdue.edu        pub/X11/R5
  801.         128.10.2.2
  802. Maryland    ftp.brl.mil            pub/X11R5
  803.         128.63.16.158
  804.         (good for MILNET sites)
  805. Massachusetts    crl.dec.com            pub/X11/R5
  806.         192.58.206.2
  807. Massachusetts    export.lcs.mit.edu        pub/R5
  808.         18.24.0.12
  809.         (crl.dec.com is better)
  810. Michigan    merit.edu            pub/X11R5
  811.         35.1.1.42
  812. Missouri    wuarchive.wustl.edu        packages/X11R5
  813.         128.252.135.4
  814. Montana        ftp.cs.montana.edu        pub/X.V11R5
  815.         192.31.215.202
  816. New Mexico    pprg.eece.unm.edu        pub/dist/X11R5
  817.         129.24.24.10
  818. New York    azure.acsu.buffalo.edu        pub/X11R5
  819.         128.205.7.6
  820. North Carolina    cs.duke.edu            dist/sources/X11R5
  821.         128.109.140.1
  822. Ohio        ftp.cis.ohio-state.edu        pub/X.V11R5
  823.         128.146.8.52
  824. Ontario        ftp.cs.utoronto.ca        pub/X11R5
  825.         128.100.1.105
  826. Washington DC    x11r5-a.uu.net            X/R5
  827.         192.48.96.12
  828. Washington DC    x11r5-b.uu.net            X/R5
  829.         137.39.1.12
  830.  
  831.            Europe/Middle East/Australia anonymous FTP:
  832.  
  833. Australia    munnari.oz.au            X.V11/R5
  834.         128.250.1.21
  835. Denmark        freja.diku.dk            pub/X11R5
  836.         129.142.96.1
  837. United Kingdom    src.doc.ic.ac.uk        graphics/X.V11R5
  838.         146.169.3.7
  839.         hpb.mcc.ac.uk            pub/X11r5
  840.         130.88.200.7
  841. Finland        nic.funet.fi            pub/X11/R5
  842.         128.214.6.100
  843. France        nuri.inria.fr            X/X11R5
  844.         128.93.1.26
  845. Germany        ftp.germany.eu.net        pub/X11/X11R5
  846.         192.76.144.129
  847. Israel        cs.huji.ac.il            pub/X11R5
  848.         132.65.6.5
  849. Italy        ghost.sm.dsi.unimi.it        pub/X11R5
  850.         149.132.2.1
  851. Netherlands    archive.eu.net            windows/X/R5
  852.         192.16.202.1
  853. Norway        ugle.unit.no            pub/X11R5
  854.         129.241.1.97
  855. Norway        nac.no                pub/X11R5
  856.         129.240.2.40
  857. Switzerland    nic.switch.ch            software/X11R5
  858.         130.59.1.40
  859.  
  860.              Japan anonymous FTP:
  861.  
  862. Kanagawa    sh.wide.ad.jp            X11R5
  863.         133.4.11.11
  864. Kwansai        ftp.ics.osaka-u.ac.jp        X11R5
  865.         133.1.12.30
  866. Kyushu        wnoc-fuk.wide.ad.jp        X11R5
  867.         133.4.14.3
  868. TISN        utsun.s.u-tokyo.ac.jp        X11R5
  869.         133.11.11.11
  870. Tokyo        kerr.iwanami.co.jp        X11R5
  871.         133.235.128.1
  872. Tokyo        scslwide.sony.co.jp        pub/X11R5
  873.         133.138.199.1
  874.  
  875.                 UUCP:
  876.  
  877. uunet        for UUNET customers        ~/X/R5
  878. decwrl        existing neighbors only        ~/pub/X11/R5
  879. osu-cis                        ~/X.V11R5
  880.         (not online until ~ 9 Sept)
  881. utai        existing neighbors only        ~/ftp/pub/X11R5
  882. hp4nl        Netherlands only        ~uucp/pub/windows/X/R5
  883.         
  884.  
  885.  
  886.                  NFS:
  887. Missouri    wuarchive.wustl.edu        /archive/packages/X11R5
  888.         128.252.135.4            mount point: /archive
  889.                             
  890.                  AFS:
  891. Pennsylvania    /afs/grand.central.org/pub/X11R5
  892.  
  893.              NIFTP (hhcp, cpf, fcp, ...):
  894. United Kingdom    uk.ac.ic.doc.src        <X.V11R5>
  895.         00000510200001
  896.         user "guest"
  897.  
  898.                   anon FTAM:
  899. United Kingdom    000005102000 (Janet)        X.V11R5
  900.         146.169.3.7 (Internet)
  901.         204334504108 (IXI)
  902.  
  903.                    ACSNet:
  904. Australia    munnari.oz (fetchfile)        X.V11/R5
  905.         Please fetch only one file
  906.         at a time, after checking
  907.         that a copy is not available
  908.         at a closer site.
  909.  
  910. [9/2/91; updated for contrib 10/91]
  911.  
  912. Anyone in Europe can get a copy of the MIT X.V11R5 distribution, including
  913. the core and contributed software and all official patches, free of charge.
  914. The only requirement is to agree to return the tapes, or equivalent new tapes.
  915. Only QIC and TK format cartridges can be provided.  Contact: Jamie Watson,
  916. Adasoft AG, Nesslerenweg 104, 3084 Wabern, Switzerland.
  917. Tel: +41 31 961.35.70 or +41 62 61.41.21; Fax: +41 62 61.41.30; jw@adasoft.ch.
  918.  
  919. UK sites can obtain X11 through the UKUUG Software Distribution Service, from 
  920. the Department of Computing, Imperial College, London, in several tape formats.
  921. You may also obtain the source via Janet (and therefore PSS) using Niftp (Host:
  922. uk.ac.ic.doc.src Name: guest Password: your_email_address).  Queries should be 
  923. directed to Lee McLoughlin, 071-589-5111#5037, or to info-server@doc.ic.ac.uk 
  924. or ukuug-soft@uk.ac.ic.doc (send a Subject line of "wanted". Also offered are 
  925. copies of comp.sources.x, the export.lcs.mit.edu contrib and doc areas and most
  926. other announced freely distributable packages. 
  927.  
  928. X11R5 and X11R4 source along with X11R5 contrib code, prebuilt X binaries for
  929. major platforms, and source code examples from O'Reilly's books is available on
  930. an ISO-9660-format CD-ROM from O'Reilly & Associates. [as of 3/92].
  931.  
  932. X11R5 source is available on ISO-9660-format CD-ROM for members of the Japan
  933. Unix Society from Hiroaki Obata, obata@jrd.dec.com.
  934.  
  935. X11R5 source along with GNU source, the comp.sources.x archives, and SPARC
  936. binaries is available on an ISO-9660-format CD-ROM from PDQ Software,
  937. 510-947-5996 (or Robert A. Bruce, rab@sprite.Berkeley.EDU).
  938.  
  939. X11R5 source is available from Automata Design Associates, +1 215-646-4894.
  940.  
  941. Various users' groups (e.g. SUG) offer X sources cheaply, typically on CD-ROM.
  942.  
  943. Source and binaries for the Andrew User Interface System 5.1 are available on
  944. CD-ROM.  The binaries are for four common systems and include XV11R5 binaries
  945. for three of them.  Information: info-andrew-requests@andrew.cmu.edu,
  946. 412-268-6710, fax 412-621-8081.  AUIS sources are also available via anonymous
  947. ftp from emsworth.andrew.cmu.edu (128.2.45.40) and in various formats from the
  948.         Andrew Consortium, 106 Smith Hall, Carnegie Mellon, 
  949.         5000 Forbes Ave., Pittsburgh PA 15213.
  950.  
  951. Binaries for X11R5, with shared libX11 and libXmu, for A/UX 2.0.1 are now 
  952. available from wuarchive.wustl.edu:/archive/systems/aux/X11R5.  Patches for 
  953. X11R5 compiled with gcc (but not shared libraries) are also available.
  954. [John L. Coolidge (coolidge@cs.uiuc.edu, 10/91)]
  955.  
  956. Binaries by Rich Kaul (kaul@ee.eng.ohio-state.edu) for the Sun386i running 
  957. SunOS 4.0.2 are available on dsinc.dsi.com (please only after-hours USA EST).
  958.  
  959. Binaries for the Sun386i are available from compaq.com (131.168.249.254) in
  960. pub/sun-386i/sources and from vernam.cs.uwm.edu (129.89.9.117).
  961.  
  962. A binary tree for the Next by Douglas Scott (doug@foxtrot.ccmrc.ucsb.edu) is on
  963. foxtrot.ccmrc.ucsb.edu; it is missing the server, though.
  964.  
  965. Binaries for the Sun386i are in vernam.cs.uwm.edu:/sun386i.
  966.  
  967. Binaries for the HP-PA are on hpcvaaz.cv.hp.com (15.255.72.15).
  968.  
  969. Source and binaries for HP-UX 8.*/9.0(S300/400/700/800) and Domain 10.4 (68K,
  970. DN 10K) are available through the Interworks Users Group; contact Carol Relph
  971. at 508-436-5046, fax 508-256-7169, or relph_c@apollo.hp.com.
  972.  
  973. Patches to X11R5 for Solaris 2.1 by Casper H.S. Dik (casper@fwi.uva.nl) et al
  974. are on export in contrib/{R5.SunOS5.patch.tar.Z,R5.SunOS5.patch.README}.
  975.  
  976. Patches to X11R5 for the Sun Type 5 keyboard and the keyboard NumLock are 
  977. available from William Bailey (dbgwab@arco.com).
  978.  
  979. X servers for color and monochrome NeXT machines is on foxtrot.ccmrc.ucsb.edu 
  980. in /pub/X11R5-MouseX.tar.Z. Source patches are expected to be on orst and 
  981. sonata as X11R5-source.patch.tar.Z.
  982.  
  983. Also:
  984.  
  985. Binaries are available from Unipalm (+44 954 211797, xtech@unipalm.co.uk), 
  986. probably for the Sun platforms. 
  987.  
  988. ----------------------------------------------------------------------
  989.  
  990. David B. Lewis                     faq%craft@uunet.uu.net
  991.  
  992.         "Just the FAQs, ma'am." -- Joe Friday 
  993. -- 
  994. David B. Lewis        Temporarily at but not speaking for Visual, Inc.
  995. day: dbl@visual.com    evening: david%craft@uunet.uu.net
  996.