[Raspberry Pi] script for auto reconnecting WiFi connection

Published on Author admin

Create script file: touch /home/volumio/wifi-reconnect.sh with following content: #!/bin/bash   SSID=$(/sbin/iwgetid --raw) if [ -z "$SSID" ] then     echo "`date -Is` WiFi interface is down, trying to reconnect" >> /home/volumio/wifi-log.txt     systemctl restart wireless fi echo "WiFi check finished" Make new file executable: chmod +x /home/volumio/wifi-reconnect.sh Install cron: sudo apt-get install cron… Continue reading [Raspberry Pi] script for auto reconnecting WiFi connection

[Raspberry Pi] Music playing using Volumio with Sound Blaster X-Fi

Published on Author admin

Music playing using Volumio on Raspberry Pi with Sound Blaster X-Fi Architecture schema: Installation steps: Download Volumio image from https://volumio.org/get-started/ Unzip downloaded image unzip md5sum volumio-2.348-2017-12-22-pi.img.zip Check MD5 checksum of uncompressed image: md5sum volumio-2.348-2017-12-22-pi.img Insert microSD card to your laptop/PC. You can delete all existing partitions using for instance gparted tool. You can install it… Continue reading [Raspberry Pi] Music playing using Volumio with Sound Blaster X-Fi

Configuring FortiSSLVPN on Fedora 27 (using Gnome and NetworkManager)

Published on Author admin

Configuring FortiSSLVPN (FortiGate SSL VPN) on Fedora 27 (using Gnome and NetworkManager) Install required packages: dnf install NetworkManager-ppp NetworkManager-fortisslvpn NetworkManager-fortisslvpn-gnome NetworkManager-openconnect-gnome openfortivpn Enable Fedora testing repository and install upgrades for following packages (1.2.6-3 as version 1.2.6-1 contains some bugs): dnf update NetworkManager-fortisslvpn NetworkManager-fortisslvpn-gnome After that disable Fedora testing repository. Create VPN profile using NetworkManager GUI,… Continue reading Configuring FortiSSLVPN on Fedora 27 (using Gnome and NetworkManager)