Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Kaj Ailomaa


On Mon, Apr 28, 2014, at 07:36 PM, Kaj Ailomaa wrote:
> qjackctl configs can get corrupted sometimes. You can safely remove the
> settings file, and it will respawn when you start qjackctl again.
> 
> The settings are in ~/.config/rncbc.org/QjackCtl.conf
> 

By re-spawning, I of course meant, you'll get default settings next time
you start qjackctl. So, all changes you made will be lost.

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Kaj Ailomaa


On Mon, Apr 28, 2014, at 07:08 PM, Israel wrote:
> Hi,
> I did use my actual username, thank you!  I did that first, and then got
> the other e-mail.
> It seems my issue is actually something with qjackctl, as I have found
> that I can get a working setup using jackd from the command line, and
> then use qjackctl to set stuff up...
> I had become accustomed to qjackctl 'just working' as a frontend for
> jackd, so I figured there was an issue with something in the drivers,
> etc... 
> I will definitely post my solution when everything is resolved.
> 
> -- 
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users

qjackctl configs can get corrupted sometimes. You can safely remove the
settings file, and it will respawn when you start qjackctl again.

The settings are in ~/.config/rncbc.org/QjackCtl.conf

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Mac
On Mon, Apr 28, 2014 at 1:08 PM, Israel  wrote:

> On 04/28/2014 10:56 AM, Ralf Mardorf wrote:
> >> On 04/13/2014 11:45 AM, Kaj Ailomaa wrote:
> >>> On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:
> >>>
>  I did add myself to the audio group, though I will try the same
> command
>  again (I think I used my actual username, instead of $USER)
> >>> $USER is an environment variable. It's more correct to use your
> username
> >>> directly, since using $USER only works if you are logged in as that
> >>> user, when running the command - with sudo (if logged in as root, root
> >>> will become a member of audio group).
> > If you want to add somebody to a group, use the  username , not $USER.
> > If you want a script to test, if somebody does run this script with user
> > or root privileges, use  id -u  , not $USER. I guess what output you get
> > for $USER depends to your setup or distros default setup, but a
> > username  always is a  username  and the output of  id -u  always gives
> > information about the privileges.
> >
> > [rocketmouse@archlinux ~]$ echo $USER $(id -u)
> > rocketmouse 1000
> > [rocketmouse@archlinux ~]$ su
> > Password:
> > [root@archlinux rocketmouse]# echo $USER $(id -u)
> > rocketmouse 0
> > [root@archlinux rocketmouse]# exit
> > [rocketmouse@archlinux ~]$ sudo -i
> > [sudo] password for rocketmouse:
> > [root@archlinux ~]# echo $USER $(id -u)
> > root 0
> > [root@archlinux ~]# logout
> > [rocketmouse@archlinux ~]$
> >
> >
> Hi,
> I did use my actual username, thank you!  I did that first, and then got
> the other e-mail.
> It seems my issue is actually something with qjackctl, as I have found
> that I can get a working setup using jackd from the command line, and
> then use qjackctl to set stuff up...
> I had become accustomed to qjackctl 'just working' as a frontend for
> jackd, so I figured there was an issue with something in the drivers,
> etc...
> I will definitely post my solution when everything is resolved.
>
> --
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
>

FWIW I installed UBS 14.04 over the weekend.

I use qjackctl with multiple Audiofire12 units and extensive start up
scripts to wire eq's, crossovers, and mixers.

It just worked out of the box. THis rev I didn't even have to go find all
the calf and zita plugins. :)

Regards,
Mac
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Mac
On Mon, Apr 28, 2014 at 1:08 PM, Israel  wrote:

