added secure notes

This commit is contained in:
Martin Donnelly 2016-08-10 11:27:13 +01:00
parent 1bff5cac7a
commit a4c7468746
2 changed files with 67 additions and 0 deletions

41
notes/pi Normal file
View File

@ -0,0 +1,41 @@
# Pi Notes #
### Setting up Wifi ###
Open the wpa-supplicant configuration file in nano:
```
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
```
Go to the bottom of the file and add the following:
```
network={
ssid="The_ESSID_from_earlier"
psk="Your_wifi_password"
}
```
In the case of the example network, we would enter:
```
network={
ssid="testing"
psk="testingPassword"
}
```
Now save the file by pressing Ctrl+X then Y, then finally press Enter.
At this point, wpa-supplicant will normally notice a change has occurred within a few seconds, and it will try and connect to the network. If it does not, either manually restart the interface with sudo ifdown wlan0 and sudo ifup wlan0, or reboot your Raspberry Pi with sudo reboot.
You can verify if it has successfully connected using ifconfig wlan0. If the inet addr field has an address beside it, the Pi has connected to the network. If not, check your password and ESSID are correct.
## Swapfile ##
```
sudo nano /etc/fstab
/swapfile1 none swap sw 0 0
```

26
notes/secure_codes.txt Normal file
View File

@ -0,0 +1,26 @@
-----BEGIN INFOENCRYPT.COM MESSAGE-----
Encryption-Info: AES-128,CBC,PKCS5 Padding
Key-Info: MD5,PBKDF2 HmacSHA1
Decrypt-URL: https://www.infoencrypt.com
Er/UT4mH0LlCLUdnhS82QMekya6OFE1k28FmwQD+rUfwGxZpO6cd1DZvmcMssXJzFpyzVUZEuKwt
H8i8TC9HoiNwM2EN7pFbNT9JKi6IuBtbKVJrc4cj+r+xMtN4cuLOQR0rVw6F3ONfQ06ahtVJdvcV
VP5feCLIPbweow+zAXOAM7wgmjskTw+2gNszkFT4G8KrryEjo3yeUk5hAKQlfz+lilCw7oOhRT/u
k8+42VrxBquzlVV0bn06nCqagBhc5P3RawHjBv9+HGVupUsFgWBx12qoqPHUDUmzTblSAzYKdRQn
HVH6lEqmuuXCR7xC0hDl8hAYAtRmzsWy7QOymAL8XVPe59oZbl03U3C/c8Zo4oeXM+thmCTbBytF
FAGmsM5sFTKe11yAyUNwBSgA6aH6iTvCBn5NSJlURkIMBIpIOKV+TqIZXpq6eLx16s+35srSqNK0
nZd3CYhr9KzYlCBC2I/C102hKZT89BkNUaDP/zNrA0Ok11anmQYP7mv5f5S2BrJgSRPoYWFW/Yf4
LQiHuLmokh+lkH25MKf5ou6goYDOEJ8z1rbhYuT3m4LBQ0t2kFUg1R+9TRGswNvp0H4xQSA7v4rW
Ky41CwQ/AuTk6dNNUX+gfMlZoe6nNaokYeLSG35YZFU1DhBw8r829EBOGchyXk6WifirF3ItoKXD
gIrnMaWaynevo0Rl36MeYHSheVyeryS/3KTbhN9O2GB2I2OTN5y2ijYbXAgA6znekENNz8g2O1ci
Ncf6heE35b10ndIagl2bv6x71Na2SaPSaBqP68eEh97c4jRtQt0xhcLZkQUo50Bzf+hWGpB5zoIz
RBh8ZWApqj7mg9lRgmJJseLX/DjoZWYriWWcISvqF4ap8Vh55XTrrnu7WJmXMfVWpOiFFwiODs8r
Iwhp18POvkph0Zfbuz0/v7hBv4GK92ymtx1XXirQflCDgBpekbdS6GwASYGcTctDDVtRUVFjcALi
4Stkc+GkTtaprBu/b6gG2mlI3WJAcy0MPElesG1ZWPAk9yoX4WfdRWP0JXr2VuDnzHasrEXaivIC
8HzuPVpCHBB+YM+sIpashM7Tp0I8Wb1PCVhAMPT2PmP7NsCDwvDT38+RzRotDwefiPMY+nwndEB6
vmr+VdzkY2jx9f+OsAAThyp4rHGmGQBxLNkrascFqeyphvxjUmRFKbGHZsdzhqB7mDOeBa6AFedH
1e/v1wnN0Eie9AlhkqRLaOD2pt6/dwjw8hup0akBPiu+Ji4ypDeXDb1p5t6AZcoxj82zKUSxdeL2
H6PCG5RTr98OXBnJPKwSr+TZk1Gio1hkR+/uCYA8sbIsD9wKgHkruk+jOdpiYbMKz6dLlNJE06HG
LZRMx6ehabJf/my6p2sz8EHJYhnStCk4wv/XhJkNvCtuXWj7KD1KYAyQ9ZVqp4gT4CdswdjT0EzN
u55wfUkOktM0Xgg7B8qntogRQ7jp
-----END INFOENCRYPT.COM MESSAGE-----