Blogs



Patching KRACK WPA2 Vuln. on UniFi AP-AC-Lite


Tags: archive
I tried the recommended method here without luck. When done from the UniFi controller the upgrade would just not happen, no error given as to why. I then tried it directly on the AP and found that it wasn’t able to verify the SSL cert from UBNT’s site.

Debian 9 (Stretch) Laptop Setup


Tags: archive
Setting up an old Acer Aspire One 722-0473 Edit /etc/apt/sources.list - add contrib and non-free packages deb http://httpredir.debian.org/debian/ stretch main contrib non-free Update and install drivers apt-get update apt-get install firmware-amd-graphics Add touchpad config Edit /usr/share/X11/xorg.conf.d/50-touchpad.conf - add below section Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" Option "TapButton1" "3" EndSection

Moving blog database


Tags: archive
Working on some of the initial steps to moving this blog to docker today. Since containers aren’t exactly presistent I have to get the database migrated to a dedicated mysql node. Once that is done I can move the blog into a python2.7 container and onto a new docker host. First I spun up a new Debian VM, as is tradition, and after updating and upgrading, I installed mysql-server 5.5. Read more...

Docker Shit


Tags: archive
alias docker-nuke=‘docker kill $(docker ps -q); docker rm $(docker ps -aq); docker rmi -f $(docker images -aq); docker volume prune -f’ deletes and force removes all containers, images, and volumes.

Roland Jupiter 6 Troubleshooting


Tags: archive vintage synthesizer repair
CPU acting very erratic, front panel sometimes doesn’t boot, other times will go completly haywire (See Video) Initially thought PSU ripple due to age of caps and reported behavior of CPU when the PSU isn’t clean. Confirmed PSU ripple not the cause, after confirming correct scope settings on FB group. Started suspecting CPU itself was bad, asked around for replacements, as well as eprom. Europa is “taking a hiatus” as of 11/18/16, no good Read more...

Minecraft Server Tweaks


Tags: archive
Cache Proxy in front of https://mc-map.sqweeb.net Add another 32g disk to the proxy VM - proxy-02 Format, make file system and mount new disk at /mnt/cache/ Add line to /etc/fstab to mount disk on boot: /dev/vda1 /mnt/cache ext4 defaults 0 2 Add the following snippet to /etc/nginx/snippets/proxy-defaults.conf: proxy_cache_path /mnt/cache levels=1:2 keys_zone=my_cache:10m max_size=20g inactive=60m; Update /etc/nginx/sites-available/mc-map.sqweeb.net to use the cache: server { … proxy_cache my_cache; proxy_cache_valid 200 302 10m; add_header X-Cache-Status $upstream_cache_status; . Read more...

Minecraft Server Info


Tags: archive
Dynmap w/ Factions: Here ###Minecraft Multiplayer ###Minecraft List ###Minecraft Server List Plugins: dynmap Essentials EssentialsProtect EssentialsSpawn EssentialsGeoIP EssentialsChat EssentialsAntiBuild Factions FactionsDynmap MassiveCore Vault

Installing Cabot on Debian 8


Tags: archive
https://www.unicoda.com/?p=1624 sudo apt-get install python-dev python-pip postgresql ruby sudo pip install ecdsa fabric pycrypto git clone https://github.com/lincolnloop/cabot.git cd cabot cp conf/production.env.example conf/production.env # Add at least graphite url and login to config nano env/production.env fab provision -H root@localhost fab deploy -H ubuntu@localhost su - ubuntu source /home/ubuntu/venv/bin/activate cd cabot foreman start -e conf/production.env Modifying fabric provision/deploy for multi instance deploys: Clone official repo Make new local branch - ’tesl’ Find/replace all instances of ubuntu with tesl in fabfile. Read more...

NGINX Reverse Proxy 2.0


Tags: archive
I realized I didn't want to have a single SSL cert covering all of my subdomains here @ sqweeb.net So I set out on rebuilding my reverse proxy from the ground up. I first spun up a fresh Debian 8 virtual machine, patched it up and installed nginx and the Lets Encrypt cert bot. Once the default server was up and running and I had the root certificate in place I made an ssl-defaults config file that would be included in default/root config. Read more...

Previous Page 4 of 7 Next Page