> On 04/28/2014 10:56 AM, Ralf Mardorf wrote:
> >> On 04/13/2014 11:45 AM, Kaj Ailomaa wrote:
> >>> On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:
> >>>
>  I did add myself to the audio group, though I will try the same
> command
>  again (I think I used my actual username, instead of $USER)
> >>> $USER is an environment variable. It's more correct to use your
> username
> >>> directly, since using $USER only works if you are logged in as that
> >>> user, when running the command - with sudo (if logged in as root, root
> >>> will become a member of audio group).
> > If you want to add somebody to a group, use the  username , not $USER.
> > If you want a script to test, if somebody does run this script with user
> > or root privileges, use  id -u  , not $USER. I guess what output you get
> > for $USER depends to your setup or distros default setup, but a
> > username  always is a  username  and the output of  id -u  always gives
> > information about the privileges.
> >
> > [rocketmouse@archlinux ~]$ echo $USER $(id -u)
> > rocketmouse 1000
> > [rocketmouse@archlinux ~]$ su
> > Password:
> > [root@archlinux rocketmouse]# echo $USER $(id -u)
> > rocketmouse 0
> > [root@archlinux rocketmouse]# exit
> > [rocketmouse@archlinux ~]$ sudo -i
> > [sudo] password for rocketmouse:
> > [root@archlinux ~]# echo $USER $(id -u)
> > root 0
> > [root@archlinux ~]# logout
> > [rocketmouse@archlinux ~]$
> >
> >
> Hi,
> I did use my actual username, thank you!  I did that first, and then got
> the other e-mail.
> It seems my issue is actually something with qjackctl, as I have found
> that I can get a working setup using jackd from the command line, and
> then use qjackctl to set stuff up...
> I had become accustomed to qjackctl 'just working' as a frontend for
> jackd, so I figured there was an issue with something in the drivers,
> etc...
> I will definitely post my solution when everything is resolved.
>
>
FWIW I installed UBS 14.04 over the weekend.

I use qjackctl with multiple Audiofire12 units and extensive start up
scripts to wire eq's, crossovers, and mixers.

It just worked out of the box. THis rev I didn't even have to go find all
the calf and zita plugins. :)

Regards,
Mac
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Israel
On 04/28/2014 10:56 AM, Ralf Mardorf wrote:
>> On 04/13/2014 11:45 AM, Kaj Ailomaa wrote:
>>> On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:
>>>
 I did add myself to the audio group, though I will try the same command 
 again (I think I used my actual username, instead of $USER)
>>> $USER is an environment variable. It's more correct to use your username
>>> directly, since using $USER only works if you are logged in as that
>>> user, when running the command - with sudo (if logged in as root, root
>>> will become a member of audio group).
> If you want to add somebody to a group, use the  username , not $USER.
> If you want a script to test, if somebody does run this script with user
> or root privileges, use  id -u  , not $USER. I guess what output you get
> for $USER depends to your setup or distros default setup, but a
> username  always is a  username  and the output of  id -u  always gives
> information about the privileges.
>
> [rocketmouse@archlinux ~]$ echo $USER $(id -u)
> rocketmouse 1000
> [rocketmouse@archlinux ~]$ su
> Password: 
> [root@archlinux rocketmouse]# echo $USER $(id -u)
> rocketmouse 0
> [root@archlinux rocketmouse]# exit
> [rocketmouse@archlinux ~]$ sudo -i
> [sudo] password for rocketmouse: 
> [root@archlinux ~]# echo $USER $(id -u)
> root 0
> [root@archlinux ~]# logout
> [rocketmouse@archlinux ~]$
>
>
Hi,
I did use my actual username, thank you!  I did that first, and then got
the other e-mail.
It seems my issue is actually something with qjackctl, as I have found
that I can get a working setup using jackd from the command line, and
then use qjackctl to set stuff up...
I had become accustomed to qjackctl 'just working' as a frontend for
jackd, so I figured there was an issue with something in the drivers,
etc... 
I will definitely post my solution when everything is resolved.

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Ralf Mardorf

> On 04/13/2014 11:45 AM, Kaj Ailomaa wrote:
> >
> > On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:
> >
> >> I did add myself to the audio group, though I will try the same command 
> >> again (I think I used my actual username, instead of $USER)
> > $USER is an environment variable. It's more correct to use your username
> > directly, since using $USER only works if you are logged in as that
> > user, when running the command - with sudo (if logged in as root, root
> > will become a member of audio group).

If you want to add somebody to a group, use the  username , not $USER.
If you want a script to test, if somebody does run this script with user
or root privileges, use  id -u  , not $USER. I guess what output you get
for $USER depends to your setup or distros default setup, but a
username  always is a  username  and the output of  id -u  always gives
information about the privileges.

