This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error from installing zfs-on-linux for Raspberry Pi 4 | |
Result of <modprobe zfs> | |
root@slack-server:4.19.69-v7l-arm # modprobe zfs | |
modprobe: ERROR: could not insert 'zfs': Exec format error | |
root@slack-server:4.19.69-v7l-arm # rm extras/zfs/zfs.ko | |
root@slack-server:4.19.69-v7l-arm # modprobe zfs | |
modprobe: ERROR: could not insert 'zfs': Unknown symbol in module, or unknown parameter (see dmesg) | |
root@slack-server:4.19.69-v7l-arm # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Routing Audio from a USB Turntable to HDMI using a Raspberry Pi | |
https://www.rickmakes.com/routing-audio-from-a-usb-turntable-to-hdmi-using-a-raspberry-pi | |
List Audio Devices | |
aplay -L | |
Send input to output | |
alsaloop -t 500000 -C hw:CARD=CODEC,DEV=0 -P hw:CARD=ALSA,DEV=1 | |
On October 8th 2020, I tested the above line and it didn’t work with the current version of Raspberry Pi OS on a Raspberry Pi 4. You can try the following: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I found a turntable at the thrift store, and the spindle ran, but the platter did not. | |
The belt had slipped of, and here is the fix. | |
https://www.youtube.com/watch?app=desktop&v=rXkOoaIVsvE | |
DIY - Sony Record player Stopped Spinning | |
May 17, 2021 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Linux & Other OS | |
Clone Tenacity from the Tenacity GitHub project. | |
$ git clone https://github.com/tenacityteam/tenacity/ | |
$ cd tenacity | |
Configure Tenacity using CMake: | |
$ mkdir build && cd build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What are some tech related podcasts for Podboat? | |
Here are some technology-related podcasts that you may find interesting: | |
"Reply All" by Gimlet Media - a podcast about internet culture, online communities, and technology. | |
"TED Radio Hour" by NPR - a podcast featuring TED talks on a variety of topics, including technology and innovation. | |
"Clockwise" by Relay FM - a podcast that covers four technology-related topics in 30 minutes or less. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Default values | |
HOST="localhost" | |
PORT="8000" | |
MOUNT="/stream" | |
USER="admin" | |
PASSWORD="hackme" | |
SONG="Unknown" |