Fedora - display text messages instead of splash screen during startup
To display text messages instead of splash screen during Fedora startup: plymouth-set-default-theme details -R grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg dracut -f reboot
Paweł Szaga home page
To display text messages instead of splash screen during Fedora startup: plymouth-set-default-theme details -R grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg dracut -f reboot
Start with updating AWS CLI tool: pip3 install awscli --upgrade --user Script for backing up data into your AWS S3 bucket: #!/bin/bash pathtobackup='/home/USERNAME/data/' pathtoarchivefile='/home/USERNAME' filenameprefix='backup-nextcloud' secret='secretpassword' awsbucket='awsbucket-name' date=`date --iso-8601` archivefilename=$filenameprefix-$date.7z echo echo "Performing backup of $pathtobackup to s3://$awsbucket/$archivefilename" echo echo `date -Is` echo "Compressing $pathtobackup to $pathtoarchivefile/$archivefilename" echo 7za a $pathtoarchivefile/$archivefilename $pathtobackup -p$secret echo echo… Continue reading AWS S3 backup script
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
To fix problem with Broadcom BCM43142 wireless driver on Fedora after kernel upgrade run as a root: akmods --force modprobe wl If there is no "akmods" tool installed, you need to boot your machine with previous kernel or connect via Ethernet cable (to have working Internet access) and install akmods from repository dnf install akmods
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