[rocketmouse@archlinux ~]$ echo $USER $(id -u)
rocketmouse 1000
[rocketmouse@archlinux ~]$ su
Password: 
[root@archlinux rocketmouse]# echo $USER $(id -u)
rocketmouse 0
[root@archlinux rocketmouse]# exit
[rocketmouse@archlinux ~]$ sudo -i
[sudo] password for rocketmouse: 
[root@archlinux ~]# echo $USER $(id -u)
root 0
[root@archlinux ~]# logout
[rocketmouse@archlinux ~]$


-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-28 Thread Israel
On 04/13/2014 11:45 AM, Kaj Ailomaa wrote:
>
> On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:
>
>> I did add myself to the audio group, though I will try the same command 
>> again (I think I used my actual username, instead of $USER)
> $USER is an environment variable. It's more correct to use your username
> directly, since using $USER only works if you are logged in as that
> user, when running the command - with sudo (if logged in as root, root
> will become a member of audio group).
>
>> It appears I did not answer yes, though I honestly don't remember being 
>> prompted this time.  I will try renaming that and see if that fixes my 
>> issue.
>> I did install the low latency kernel already, for those reasons.
>> I will let you know how this goes!!
>> I appreciate your help very much thank you!
>>
>> -- 
>> ubuntu-studio-users mailing list
>> ubuntu-studio-users@lists.ubuntu.com
>> Modify settings or unsubscribe at:
>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users
I decided I would reply back on the original thread since the other was
becoming cluttered.

So far ffado list has been very helpful.  I can apparently connect and
run my box just fine using jack via the command line, and then qjackctl
will work.  So, there is something that changed in the qjackctl setup,
between versions.  The end is in sight here!  Thanks everyone for all
the help you have given.  Thanks to Kaj for pointing me to the ffado list!

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-14 Thread Israel
Well, I still have the errors I posted despite the reboot, so there must 
be something I am missing.
 will try the liveDVD when I have a chance to see if it is present 
there as well... if it is, then it is a bug, if it isn't there must be 
some other configuration I am missing


On 04/13/2014 11:45 AM, Kaj Ailomaa wrote:


On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:


I did add myself to the audio group, though I will try the same command
again (I think I used my actual username, instead of $USER)

$USER is an environment variable. It's more correct to use your username
directly, since using $USER only works if you are logged in as that
user, when running the command - with sudo (if logged in as root, root
will become a member of audio group).


It appears I did not answer yes, though I honestly don't remember being
prompted this time.  I will try renaming that and see if that fixes my
issue.
I did install the low latency kernel already, for those reasons.
I will let you know how this goes!!
I appreciate your help very much thank you!

--
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users



--
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-13 Thread Kaj Ailomaa


On Sun, Apr 13, 2014, at 02:27 PM, Israel wrote:

> I did add myself to the audio group, though I will try the same command 
> again (I think I used my actual username, instead of $USER)

$USER is an environment variable. It's more correct to use your username
directly, since using $USER only works if you are logged in as that
user, when running the command - with sudo (if logged in as root, root
will become a member of audio group).

> It appears I did not answer yes, though I honestly don't remember being 
> prompted this time.  I will try renaming that and see if that fixes my 
> issue.
> I did install the low latency kernel already, for those reasons.
> I will let you know how this goes!!
> I appreciate your help very much thank you!
> 
> -- 
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-13 Thread Israel

On 04/13/2014 03:47 AM, Kaj Ailomaa wrote:

To set up jack and ffado, you need to add yourself to audio group: sudo
usermod -a -G audio $USER
You'll need to logout and login for changes to have effect.

  (I suspect you answered "yes" during jack installation when asked if
  you wanted realtime privilege - if you answered "no", you will need to
  rename /etc/security/limits.d/audio.conf.disabled to
  /etc/security/limits.d/audio.conf)

Jack uses the audio group for getting access to realtime. ffado uses it
to let the user get access to a list of ffado firewire devices.

That's pretty much it.

You can install linux-lowlatency if you need lower latency (which you
will if you do any form of live recording and need to monitor yourself
through the computer).


Hi,
I did add myself to the audio group, though I will try the same command 
again (I think I used my actual username, instead of $USER)
It appears I did not answer yes, though I honestly don't remember being 
prompted this time.  I will try renaming that and see if that fixes my 
issue.

I did install the low latency kernel already, for those reasons.
I will let you know how this goes!!
I appreciate your help very much thank you!

