
- PLEX MEDIA SERVER RASPBERRY PI 3 HARD DRIVE INSTALL
- PLEX MEDIA SERVER RASPBERRY PI 3 HARD DRIVE SOFTWARE
- PLEX MEDIA SERVER RASPBERRY PI 3 HARD DRIVE PASSWORD
And the rest of the instructions are done from your regular computer by SSH’ing into it. If you connect successfully, your terminal’s prompt will change to Now you can remove the monitor, keyboard and mouse from the pi as you no longer need them. You will need to enter your pi’s password, which should be raspberry unless you changed it. The first time you connect, it will ask you if you trust this fingerprint. Open a terminal and enter… ssh you need to enter the static IP address that we set in the previous step. On a Linux computer, it’s very straightforward.

PLEX MEDIA SERVER RASPBERRY PI 3 HARD DRIVE INSTALL
I used a Linux machine to connect to my pi, but for Windows users, you will need to install an additional tool - Putty, in order to SSH into another computer. Now we will connect to the pi remotely using our eveyday laptops or computers.

Note: In older versions of Raspbian Jessie, the SSH option is under Advanced. This will open Raspbian’s configuration options. In the recent version of Raspbian, SSH is disabled by default. Ideally, we connect to it remotely through our regular computers. It’s not always convenient to connect the pi to a monitor and the rest of the peripherals to use it. Now sudo reboot the pi and make sure the IP address doesn’t change after it restarts. Note: The new Raspbian Jessie requires using the nf file to fix the IP address. Below is an example profile: interface wlan0 static ip_address=10.1.1.31/24 static routers=10.1.1.1 static domain_name_servers=10.1.1.1 Make sure that the IP address has /24 at the end of it. Scroll all the way to the bottom of the file and add the following… interface wlan0 static ip_address=/24 static routers= static domain_name_servers= Open the file for editing… sudo nano /etc/nf
PLEX MEDIA SERVER RASPBERRY PI 3 HARD DRIVE PASSWORD
Now we need to remove the plain text password that also gets copied into the config file. > /etc/wpa_supplicant/wpa_nf will add the network profile to your configuration file.Ģ. Wpa_passphrase "MyWiFiESSID" "MyWiFiPassword" will create a network profile with your password replaced by a token so that it is not saved as plain text. Wpa_passphrase "MyWiFiESSID" "MyWiFiPassword" > /etc/wpa_supplicant/wpa_nf

Other encryption types are out of scope for this tutorial. Check the encryption of your network it should be WPA2. Note down the ESSID and make sure you have your WiFi password handy.ģ. We only need the ESSID and Encryption type.Ģ. Note: This is a modified version of sudo iwlist wlan0 scan which has a lot of additional information. Sudo iwlist wlan0 scanning | egrep 'Cell |Encryption|ESSID'

This will be very similar to the name of your WiFi. Note: If you are directly connecting the pi via an ethernet cable, you can skip this section and go straight to fixing your IP address Find your networkįirst, we need to find the details (ESSID and Encryption) of your WiFi network.
PLEX MEDIA SERVER RASPBERRY PI 3 HARD DRIVE SOFTWARE
And we will need the internet to download all the software and get Plex running on your home network. The first thing we need to do is connect the pi to the internet so you can SSH into it from your everyday computer without the need of connecting the pi to a monitor, keyboard and mouse.
