Kindle won’t connect
If like me you use a Kindle eBook reader, you may have experienced an Error sending books to & from the Kindle (I use Calibre for that.). If you are…
If like me you use a Kindle eBook reader, you may have experienced an Error sending books to & from the Kindle (I use Calibre for that.). If you are…
The following two articles offer excellent assistance in getting troublesome USBs (broken USBs) to function: Repair corrupt USB Drive (Make Tech Easier) How To Fix A Broken USB Drive Using…
Let’s say you have a folder with 5000 MP3 files you want to check for duplicates. Or a directory containing thousands of EPUB files, all with different names but you…
The following command (using dd) will clone one hard disk (HDD or SSD) to another hard disk: dd if=/dev/sda of=/dev/sdb bs=1M conv=noerror
Find all core dump files: find . -type f -regex “.*/core.[0-9][0-9][0-9][0-9]$” The regex in the above command matches the file name “core.xxxx” where “xxxx” is exactly four numbers 0-9. If…
The following commands need to be run in terminal mode, be sure to 'fix' the [distro-name] Start by running the following command on your mounted USB device (to clean it…
Make an mp3 playlist: ls -1 *.mp3 > playlist.m3u Make mp3s from raw wav files: ffmpeg -b 192k -i The_Rain_Song.wav The_Rain_Song.mp3 Convert m4a to mp3: ffmpeg -y -i ./BWV0666.m4a -ab…
To Reset the gnome-keyring: sudo mv /usr/bin/gnome-keyring-daemon /usr/bin/gnome-keyring-daemon-oldsudo killall gnome-keyring-daemon
Edit: sudo geany /etc/modprobe.d/mjr-blacklist.conf add the following content: #No PC speaker please blacklist pcspkr Close & Save, Restart your PC
If bluetooth won't start try this.... in your terminal: modprobe -r btusb && modprobe btusb If that doesn't work try (much of the following requires systemd): sudo pacman -S bluez…