LogoLogo
Terminal
  • Attic Lab
  • Getting Started
  • Crest Gold
  • Crest Silver
  • Videos on Computation
  • PI PICO (CIRCUITPYTHON)
    • Getting Started
    • Pin Out Diagram
    • Breadboards
    • 1. Led Blink
    • 2. RGB
    • 3. OLED
    • 4. Sensors
    • 5. Wifi
    • 6. Servos
  • Arduino
    • Getting Started
    • Pin Out Diagrams
      • Mega2560 R3
    • Programming
      • Arduino C - Cheat Sheet
    • Buttons
      • Momentary Switches
    • Display
      • LEDs
      • 7 Segment Displays
      • LCD Displays (GPIO)
      • LCD Displays (SPI)
      • OLEDs
    • Communication
      • Antenna Theory
      • Lora
      • Wifi
        • Boards
    • Project Ideas
    • Motion
      • DC Motors
      • Servo Motors
      • Stepper Motors
  • Microsoft Office
    • Word
    • Powerpoint
    • Excel
  • The Terminal
    • Basics
    • Cheat Sheet
    • Games
      • Level 1 - Bashcrawl
      • Level 2 - Bandit
  • TinkerCad
    • Gallery
    • Getting Started
    • Basic Operations
    • Basic Skills
    • Projects
      • Locking Container
  • Python
    • Hello World
    • Turtle Graphics
      • Strings in Turtle Graphics
      • Cheat Sheet
    • Variables
    • Loops
    • If Statements
    • Functions
    • Games
      • Pong
  • Raspberry Pi
    • Setup
      • Changing The Hostname
      • Headless Setup
      • Kiosk Mode
    • Remote Connections
    • Displays
      • Memory
        • External HD
      • HyperPixel 4.0
  • Ultimaker 3D Printing
    • The Thingiverse
    • Preparing the File
    • Printing
    • Calibration Prints
    • Print Set
  • Fusion 360
    • Getting Started
    • Design Tutorials
      • Tweezers
      • Mars Rover Wheel
    • Surface Modeling
  • Electronics
    • References
    • Antenna Theory
    • LoRa
  • PCB Milling
    • FlatCam
    • Candle
    • PCB Milling
  • Projects
  • Projects
    • Star Map Necklace
    • Ideas Respository
  • Latex
    • What is LaTeX?
    • Getting Started
    • Structure
    • Page Size & Margins
    • Styling
    • Images
    • Lists
    • Tables
    • Mathematics
      • Superscript and Subscripts
      • List of Symbols
      • Fractions and Binomials
      • Integrals, Sums & Limits
    • Colors
  • Web Development
    • The Internet
    • Intro to HTML
    • Basic Elements
    • Basic Styling
Powered by GitBook
On this page
  • SSH (Secure Shell)
  • VNC (Virtual Network Computing)

Was this helpful?

  1. Raspberry Pi

Remote Connections

After initial setup, you can run your RP in 'headless' mode, meaning that the RP is not connected to a monitor.

PreviousKiosk ModeNextDisplays

Last updated 5 years ago

Was this helpful?

SSH (Secure Shell)

This is a command line utility that allows us to interact with the RP's terminal. To connect to the RP we need to know its network or IP address.

Every computer connected to a network is assigned a unique address of the form xxx.xxx.xxx.xxx knows as its IP (Internet Protocol) address.

Hover over the wifi icon to reveal the IP address (this will change every time the RP connects)

We can also access it from the terminal:

by typing ifconfig and looking at the address under wlan0

In OSX open the terminal application and connect using the username pi with the code below, replacing the ip address with the RP's

ssh pi@10.0.0.106

type yes when prompted to continue connecting

Once connected, we can look around the RP's file system using the ls (look-see) command

We can find out the path of our current location by using the pwd command where we should see that we are in the home directory of the user called pi:

See the terminal section for more information

VNC (Virtual Network Computing)

VNC allows you to remotely view the RP's desktop on your own machine. There are lots of VNC software packages out there. We will use RealVNC - download and install it from here:

Open VNC Viewer and create a New Connection

Enter the RPs IP address in the VNC Server input box and give the connection a name:

This will only work if your computer and the RP are on the same network

Click OK and enter the username pi password atticlab

Click ok and the RP desktop should load

Terminal Icon
Download VNC Viewer | VNC® Connect
Logo