Linux – How to increase size of Terminal on Linux

linuxterminaltop

I have a 48core linux box. I would like to monitor per core cpu usage. However when I use
top and press 1 I get an error message "Sorry, terminal is not big enough"
Is there anyway I can increase the terminal window size. Max (putty) my laptop can do is ~46 lines. Increasing window size in putty or shell's ROWS variable hasn't helped.

Best Answer

You can reduce your font size in putty to fit more lines. Using putty, I can see 64-cores in top on a 1920x1200 laptop monitor. You can also look into another way of looking at individual processor statistics.

Is it absolutely essential to see each CPU core's statistics? You could try mpstat -P ALL (installed as part of the sysstat package).

Related Topic