To enable wifi connection (assuming dhcp), enter the following commands from a shell prompt..
cd /etc/wpa_supplicant
wpa_passphrase <some ssid> <some ssid psk> | sudo tee -a wpa_supplicant.conf
echo "country=<some country code - ie: US>" | sudo tee -a wpa_supplicant.conf
sudo wpa_cli -i <your wireless interface - ie: wlan0> reconfigure
Now you can check to see if you get connected...
ifconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rs485": { | |
"method" : "rtu", | |
"port" : "/dev/ttyUSB2", | |
"baudrate" : 9600, | |
"stopbits" : 1, | |
"parity" : "N", | |
"timeout" : 5 | |
}, | |
"modbus": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To update the system | |
sudo pacman -Syu | |
Update the database: | |
sudo pacman -Syy | |
Installing | |
To install a package (always run pacman -Syu, before installing): | |
sudo pacman -S package_name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
database: | |
username: admin | |
password: foobar # TODO get prod passwords out of config | |
socket: /var/tmp/database.sock | |
options: {use_utf8: true} | |
memcached: | |
host: 10.0.0.99 | |
workers: | |
- host: 10.0.0.101 | |
port: 2301 |
NewerOlder