• 1 Post
  • 34 Comments
Joined 3 years ago
cake
Cake day: June 27th, 2023

help-circle



  • I’ve ran a 4 in, 4 out ADAT-CAT5 snake thingy on Linux, so 32 channels in and out. The remote end was synced via Word Clock with the Linux box providing master clock. RME RayDat for a soundcard, RME converters in the remote rack. Worked 100 % flawlessly, I even did live sound on it. ADAT is a ‘just works’ thing, go for it. You just need to understand that one device needs to be the clock master and others follow that.







  • The Linux way:

    • write a script: you can use the find command to find for example rars in a folder. find ~/thatfolder -iname ‘*.rar’ -exec uncompresscommand. Read ‘man find’ for specifics. Script’s first line is #!/bin/bash. Say ‘chmod u+x script’ to make it executable.

    • set up a systemd timer unit that calls a service unit that runs your script at intervals.

    • you can use something like for file in ~/thatfolder/* ; do sed trick that extracts the file extension and puts it in a variable ; case $variable in ; bunch of cases for different extensions. Variable $file will hold the source file name. Read up on bash scripting to figure it out.

    Welcome to penguinland :D






  • Thanks, that’ll come in handy!

    I guess it’s worth mentioning that once (only once) I’ve seen ripgrep bring a whole LAMP stack production server to a full tilt. A dev using VSCode (which has rg as part of its ‘trojan horse’ vscode-server it installs and runs as root on any server it’s used to edit) did a search and ripgrep went into some kind of death loop hogging 100% of all cpu cores. Probably rare, but kind of shocked me. All our servers now babysit vscode-server with cgroups…




  • Gnome 48 arrived on Arch and guess what – absolutely nothing broke! The only change was that fonts on non-Gnome apps got a little bit bigger. Quickly found a new switch in dconf-editor to the effect of ‘let the framework decide how to display fonts or respect user’s settings’ – flicked that from ‘Automatic’ to ‘Manual’ and everything was back to how it ought. Best Gnome update ever <3