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 Pausing and Resuming

What is session?

It might be late for asking this but I am not sure that İ know the meaning of this term. Could anyone explain it?

2 Answers

The word "session" in this context (working in a text console) means a single connection to a remote computer. When the instructor refers to "your session", he is talking about what you are currently working on plus all the jobs you have paused in the background.

If you were to open up a new tab in the console, that would be a new session, like logging in again from a different computer. Your paused background programs from the first tab are not available in the new tab, because it is a different session.

The same word is used even if you are opening a console window on your own linux based computer. Even though it is not technically a remote computer, it functions in almost the exact same way.

When you close the console window (or tab), the session is terminated, and any programs you had open in the foreground or background are killed.

Thank you, Geoffrey.