Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Console Foundations Processes Processes

Terminal Screen is too little to show all the processes using top command

..even when it is maximised. It shows the first 30-40 processes running (there are more than 300 running) and the cursor is a the end of the screen, as it was frozen. I cannot move it, do anything. I can use question mark key though. I am in Mac terminal. Is there any way of showing the rest of the processes? The help "page" seems to not have any info about how to see the rest of the processes.

1 Answer

Alex Koumparos
seal-mask
.a{fill-rule:evenodd;}techdegree
Alex Koumparos
Python Development Techdegree Student 36,887 Points

The short answer is that you can't. The idea behind top is that it only shows the top n processes (where n is the number of available lines on your terminal screen), sorted by whichever metric is chosen.

Scrolling seems to be added in newer versions of top (e.g., if you are using Linux). But Apple tends to use very old versions of Unix utilities.

I haven't used it but apparently htop supports scrolling and is available for MacOS.