UpFront

March 1st, 2008 by Various in

The UpFront Section

UpFront

Tech Tip

If you do much work on remote servers and have ever lost your connection at an inconvenient moment, using screen can help avoid losing work. Screen is, according to the man page, “a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells)”. Window manager may be a bit misleading, as it's not a window manager in the GUI sense, but rather it manages a number of full-screen console/shell sessions within a single console/shell.

Screen is simple to use; after you connect to the remote server, type:

$ screen -D -RR

This creates a new screen session if there isn't one or attaches to a previously created one if one exists. Now if your connection drops, you simply reconnect and enter the above command to reconnect and return to the exact point you were at when your connection was lost.

Screen has many keyboard commands for starting and controlling additional sessions; see the man page for more info.

Screen also is useful when you want to execute a long-running process and don't want to stay connected while it runs. Simply start the command, and then switch to a different session and type ~. to disconnect your SSH connection. When you return later, you can reconnect to the screen session and see the output.

You even may want to put the screen command in your .profile file so that it is started automatically when you log in. I like to have the option of not starting screen, so I have my .profile ask whether I want to start it:

read -p "Start screen? " ans
ans=$(echo $ans | tr A-Z a-z)

if [[ "$ans" = y || "$ans" = yes ]]; then
  screen -D -RR
fi

Tech Tip

You may have wondered how to determine certain X attributes using simple shell commands, such as the refresh rate and display resolution. You can use xrandr for that purpose:

$ xrandr --verbose

SZ:    Pixels        Physical       Refresh
*0   1024 x 768   ( 333mm x 241mm )  *85
1    800 x 600    ( 333mm x 241mm )   85
2    640 x 480    ( 333mm x 241mm )   85
Current rotation - normal
Current reflection - none
Rotations possible - normal
Reflections possible - none

You also can get a great deal of information with the xdpyinfo command, such as finding out what extensions are supported by the X server:

$ xdpyinfo | less

One very useful extension for video is the Xvideo extension, known as xv. The xvinfo command can give you information on this extension:

$ xvinfo

For 3-D, use the glxinfo command:

$ glxinfo

For more information about these commands see the respective man pages.

Tech Tip

The shell has a maximum length for command-line arguments. If you try to pass more than the maximum, you will receive an error:

Argument list too long

For example, to find which files contain a particular string, you normally would do the following:

grep -l STRING

But, if there are too many files, you may get the “Argument list too long” error. In that case, you could do:

ls | xargs grep -l STRING

__________________________

Featured Video

Shawn Powers has a message for hardware vendors. Listen up!

From the Magazine

July 2008, #171

Heard of the Web? If not, read on. This month we talk with Matt Mullenweg about WordPress. If you want to get your hands dirty in Web code, take a look at the rest of our feature articles on WebKit, Dojo and OpenLaszlo.

In the rest of the issue, you'll find articles on OpenID, RDFa and Quanta Plus. Kyle Rankin puts a new spin (as in "no" spin SSD) on hard drives and also tells you how to migrate to that new disk (spinning or not). Mick Bauer continues his series on customizing live CD's. And, James Gray gives us a feel for the state of Linux in the enterprise. After all that, you may need some TV time. If so, check out our review on how to make that digital TV tuner card work in your Linux box.

Read this issue