diff --git a/topics/linux/README.md b/topics/linux/README.md
index 75e95da39..6ea05731d 100644
--- a/topics/linux/README.md
+++ b/topics/linux/README.md
@@ -2278,6 +2278,12 @@ A good answer can be found [here](https://askubuntu.com/questions/9325/what-is-t
What is a TTY device?
+
+TTY is short for Teletypewriter and is a virtual device file that acts as a communication interface between the user's hardware (keyboard and screen) and system processes.
+
+Modern Usage:
+- Virtual Consoles (/dev/ttyN): The full-screen command line interfaces you access via keys like Ctrl+Alt+F3.
+- Pseudo-TTYs (/dev/pts/N): Emulated terminals used by windowed applications (like GNOME Terminal) or SSH sessions.