
When you work over serial line on an embedded device usually the terminal size it set to 80x25.
There's an easy way, however, to setup your real terminal size, just add the following line to your profile script (~/.profile):
resize > /tmp/resize
. /tmp/resize
. /tmp/resize
# resize
COLUMNS=159;LINES=52;export COLUMNS LINES;
COLUMNS=159;LINES=52;export COLUMNS LINES;
