Labs ICT
Pro Login

Get Started

Alright, you're convinced Unix is worth learning. Now how do you actually get to a terminal? There are a few paths depending on what machine you're sitting at. Pick the one that fits.

On macOS

You're in luck. macOS is built on Unix, so you already have everything you need. Open Applications → Utilities → Terminal. That's it. You're looking at a real Unix shell. Type echo "hello" and hit Enter. Welcome home.

On Linux

If you're running Linux, you already know — you're a Unix person. Open your terminal emulator. It might be called Terminal, Konsole, GNOME Terminal, or something similar. Press Ctrl+Alt+T on most desktop environments to launch it fast.

On Windows with WSL

Windows doesn't come with Unix, but Microsoft made it easy to add. Install WSL (Windows Subsystem for Linux). Open PowerShell as admin and run:


$ wsl --install
    

Reboot, and you'll have a real Linux terminal running inside Windows. You can launch it from the Start menu — it'll be called "Ubuntu" or whatever distro you chose.

Try it Yourself →

Connecting to a remote server

A lot of Unix work happens on remote servers. You connect using SSH (Secure Shell). The basic command looks like this:


$ ssh username@server-address
    

You'll be prompted for a password (or you can set up SSH keys for a smoother experience). Once you're in, you're running commands on that machine as if you were sitting in front of it.

Online sandboxes

Don't want to install anything? Use an online terminal like this site's try-it playground. Every lesson here has a "Try it Yourself" button that opens a live terminal in your browser. No setup, no risk — just type and learn.