--
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-13 Thread Kaj Ailomaa
To set up jack and ffado, you need to add yourself to audio group: sudo
usermod -a -G audio $USER
You'll need to logout and login for changes to have effect.

 (I suspect you answered "yes" during jack installation when asked if
 you wanted realtime privilege - if you answered "no", you will need to
 rename /etc/security/limits.d/audio.conf.disabled to
 /etc/security/limits.d/audio.conf)

Jack uses the audio group for getting access to realtime. ffado uses it
to let the user get access to a list of ffado firewire devices.

That's pretty much it.

You can install linux-lowlatency if you need lower latency (which you
will if you do any form of live recording and need to monitor yourself
through the computer).

-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-12 Thread Israel

Hi again!

On 04/12/2014 09:48 PM, Mike Holstein wrote:




On Sat, Apr 12, 2014 at 8:29 PM, Israel > wrote:


Well, I am now dual booting [well... triple booting as I need
MacOSX for my wife's phone :(   ]
I use Ubuntu 14.04 and Ubuntu Studio 12.04.  It works out of the
box in Studio 12.04


ubuntustudio *is* ubuntu
Yes, I do understand this, though Ubuntu Studio is configured for AV 
usage much more than Ubuntu is (lowlatency kernel is default, as you 
well know)



I didn't have to try anything fancy.
I am using a Presonus Firebox.


i use a presonus firepod

Nice!  It is good to know other Presonus devices work well!


I prefer to use only FLOSS and only want to install it rather than
use a liveCD/USB/DVD (unless it is puppy),


the live CD's i suggest *are* FLOSS, and the one you used to install 
ubuntustudio will do fine. its so you can tweak and try configurations 
and easily get back to a default state without breaking your current 
installation
I know they are Libre software... I simply meant that I'd rather install 
it than use a Live system.  The only thing I am tweaking is QJackCtrl in 
order to make it see the FireBox, in 14.04.  the presets can be easily 
reset, as I have a 'safe' saved preset using alsa and and experimental 
preset for firewire



but thanks for your info.
I am in 12.04 right now, but if you need me to run some commands
and post the output I would be glad to. Presonus Firebox is
already on FFADO (which is why I got it).


the presonus firepod works "out of the box" for me in ubuntustudio 
12.04 through 14.04


Unfortunately this is not the case with Ubuntu (not Ubuntu Studio). So 
that is why I am posting to the Ubuntu Studio list, in order to find out 
what is different in Studio, so I can simply configure whatever it is by 
hand to work.  And I appreciate you spending so much of your time trying 
to help me!



I got the interface specifically to use in Ubuntu... but 14.04 is
having issues with it.


presonus doenst officially support linux.. RME does AFAIK
I know, it says that on the FFADO page, but in the comments someone 
mentioned that it did actually work 'out of the box' in Ubuntu 12.04, so 
I figured I'd get it (12.04 is supported for long enough anyhow)



To enable it in Studio 12.04


there is no "enable" process for the firepod i have from presonus. it 
literally just runs when i have proper supported firewire chipsets
hmmm... you don't even need to start the mixer?  I may try without 
starting the mixer... but surely you need Jack, right?



Mike, I really appreciate all your patience and hard work in helping me 
to resolve this issue with 14.04.  either way, I am glad to have 12.04 
working splendidly with it.
I always enjoy the process of getting some old 'broken' computer and 
giving it new life with Ubuntu (or in some cases Debian or Fedora... and 
once in a while Puppy).
Thanks for helping me turn this old Mac someone thought was useless into 
a recording studio :)
I am not sure I can say thank you enough times, but I do really 
appreciate your help!
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [ubuntu-studio-users] Firewire interface

2014-04-12 Thread Mike Holstein
On Sat, Apr 12, 2014 at 8:29 PM, Israel  wrote:

