- Raspberry Pi for Secret Agents(Third Edition)
- Matthew Poole
- 335字
- 2021-07-14 11:09:56
Setting up your Pi
When you boot into the shell and you have the Ethernet connected, hopefully, the Pi will have connected to your home network and will have acquired an IP address from your router. If this is the case, then you should see the IP address that has been issued just before the login prompt:

As you can see from my screenshot, it's given me the IP address 192.168.0.118
. This is good, because I can now access the Pi remotely using a secure shell (SSH) client to connect to it from the comfort of my laptop. This is particularly useful when my Pi is in the study and I want to sit on my sofa in front of the TV but still work on it, which I often do when I can't be bothered to go to my study.
To do this on Windows, download PuTTY—a utility that allows you to connect to shell terminals remotely over the network (see below if you're on Linux). You can download it from http://www.putty.org.
Install and launch PuTTY and you're ready to connect to your Pi remotely from the comfort of your sofa:

Type the IP address of the Raspberry Pi into the Host Name box and click Open, and you'll be connected to your Pi in a remote terminal window. Once you've logged in, you can now do pretty much everything on you Pi as if you were sat in front of it:

We'll assume from now on that most of the work we do will be through a remote shell session, unless otherwise highlighted.
If you want to use the command line to launch the Raspberry Pi remote shell, for example, from another Linux system, you use the following command from your terminal window (assuming your Pi has the IP address 192.168.0.120
in this case):
$ ssh pi@192.168.0.120
You'll then be prompted for the Pi's password and taken into a shell session:

Pi shell session launched from a Debian desktop terminal window
- 極簡算法史:從數學到機器的故事
- JavaScript從入門到精通(微視頻精編版)
- 零基礎搭建量化投資系統:以Python為工具
- 垃圾回收的算法與實現
- HoloLens Beginner's Guide
- Visual Basic程序設計教程
- Three.js開發指南:基于WebGL和HTML5在網頁上渲染3D圖形和動畫(原書第3版)
- Mastering Rust
- Java 9模塊化開發:核心原則與實踐
- Getting Started with Greenplum for Big Data Analytics
- Learning FuelPHP for Effective PHP Development
- C語言程序設計
- Mastering Linux Security and Hardening
- Solr Cookbook(Third Edition)
- 零基礎C#學習筆記