User Tools

Site Tools


chip:firststeps

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
chip:firststeps [2016/08/07 21:04] – [Update] rlunarochip:firststeps [2018/03/31 09:53] (current) – removed rlunaro
Line 1: Line 1:
-====== First Steps with Next Thing CHIP ====== 
- 
-I've installed the commandline only configuration, basically because I am thinking only in do IOT things with this stuff.  
- 
-====== Login and change default password ====== 
- 
-Default username and password: 
- 
-<code> 
-username: chip 
-password: chip 
-</code> 
- 
-The first thing I did is change the default password for the ''chip'' user and the ''root'' user.  
- 
-<code> 
-$ passwd chip 
-$ sudo su  
-$ passwd  
-</code> 
- 
-====== Connect to wifi ====== 
- 
-I want to make an static, permanent wifi connection. To do so, I've copied the configuration of my raspberry pi, but with a new IP.  
- 
-I've started by editing a new wlan1 file:  
- 
-<code> 
-$ sudo vi /etc/network/interfaces.d/wlan1 
-</code> 
- 
-And added the following configuration: 
- 
-<code> 
-# 
-# Wifi configuration 
-# 
- 
-auto wlan1 
-allow-hotplug wlan1 
-iface wlan1 inet static 
-        address 192.168.0.XXXX 
-        network 192.168.0.XXXX 
-        netmask 255.255.255.0 
-        gateway 192.168.0.XXXX 
-        wpa-ssid  "YOUR-SSID-HERE" 
-        wpa-psk   "YOUR-PASSWORD-HERE" 
-        dns-domain  YOUR-DNS-DOMAIN-HERE 
-        dns-nameservers 8.8.8.8 8.8.4.4 
- 
-</code> 
- 
- 
-I've selected the dns nameservers of google, but you can configure whatever you want. 
- 
-And you must create a ''/etc/resolv.conf'' file from scratch:  
- 
-<code> 
-# vim /etc/resolv.conf 
-domain station 
-search station YOUR-DNS-DOMAIN-HERE 
-nameserver 8.8.8.8 
-nameserver 8.8.4.4 
- 
- 
-</code> 
- 
- 
-====== Update ====== 
- 
-<code> 
-# apt-get update 
-# apt-get upgrade 
-</code> 
- 
-====== Reconfigure locale information to match your preferences ======  
- 
-<code> 
-# dpkg-reconfigure locales  
-</code> 
- 
-Taken from [[https://wiki.debian.org/ChangeLanguage]]. 
- 
- 
- 
  
chip/firststeps.1470603840.txt.gz · Last modified: 2022/12/02 21:02 (external edit)