• 1 Post
  • 38 Comments
Joined 2 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







  • I quit on day two with two takeaways:

    – Hardware must be well supported in fully-libre-land - I was trying to install on a Mac Mini and had to go nonguix pretty much right away. That kind of spoiled the whole effort.

    – Profound meditation and enlightenment on the essence of Scheme is a must. I had one of those ‘no, this is where you don’t want a closing brace’ moments and my zen was blown out of the water.

    I would have soldiered on, but personally I like Arch first and foremost because I can (and do) have a local repo by rsyncing a rotation of mirrors couple of times a week. Just in case the Internet dies one day, you know. I realised Guix was not really suitable for the apocalypse use case, so after that brace episode I decided to stick with what my spine already knows.

    After all that is said – I really hope you fare better :D



  • Whatever you end up using, have JACK sync 'em up. I used to have two Macs, one for recording with Nuendo and one for doing MIDI sequencing and programming. They synced via MIDI sync and there was always issues. Now I have everything on one Linux machine (Ardour records and mixes, Reaper sequences MIDI and Renoise does beats and other sampling related stuff) and with JACK the sync is seamless <3