Difficulty: Easy
Correct Answer: Alt+Function Key (for example, Alt+F1 through Alt+F6)
Explanation:
Introduction / Context:
Linux systems provide multiple text-mode virtual consoles (tty1, tty2, …) accessible directly from the keyboard. Administrators often switch consoles for troubleshooting or to access a different login without disturbing a current session.
Given Data / Assumptions:
Concept / Approach:
By default, switching between VT consoles uses the Alt key combined with a function key: Alt+F1 for tty1, Alt+F2 for tty2, and so forth. From within a graphical session, distributions often map Ctrl+Alt+F1..F6 to switch between VTs, but at the raw console, Alt+Fn is the standard.
Step-by-Step Solution:
Verification / Alternative check:
Check the active tty by running tty after switching. Review systemd’s getty units (e.g., systemctl status getty@tty2.service ) to confirm TTY availability.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Alt+Function Key (for example, Alt+F1 through Alt+F6).
Discussion & Comments