Recent Posts
Tags
- AliProject
- Alter
- Anime
- AnimeSeries
- Arch
- ARM
- Awesome
- Ayu
- Bluetooth
- Css
- Daiki
- Desucon
- Figma
- Figures
- Firefox
- Gentoo
- GothLoli
- GSC
- GTK3
- Haruhi
- History
- Hitachi
- I3
- Kaiyodo
- Kalafina
- KyotoAnimation
- Linux
- Lua
- MaxFactory
- Miku
- Movies
- Music
- Nendoroid
- News
- Photography
- Pulseaudio
- RaspberryPi
- Repairs
- Saber
- Scripts
- Steins;Gate
- Touhou
- Tracon
- WordPress
- Zoom
Links
Tag Archives: Arch
M-Audio Audiophile 2496 and Pulseaudio
When I built my previous Linux workstation in 2007, I equipped it with a M-Audio Audiophile 2496 professional audio card. I was very pleased with its quality – superb sound, excellent recording capabilities, S/PDIF and MIDI in/out, and proper RCA … Continue reading
EspoTek Labrador USB board on Raspberry Pi 4
EspoTek’s Labrador is an excellent single board, all-in-one USB oscilloscope / signal generator / power supply / logic analyzer / multimeter with a cross-platform Qt5-based GUI frontend. It is especially useful for use with Raspberry Pi-series computers. It works out … Continue reading
Raspberry Pi 4 bluetooth madness, part 2
Well, that obsoleted quickly! I mean the alarm-bluetooth-raspberrypi package. There’s finally a more or less native support for bluetooth in Arch ARM kernel and libraries, so there’s no need for external packages or weird configurations any more. Here’s how to … Continue reading
Raspberry Pi 4 bluetooth madness
There seems to be a lot of problems in getting a working bluetooth system on Raspberry Pi’s with Arch Linux, and the solutions are as numerous as the problems. When I originally installed Arch on my RPi4, I was able … Continue reading
Useful snippets #2: rc.local support on systemd
Systemd-using Linuxes like Arch Linux does not generally support the old SysV init functions like rc.local. The support is easy to add, though. Edit /usr/lib/systemd/system/rc-local.service: [Unit]Description=/etc/rc.local compatibility [Service]Type=oneshotExecStart=/etc/rc.localRemainAfterExit=yes [Install]WantedBy=multi-user.target Enable it: systemctl enable rc-local.service Original source: Raymii