xterm -geometry 80x24 &will open an xterm window. That window will include a shell for you to issue UNIX commands.
The ampersand (&) is recommended so you can still use the parent window to issue commands.
If an error message similar to
Could not open display.was displayed, your DISPLAY environment variable is not set. Issue
setenv DISPLAY localhost:0 (C shell)where localhost is the name of the system you're using. That command will tell the application (xterm) which system to use to display.
or
DISPLAY=localhost:0; export DISPLAY
XTermThen, from the command line, simply issuegeometry: 80x24
xterm &
xterm -g black -gb white &will open a white xterm with black characters.
To create the same effect, the lines
XTermcould be added to the .Xdefaults file, so that every xterm command issued will contain the same attributes.foreground: white
XTermbackground: black
xlsfonts | morewill list fonts available to you during this session.
xclock -geometry 100x100+0-0 &or the line
Xclockcould be added to the .Xdefaults file.geometry: 100x100+0-0