when I run ps -aux command on my linux server, to which I connected using putty, few processes are too long to fit in my current window width. Is there an alternative?
— Update —
I am sorry for downgrading,I thought others won’t find the answer useful too, so I downgraded.
Here is the info you asked for.
hadoop-user@hadoop-desk:~$ echo $TERM
xterm
hadoop-user@hadoop-desk:~$ stty -a
speed 38400 baud; rows 47; columns 158; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff -iuclc -ixany -imaxbel -iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke
hadoop-user@hadoop-desk:~$ echo $COLUMNS
158
It is likely that you’re using a pager such as
lessormostsince the output ofps auxis longer than a screenful. If so, the following options will cause (or force) long lines to wrap instead of being truncated.If you use either of the following commands, lines won’t be wrapped but you can use your arrow keys or other movement keys to scroll left and right.
Lines are always wrapped for
moreandpg.When
ps auxis used in a pipe, thewoption is unnecessary sincepsonly uses screen width when output is to the terminal.