X makes the workstation a very powerful instrument. After you create the windows you want to use, you can move them around, shuffle them above or beneath one another, and make them any size you want. And you can remove individual windows from your screen at your pleasure. You manipulate windows using either the mouse or certain keyboard combinations or both.
When the mouse cursor is inside most windows, it looks like a capital I or an arrow, and when it is over the background screen (the area outside every window), it looks like a capital X. When the mouse cursor is inside a window, that window is called the active window. Whatever you type at the keyboard appears in the active window. When the mouse cursor is over the background screen (also called the root window), typing at the keyboard has no effect.
There are three actions you can perform with the mouse: pointing, clicking, and dragging. Pointing is simply moving the mouse to put the mouse cursor in the right place. Clicking is quickly pressing and immediately releasing a mouse button. Dragging is holding down a mouse button, moving the mouse, and then releasing the mouse button.
To create a new window, just type:
xterm &
Unix returns:
[1] 33656
Don't forget to type the & after xterm. Using the & causes the xterm program to run in parallel with the first window as a concurrent process. If you don't type the &, you won't be able to work in your original window, since you will be running xterm from it. The [1] means that this is your first background process and the 33656 is its Process Identification number, or PID.
After you type xterm &, the mouse cursor will change into a bracket with a `rubber band' window next to it. Also, in the center of the screen, a small box will appear that contains the dimensions of the window and its coordinate location on the screen. Now move the bracket (by moving the mouse) to the location on the screen where you want the upper left-hand corner of the window to be. Then click the left mouse button or press Return/Enter and a window that is 80 columns wide and 24 lines high will appear on your screen.
After you have created a window, wait a few seconds for the prompt to appear, and you'll have another window to work in.
Another way to open a new window is through the menu.
It is a good idea to clear all the windows that you have created before you logout, though not absolutely necessary. You should logout by pressing the LOGOUT button in the upper right corner.
Xterm windows have many features that you can customize (i.e. size, position, and font type of your windows). Type man xterm at the prompt.