Arctis 7 Ubuntu 18.04

git clone https://github.com/brokkr/pulseaudio_steelseries_arctis_7.git && cd pulseaudio_steelseries_arctis_7 sudo cp steelseries-arctis-input.conf steelseries-arctis-output-mono.conf steelseries-arctis-output-stereo.conf /usr/share/pulseaudio/alsa-mixer/paths/ sudo cp steelseries-arctis-usb-audio.conf /usr/share/pulseaudio/alsa-mixer/profile-sets/ sudo vim /lib/udev/rules.d/90-pulseaudio.rules add to near end ATTRS{idVendor}==”1038″, ATTRS{idProduct}==”1260″, ENV{PULSE_PROFILE_SET}=”steelseries-arctis-usb-audio.conf” reboot           # Clone repo then cd into the dir git clone https://github.com/brokkr/pulseaudio_steelseries_arctis_7.git && cd pulseaudio_steelseries_arctis_7 # Copy 3 path config files sudo cp steelseries-arctis-input.conf…

Read More

Reboot Ubuntu daily

Info have a server that kernel panics about once a week gonna add a cronjob that reboots the server daily it is just a bandaid. but if it is quick and it works, ship it b sudo crontab -e reboot system every day at 4:20am (4:00am + 20 minutes) 0 4 * * * /sbin/shutdown…

Read More

Setting A Static IP Ubuntu 18.04

sudo vim /etc/netplan/50-cloud-init.yaml network: version: 2 renderer: networkd ethernets: ens18: dhcp4: no addresses: [10.0.0.22/24] gateway4: 10.0.0.1 nameservers: addresses: [8.8.8.8,8.8.4.4] sudo netplan apply

Read More

Setting Up Certbot

Info spent some time getting certbot setup for my web host project (bork.host)[bork.host] so i can generate SSL certs for my test domains and projects Steps Install $ sudo apt-get install software-properties-common $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get update $ sudo apt-get install python-certbot-nginx Run $ sudo certbot –nginx

Read More