>  Well, I am now dual booting [well... triple booting as I need MacOSX for
> my wife's phone :(   ]
> I use Ubuntu 14.04 and Ubuntu Studio 12.04.  It works out of the box in
> Studio 12.04
>

ubuntustudio *is* ubuntu


> I didn't have to try anything fancy.
> I am using a Presonus Firebox.
>

i use a presonus firepod


> I prefer to use only FLOSS and only want to install it rather than use a
> liveCD/USB/DVD (unless it is puppy),
>

the live CD's i suggest *are* FLOSS, and the one you used to install
ubuntustudio will do fine. its so you can tweak and try configurations and
easily get back to a default state without breaking your current
installation


> but thanks for your info.
> I am in 12.04 right now, but if you need me to run some commands and post
> the output I would be glad to.  Presonus Firebox is already on FFADO (which
> is why I got it).
>

the presonus firepod works "out of the box" for me in ubuntustudio 12.04
through 14.04


> I got the interface specifically to use in Ubuntu... but 14.04 is having
> issues with it.
>

presonus doenst officially support linux.. RME does AFAIK


> To enable it in Studio 12.04
>

there is no "enable" process for the firepod i have from presonus. it
literally just runs when i have proper supported firewire chipsets


> Open the FFADO mixer, wait until it loads the device.
> Open QJackctl and change it to firewire
> Open Audacity (I haven't tried it in Ardour yet... I wanted to just see if
> it works) change it to Jack
> Voila!  Working as expected.
>
> So why doesn't it work in plain Ubuntu 14.04?  I tried MANY things, and
> all of them were useless.  Jack works fine with Alsa but not firewire.
> If you like I can later post the output of the errors.
>
>
> On 04/12/2014 11:16 AM, Mike Holstein wrote:
>
>
>
>
> On Sat, Apr 12, 2014 at 8:14 AM, Israel  wrote:
>
>> Hi,
>> I am having a few issues. I am using Ubuntu 14.04 (not studio) and I am
>> trying to set up a firewire interface, and I am having some serious issues
>> getting Jack to recognize it.
>> Can anyone point me in the direction of a good tutorial for how to
>> configure qjackctl so use my device.  FFADO Mixer loads the interface just
>> fine, but I cannot seem to figure out how to configure everything to use it
>> :)
>>
>> The other issue is Ubuntu Studio 14.04
>> I downloaded the 32bit live (DVD) from current yesterday, and Ubiquity
>> goes fine until the place where I can choose the packages to install.  Then
>> a dialog pops up with a bunch of  and then the installer hangs up
>> until I use a TTY to sudo reboot.
>> I have also tried booting the 64bit beta2 on a Macboot, and cannot seem
>> to boot into anything useful.  I am only allowed to choose between the EFI
>> boots on the USB, and none of those work.
>>
>> Thanks for your help!
>>
>>
>  when i migrated my production rig to linux, using a firewire interface
> (as well as testing with may other internal and USB interfaces) these are
> some helpful tips that i found made the transition possible.
>
>  1. work from a live CD. there are several nice live CD's these days,
> such as our ubuntustudio live CD. when i say "live CD", i just refer to the
> iso image, downloaded and running from whatever you need.. DVD, USB,
> whatever.. while testing with the live CD's, you can easily tweak *any* and
> *all* configurations, without the fear of breakage. this is also an easy
> way to test different kernel versions and JACK versions with your hardware.
> i like to use an ubuntu 12.04, and now, the upcoming 14.04, as well as
> AVlinux's live iso
> 2. what is the issue? is it the firewire? or JACK? or permissions? or what?
> test things as independently as possible. dont land in a new os, fire up
> jack, with a piece of firewire hardware you dont know is supported in
> linux. start with the internal audio device, and learn to configure and run
> JACK using it. then, you can move forward knowing your JACK configuration
> is working or not.
> 3. the firewire chipset *can* make or break linux support. you can run
> "lspci" in a terminal and see what chipset you have for firewire.. ideally,
> you have texas instruments.. if not, i have a few others that work well,
> and also, a few that will never work in linux.
> 4. i have had laptops with IRQ issues relating to sharing IRQ for firewire
> with USB ports i was using. you can check this in the terminal with "cat
> /proc/interrupts"
> 5. keep in mind, none of the vendors of any of the hardware you have have
> promised you linux support. a team of experts from many different companies
> have come together for years and years to work with each other and make
> sure that your hardware works in a different operating system. you are
> basically deciding to take that responsibility on for yourself.
> 6. temporarily running jack as root (which is not something i would want
> to do all the time, continuously) can help troubleshoot permissions.
> running "gksudo qj

Re: [ubuntu-studio-users] Firewire interface

