[06:18] Hello, I have a question. Can anyone do Podcasting with Ubuntu Studio? [06:43] pokemochu4[m], I can't see why not; I often hear on BDLL reviewers say they're podcasting on their installs, I can't recall if it was said on last Ubuntu Studio BDLL (or covered in other podcasts) [18:07] Eickmeyer: thanks, what would you recommend to solve IRQ conflicts? Should I use `rtirq` ? [18:08] AppAraat: Yeah, rtirq should help you figure it out. OvenWerks would know more about that than I would. [18:10] thanks, I'll try and see if I can figure it out myself and if not I'll return with flailing arms while screaming my head off :p [18:12] AppAraat: Another place to ask would be #lau (Linux Audio Users) on Freenode. [18:13] oh, hadn't heard of that channel yet. I'll make sure to join. [18:15] AppAraat[m]: USB device? [18:15] no, internal Ethernet NIC (Intel 82579LM) [18:16] AppAraat: He means your audio interface. [18:16] (on an X220T i7-2640M) [18:16] oh, no, internal as well (though I haven't mucked around with the USB one yet in combination with Ethernet) [18:17] which irqs are you using [18:18] rtirq in Studio runs by default and should bump the snd-* device to a higher priority. [18:19] So internal sound (which also normally has it's own irq) should be prioritized anyway. [18:20] * OvenWerks is getting called away again... back later [18:38] * AppAraat[m] sent a long message: < https://matrix.org/_matrix/media/r0/download/matrix.org/QWQapVuAyKykIKAzCZazjrvJ > [18:48] you would use /etc/init.d/rtirq status [18:48] rtirq is not in the path. [18:49] AppAraat[m]: [18:50] https://paste.debian.net/1129023/ [18:51] that is upside down [18:51] sudo nano /etc/default/rtirg [18:52] you should (if you scroll down) find a line like: RTIRQ_NAME_LIST="rtc snd usb i8042" [18:52] change that to: RTIRQ_NAME_LIST="snd usb" [18:52] https://paste.debian.net/1129024/ [18:53] Changed it. This needs restart, right? [18:54] It may be that you r hda sound device is not ready/present when that script runs [18:54] yes [18:55] rigyht now your usb stuff is higher than your sound... including mouse and kb [18:56] if you are not using USB for sound you may want to use RTIRQ_NAME_LIST="snd" [18:57] and you may need to run sudo /etc/init.d/rtirq restart after boot. [18:57] but one step at a time. [19:05] yeah I do need USB for this, but I'm using the internal audio interface sometimes as well. I'll report back when I have rebooted. [19:09] AppAraat: Ubuntu Studio Controls can configure it so you can use both USB audio interfaces as well as your internal audio, if you didn't know. :) [19:09] oh... huh? Like simultaneously? [19:11] AppAraat[m]: we may need to add a "sleep 5" line in /etc/init.d/rtirq so that it doesn't run untill after hda is available. [19:11] yes it is possible to get jack to see more than one device at a time. [19:12] It is generally not the best solution, but it does allow someone with a usb mic (horrible things) to still monitor with their onboard sound. [19:15] that is amazingly cool! That means I might be able to record multitrack using my Behringer UFX1204 while at the same time outputting stuff coming out of my DAW over my Chord Mojo DAC. [19:15] (both of them are class compliant USB interfaces IIRC) [19:16] OvenWerks: btw, where do I place the `sleep 5`? At the bottom of `/etc/init.d/rtirq` ? [19:22] no, at the top just under the two lines: ### END INIT INFO [19:22] # [19:22] You want it to delay before running [19:27] I'll restart without it and report if it works, and if it doesn't I'll add that sleep line and report anyway :p