Difference between revisions of "Pi Setup Dec 2018 - Stretch"
Jump to navigation
Jump to search
Russ hensel (talk | contribs) |
Russ hensel (talk | contribs) |
||
Line 33: | Line 33: | ||
== Static Ip Address == | == Static Ip Address == | ||
+ | |||
+ | === fixed ip address old, still work?? === | ||
+ | |||
+ | *[https://www.modmypi.com/blog/how-to-give-your-raspberry-pi-a-static-ip-address-update] | ||
+ | <pre> | ||
+ | sudo leafpad /etc/dhcpcd.conf | ||
+ | </pre> | ||
+ | |||
+ | Scroll all the way to the bottom of the file and add one, or both of the following snippets. | ||
+ | Depending on whether you want to set a static IP address for a | ||
+ | wired connection or a wireless connection eth0 = wired, wlan0 = wireless. | ||
+ | You’ll need to edit the numbers in the snippet so they match your network configuration. | ||
+ | |||
+ | *interface = This defines which network interface you are setting the configuration for. | ||
+ | *static ip_address = This is the IP address that you want to set your device to. (Make sure you leave the /24 at the end) | ||
+ | *static routers = This is the IP address of your gateway (probably the IP address or your router) | ||
+ | *static domain_name_servers = This is the IP address of your DNS (probably the IP address of your router). You can add multiple IP addresses here separated with a single space. | ||
+ | |||
+ | * my next Rasberry Pi 178/179 | ||
+ | |||
+ | <pre> | ||
+ | |||
+ | interface eth0 | ||
+ | |||
+ | static ip_address=192.168.0.176/24 | ||
+ | static routers=192.168.0.1 | ||
+ | static domain_name_servers=192.168.0.1 | ||
+ | |||
+ | interface wlan0 | ||
+ | |||
+ | static ip_address=192.168.0.200/24 | ||
+ | static routers=192.168.0.1 | ||
+ | static domain_name_servers=192.168.0.1 | ||
+ | |||
+ | </pre> | ||
== WiFi On == | == WiFi On == |
Revision as of 05:45, 2 December 2017
Decided time to switch to new os and Python 3, this is more or less a log
Contents
Download ....
- Raspbian - Wikipedia Some info on versions, I took the latest from: Download Raspbian for Raspberry Pi I got RASPBIAN STRETCH WITH DESKTOP
Use this for install directions
said use etcher so that is what I plan to do.
Setup
next look at:
- look at preferences from menu and enable vnc
- in preferences set the localization to yours
remote
- vnc
Default login. Username: pi. Password: raspberry. So, type pi, enter, raspberry, enter.
Static Ip Address
fixed ip address old, still work??
sudo leafpad /etc/dhcpcd.conf
Scroll all the way to the bottom of the file and add one, or both of the following snippets. Depending on whether you want to set a static IP address for a wired connection or a wireless connection eth0 = wired, wlan0 = wireless. You’ll need to edit the numbers in the snippet so they match your network configuration.
- interface = This defines which network interface you are setting the configuration for.
- static ip_address = This is the IP address that you want to set your device to. (Make sure you leave the /24 at the end)
- static routers = This is the IP address of your gateway (probably the IP address or your router)
- static domain_name_servers = This is the IP address of your DNS (probably the IP address of your router). You can add multiple IP addresses here separated with a single space.
- my next Rasberry Pi 178/179
interface eth0 static ip_address=192.168.0.176/24 static routers=192.168.0.1 static domain_name_servers=192.168.0.1 interface wlan0 static ip_address=192.168.0.200/24 static routers=192.168.0.1 static domain_name_servers=192.168.0.1