2014-04-12 Thread Israel
Well, I am now dual booting [well... triple booting as I need MacOSX for 
my wife's phone :(   ]
I use Ubuntu 14.04 and Ubuntu Studio 12.04.  It works out of the box in 
Studio 12.04

I didn't have to try anything fancy.
I am using a Presonus Firebox.
I prefer to use only FLOSS and only want to install it rather than use a 
liveCD/USB/DVD (unless it is puppy), but thanks for your info.
I am in 12.04 right now, but if you need me to run some commands and 
post the output I would be glad to.  Presonus Firebox is already on 
FFADO (which is why I got it).
I got the interface specifically to use in Ubuntu... but 14.04 is having 
issues with it.

To enable it in Studio 12.04
Open the FFADO mixer, wait until it loads the device.
Open QJackctl and change it to firewire
Open Audacity (I haven't tried it in Ardour yet... I wanted to just see 
if it works) change it to Jack

Voila!  Working as expected.

So why doesn't it work in plain Ubuntu 14.04?  I tried MANY things, and 
all of them were useless.  Jack works fine with Alsa but not firewire.

If you like I can later post the output of the errors.

On 04/12/2014 11:16 AM, Mike Holstein wrote:




On Sat, Apr 12, 2014 at 8:14 AM, Israel > wrote:


Hi,
I am having a few issues. I am using Ubuntu 14.04 (not studio) and
I am trying to set up a firewire interface, and I am having some
serious issues getting Jack to recognize it.
Can anyone point me in the direction of a good tutorial for how to
configure qjackctl so use my device.  FFADO Mixer loads the
interface just fine, but I cannot seem to figure out how to
configure everything to use it :)

The other issue is Ubuntu Studio 14.04
I downloaded the 32bit live (DVD) from current yesterday, and
Ubiquity goes fine until the place where I can choose the packages
to install.  Then a dialog pops up with a bunch of  and
then the installer hangs up until I use a TTY to sudo reboot.
I have also tried booting the 64bit beta2 on a Macboot, and cannot
seem to boot into anything useful.  I am only allowed to choose
between the EFI boots on the USB, and none of those work.

Thanks for your help!


when i migrated my production rig to linux, using a firewire interface 
(as well as testing with may other internal and USB interfaces) these 
are some helpful tips that i found made the transition possible.


1. work from a live CD. there are several nice live CD's these days, 
such as our ubuntustudio live CD. when i say "live CD", i just refer 
to the iso image, downloaded and running from whatever you need.. DVD, 
USB, whatever.. while testing with the live CD's, you can easily tweak 
*any* and *all* configurations, without the fear of breakage. this is 
also an easy way to test different kernel versions and JACK versions 
with your hardware. i like to use an ubuntu 12.04, and now, the 
upcoming 14.04, as well as AVlinux's live iso
2. what is the issue? is it the firewire? or JACK? or permissions? or 
what?
test things as independently as possible. dont land in a new os, fire 
up jack, with a piece of firewire hardware you dont know is supported 
in linux. start with the internal audio device, and learn to configure 
and run JACK using it. then, you can move forward knowing your JACK 
configuration is working or not.
3. the firewire chipset *can* make or break linux support. you can run 
"lspci" in a terminal and see what chipset you have for firewire.. 
ideally, you have texas instruments.. if not, i have a few others that 
work well, and also, a few that will never work in linux.
4. i have had laptops with IRQ issues relating to sharing IRQ for 
firewire with USB ports i was using. you can check this in the 
terminal with "cat /proc/interrupts"
5. keep in mind, none of the vendors of any of the hardware you have 
have promised you linux support. a team of experts from many different 
companies have come together for years and years to work with each 
other and make sure that your hardware works in a different operating 
system. you are basically deciding to take that responsibility on for 
yourself.
6. temporarily running jack as root (which is not something i would 
want to do all the time, continuously) can help troubleshoot 
permissions. running "gksudo qjackctl" allows one to start jack as 
root.. if jack has been failing, but runs as root, then, you know that 
the hardware configuration in jack works, and that the issue is more 
likely to do with permissions.
7. in qjackctl, there is a "messages" button that can have lots of 
helpful information..


feel free and share any terminal output here for any of the commands, 
or the jack GUI error messages.. i suggest joining the IRC for 
realtime help.



-- 
ubuntu-studio-users mailing list

ubuntu-studio-users@lists.ubuntu.com

Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-

Re: [ubuntu-studio-users] Firewire interface

