Up to main menu         Back to X Menus         Next: UNIX

Xterms, colors, fonts

Unix is basically a command-line driven operating system as opposed to, say, MacOS, where you click on icons to make programs run. Thus it is natural that the most common window you use will be the X Terminal; a window into which you can type commands, view and edit text. The basic command to create a new X Terminal window is xterm, though you can probably get xterms using the root menu and button bar.

As described in the manual page for xterm, you can create an xterm with a given size, placement, font, colors, scrollbar and pointer, using command-line options. Here is a dissected example of an xterm command. The backslash, \, at the end of a line, is the usual way of breaking a single Unix command into several lines.


  pascal>  xterm -geometry 80x24+50+200 \
		-sb -sl 100 -bg yellow -fg purple \
        	-xrm "*pointerShape: circle" \
		-fn 10x20 &
The command-line options used above are;
Up to main menu         Back to X Menus         Next: UNIX
Bruce.Fast@Colorado.EDU