- Using FreeBSD
- Mountain Lion
- VMware Fusion 5
- Your VMware is installed at '/Applications/VMware Fusion.app'
- Command Line tools are at '/Applications/VMware Fusion.app/Contents/Library'
- especially vmrun
| #!/bin/bash | |
| # | |
| # add_user.sh: Add user to LDAP | |
| # Author: Nick Sabine | |
| # | |
| # Defaults | |
| LDAP_BASE="dc=ORG,dc=local" | |
| LDAP_ACCOUNTS_DN="ou=people,${LDAP_BASE}" | |
| LDAP_USER_GROUP="cn=user_group,ou=groups,${LDAP_BASE}" |
| ######################## | |
| # To modify openldap ACL | |
| ######################## | |
| # delete the existing ACL | |
| # delete-acl.ldif | |
| dn: olcDatabase={1}hdb,cn=config | |
| changetype: modify | |
| delete: olcAccess |
Getting data produced by IoT sensors into a database is practically a mandatory step before effective visualisation (eg dashboards).
This recipe shows you how to get an MQTT payload into an InfluxDB database using three Node-RED nodes. It makes the following assumptions:
These are notes from my efforts to get Ubuntu 20.04 installed on my older MacBook Pro. I'm making this gist public in the hopes that it's helpful to others.
I did a Minimal install, but selected the option to install additional 3rd-party drivers.
Wifi doesn't work during the install (because it requires a 3rd-party driver), so you won't be able to choose to download updates while installing. No big deal, run a software update after the install.
The installer takes about 25 minutes to complete. Post-install, most things work. The only driver I had to manually install was for the FaceTime camera. More on that below.
| #!/usr/bin/python3 | |
| # | |
| # load_agps_data | |
| # | |
| # proof of concept loading of agps data to quectel modem via AT commands | |
| from datetime import datetime, timezone | |
| import requests | |
| import serial |
tl;dr: Wayland is not "the future", it is merely an incompatible alternative to the established standard with a different set of priorities and goals.
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating e
create systemctl service file
vim /etc/systemd/system/docker-odoo.service
file content is