2014-04-12 Thread Mike Holstein
On Sat, Apr 12, 2014 at 8:14 AM, Israel  wrote:

> Hi,
> I am having a few issues. I am using Ubuntu 14.04 (not studio) and I am
> trying to set up a firewire interface, and I am having some serious issues
> getting Jack to recognize it.
> Can anyone point me in the direction of a good tutorial for how to
> configure qjackctl so use my device.  FFADO Mixer loads the interface just
> fine, but I cannot seem to figure out how to configure everything to use it
> :)
>
> The other issue is Ubuntu Studio 14.04
> I downloaded the 32bit live (DVD) from current yesterday, and Ubiquity
> goes fine until the place where I can choose the packages to install.  Then
> a dialog pops up with a bunch of  and then the installer hangs up
> until I use a TTY to sudo reboot.
> I have also tried booting the 64bit beta2 on a Macboot, and cannot seem to
> boot into anything useful.  I am only allowed to choose between the EFI
> boots on the USB, and none of those work.
>
> Thanks for your help!
>
>
when i migrated my production rig to linux, using a firewire interface (as
well as testing with may other internal and USB interfaces) these are some
helpful tips that i found made the transition possible.

1. work from a live CD. there are several nice live CD's these days, such
as our ubuntustudio live CD. when i say "live CD", i just refer to the iso
image, downloaded and running from whatever you need.. DVD, USB, whatever..
while testing with the live CD's, you can easily tweak *any* and *all*
configurations, without the fear of breakage. this is also an easy way to
test different kernel versions and JACK versions with your hardware. i like
to use an ubuntu 12.04, and now, the upcoming 14.04, as well as AVlinux's
live iso
2. what is the issue? is it the firewire? or JACK? or permissions? or what?
test things as independently as possible. dont land in a new os, fire up
jack, with a piece of firewire hardware you dont know is supported in
linux. start with the internal audio device, and learn to configure and run
JACK using it. then, you can move forward knowing your JACK configuration
is working or not.
3. the firewire chipset *can* make or break linux support. you can run
"lspci" in a terminal and see what chipset you have for firewire.. ideally,
you have texas instruments.. if not, i have a few others that work well,
and also, a few that will never work in linux.
4. i have had laptops with IRQ issues relating to sharing IRQ for firewire
with USB ports i was using. you can check this in the terminal with "cat
/proc/interrupts"
5. keep in mind, none of the vendors of any of the hardware you have have
promised you linux support. a team of experts from many different companies
have come together for years and years to work with each other and make
sure that your hardware works in a different operating system. you are
basically deciding to take that responsibility on for yourself.
6. temporarily running jack as root (which is not something i would want to
do all the time, continuously) can help troubleshoot permissions. running
"gksudo qjackctl" allows one to start jack as root.. if jack has been
failing, but runs as root, then, you know that the hardware configuration
in jack works, and that the issue is more likely to do with permissions.
7. in qjackctl, there is a "messages" button that can have lots of helpful
information..

feel free and share any terminal output here for any of the commands, or
the jack GUI error messages.. i suggest joining the IRC for realtime help.




> --
> ubuntu-studio-users mailing list
> ubuntu-studio-users@lists.ubuntu.com
> Modify settings or unsubscribe at: https://lists.ubuntu.com/
> mailman/listinfo/ubuntu-studio-users
>



-- 
MH

likethecow.com
-- 
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


[ubuntu-studio-users] Firewire interface

2014-04-12 Thread Israel

Hi,
I am having a few issues. I am using Ubuntu 14.04 (not studio) and I am 
trying to set up a firewire interface, and I am having some serious 
issues getting Jack to recognize it.
Can anyone point me in the direction of a good tutorial for how to 
configure qjackctl so use my device.  FFADO Mixer loads the interface 
just fine, but I cannot seem to figure out how to configure everything 
to use it :)


The other issue is Ubuntu Studio 14.04
I downloaded the 32bit live (DVD) from current yesterday, and Ubiquity 
goes fine until the place where I can choose the packages to install.  
Then a dialog pops up with a bunch of  and then the installer 
hangs up until I use a TTY to sudo reboot.
I have also tried booting the 64bit beta2 on a Macboot, and cannot seem 
to boot into anything useful.  I am only allowed to choose between the 
EFI boots on the USB, and none of those work.


Thanks for your help!

--
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users