Real time for Ubuntu Studio 10.04 amd64

2010-07-11 Thread Ralf Mardorf
Hi :)

I'm new to the list. Regarding to hw MIDI jitter, I'm testing and
comparing several Linux setups.

Here is a rough summary of my latest thread on LAD.

I wonder what I need to do, to get a kernel-rt for Ubuntustudio 10.04?


Ubuntu Studio 10.04 amd64
$ uname -a
Linux ubuntu 2.6.32-23-preempt #37-Ubuntu SMP PREEMPT Fri Jun 11
10:19:07 UTC 2010 x86_64 GNU/Linux

$ alsa-midi-latency-test -Rrw=2 -o20:0 -i20:0
 alsa-midi-latency-test 0.0.3
 set_realtime_priority(SCHED_FIFO, 99).. done.
 clock resolution: 0.1 s
 SUCCESS

 best latency was 1.00 ms
 worst latency was 3.36 ms, which is great.

3.36 ms isn't great, but unusable to make music.


openSUSE 11.2 amd64
 uname -a
Linux suse11-2 2.6.31.6-rt19 #1 SMP PREEMPT RT Wed Nov 18 16:59:26 CET
2009 x86_64 x86_64 x86_64 GNU/Linux

 alsa-midi-latency-test -Rrw=2 -o16:0 -i16:0
 alsa-midi-latency-test 0.0.3
 set_realtime_priority(SCHED_FIFO, 99).. done.
 clock resolution: 0.1 s
 SUCCESS

 best latency was 0.99 ms
 worst latency was 1.05 ms, which is great.



PREEMPT vs PREEMPT RT and of course frequency scaling for an audio
distro should be at performance by default, anyway, the frequency
scaling isn't a big deal.

I tried to boot the kernel-rt from the Ubuntu repositories and I tried
to build a kernel-rt myself.

If I try to boot kernel 2.6.31-11-rt or kernel 2.6.31-10-rt from the
repositories I get
'mount: mounting none on /dev failed: No such device.' Regading to the
web this might be, because of CONFIG_DEVTMPFS.

# cat config-2.6.31-11-rt | grep CONFIG_DEVTMPFS
# cat config-2.6.32-23-preempt | grep CONFIG_DEVTMPFS
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y

When I try to boot kernel 2.6.33-23-realtime from the repository I get
'ACPI: Expecting a [Reference] package element, found type 0'.

At least this three kernel-rt from the repositories come with an initrd.
The kernel I tried to build the way I usually build kernels for Ubuntu
with success, is missing an initrd.

$ cd /usr/src
$ sudo synaptic
  I checked if those packages were installed:
  bin86
  build-essential
  bzip2
  fakeroot
  gcc
  kernel-package
  make
  libncurses5-dev
$ wget ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.33.5.tar.bz2
$ wget
http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.33.5-rt23.bz2
$ tar xvjf linux-2.6.33.5.tar.bz2
$ rm linux-2.6.33.5.tar.bz2
$ mv linux-2.6.33.5 linux-2.6.33.5-rt23
$ ln -s linux-2.6.33.5-rt23 linux
$ cd linux
$ bunzip2 ../patch-2.6.33.5-rt23.bz2
$ patch -p1  ../patch-2.6.33.5-rt23
$ rm ../patch-2.6.33.5-rt23
$ cp /boot/config-2.6.32-23-preempt .config
$ make oldconfig
  81 x Enter
$ make menuconfig
  Edited from Generic-x86-64 to Opteron/Athlon64/Hammer/K8
  Save an Alternate Configuration File
$ make oldconfig
  Nothing to do
$ make-kpkg clean
$ export CONCURRENCY_LEVEL=2
  This didn't work:
  $ make-kpkg --rootcmd fakeroot --initrd kernel-image kernel-headers
kernel-source
50 minutes later
make[5]: *** [drivers/staging/comedi/drivers/quatech_daqp_cs.o]
Error 1
make[4]: *** [drivers/staging/comedi/drivers] Error 2
Hence I edited .config:
$ cat .config | grep COMEDI
  CONFIG_COMEDI=m
  # CONFIG_COMEDI_DEBUG is not set
  CONFIG_COMEDI_PCI_DRIVERS=m
  CONFIG_COMEDI_PCMCIA_DRIVERS=m
  CONFIG_COMEDI_USB_DRIVERS=m
$ gedit .config
$ cat .config | grep COMEDI
  # CONFIG_COMEDI is not set
  # CONFIG_COMEDI_DEBUG is not set
  # CONFIG_COMEDI_PCI_DRIVERS is not set
  # CONFIG_COMEDI_PCMCIA_DRIVERS is not set
  # CONFIG_COMEDI_USB_DRIVERS is not set
$ make oldconfig
  Nothing to do
$ make-kpkg clean
  $ make-kpkg --rootcmd fakeroot --initrd kernel-image kernel-headers
kernel-source
Another 50 minutes later
make[4]: *** [drivers/staging/pohmelfs/inode.o] Error 1
make[3]: *** [drivers/staging/pohmelfs] Error 2
Hence I edited .config:
$ cat .config | grep POHMEL
  CONFIG_POHMELFS=m
  # CONFIG_POHMELFS_DEBUG is not set
  CONFIG_POHMELFS_CRYPTO=y
$ gedit .config
$ cat .config | grep POHMEL
  # CONFIG_POHMELFS is not set
  # CONFIG_POHMELFS_DEBUG is not set
  # CONFIG_POHMELFS_CRYPTO is not set
$ make oldconfig
  Nothing to do
$ make-kpkg clean
Here it is ok:
$ make-kpkg --rootcmd fakeroot --initrd kernel-image kernel-headers
kernel-source
  80 minutes later
$ cd ..
$ sudo dpkg -i
linux-image-2.6.33.5-rt23_2.6.33.5-rt23-10.00.Custom_amd64.deb



When I tried to boot the kernel I got

'[0.499322] ACPI: Expecting a [Reference] package element, found
type 0
 [0.811991] kernel panic - not syncing: VPS: Unable to mount root fs
on unknown-block (0,0)'

Any hints are welcome!

Cheers!

Ralf


-- 

Re: Real time for Ubuntu Studio 10.04 amd64

2010-07-12 Thread Ralf Mardorf
Hi Ken :)

On Sun, 2010-07-11 at 23:02 -0500, Kenneth Koym wrote:
 Ralf, Keep making these type postings; we need your expertise and
 questions! Ken
 
 On Sun, Jul 11, 2010 at 8:29 PM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
 Hi :)
 
 I'm new to the list. Regarding to hw MIDI jitter, I'm testing
 and
 comparing several Linux setups.
 
 Here is a rough summary of my latest thread on LAD.

What's bad with this posting? This is my question:

 I wonder what I need to do, to get a kernel-rt for
 Ubuntustudio 10.04?

In other words, I couldn't boot a kernel-rt, but to do real time audio
work, I need a kernel-rt. My question is about hints, what might be
going wrong and how to solve it.


Here are some details about my machine:

Mobo M2A-VM HDMI
AMD Athlon(tm) X2 Dual Core Processor BE-2350
RAM 2 GB
Graphics NVIDIA 7200 GS
Sound cards 2x Terratec EWX 24/96

This is the reason why I need a kernel-rt:

 
 
 Ubuntu Studio 10.04 amd64
 $ uname -a
 Linux ubuntu 2.6.32-23-preempt #37-Ubuntu SMP PREEMPT Fri Jun
 11
 10:19:07 UTC 2010 x86_64 GNU/Linux
 
 $ alsa-midi-latency-test -Rrw=2 -o20:0 -i20:0
  alsa-midi-latency-test 0.0.3
  set_realtime_priority(SCHED_FIFO, 99).. done.
  clock resolution: 0.1 s
  SUCCESS
 
  best latency was 1.00 ms
  worst latency was 3.36 ms, which is great.
 
 3.36 ms isn't great, but unusable to make music.
 
 
 
 openSUSE 11.2 amd64
  uname -a
 Linux suse11-2 2.6.31.6-rt19 #1 SMP PREEMPT RT Wed Nov 18
 16:59:26 CET
 2009 x86_64 x86_64 x86_64 GNU/Linux
 
  alsa-midi-latency-test -Rrw=2 -o16:0 -i16:0
  alsa-midi-latency-test 0.0.3
  set_realtime_priority(SCHED_FIFO, 99).. done.
  clock resolution: 0.1 s
  SUCCESS
 
  best latency was 0.99 ms
  worst latency was 1.05 ms, which is great.
 
 
 
 
 PREEMPT vs PREEMPT RT and of course frequency scaling for an
 audio
 distro should be at performance by default, anyway, the
 frequency
 scaling isn't a big deal.

This is about the issues when I try to boot the kernel-rt from the
repositories  resp. the messages I get instead of a desktop session:

 I tried to boot the kernel-rt from the Ubuntu repositories and
 I tried
 to build a kernel-rt myself.
 
 If I try to boot kernel 2.6.31-11-rt or kernel 2.6.31-10-rt
 from the
 repositories I get
 'mount: mounting none on /dev failed: No such device.'
 Regading to the
 web this might be, because of CONFIG_DEVTMPFS.
 
 # cat config-2.6.31-11-rt | grep CONFIG_DEVTMPFS
 # cat config-2.6.32-23-preempt | grep CONFIG_DEVTMPFS
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
 
 When I try to boot kernel 2.6.33-23-realtime from the
 repository I get
 'ACPI: Expecting a [Reference] package element, found type 0'.

I also tried to build a kernel-rt without succes:

 At least this three kernel-rt from the repositories come with
 an initrd.
 The kernel I tried to build the way I usually build kernels
 for Ubuntu
 with success, is missing an initrd.
 
 $ cd /usr/src
 $ sudo synaptic
  I checked if those packages were installed:
  bin86
  build-essential
  bzip2
  fakeroot
  gcc
  kernel-package
  make
  libncurses5-dev
 $ wget
 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.33.5.tar.bz2
 $ wget
 
 http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.33.5-rt23.bz2
 $ tar xvjf linux-2.6.33.5.tar.bz2
 $ rm linux-2.6.33.5.tar.bz2
 $ mv linux-2.6.33.5 linux-2.6.33.5-rt23
 $ ln -s linux-2.6.33.5-rt23 linux
 $ cd linux
 $ bunzip2 ../patch-2.6.33.5-rt23.bz2
 $ patch -p1  ../patch-2.6.33.5-rt23
 $ rm ../patch-2.6.33.5-rt23
 $ cp /boot/config-2.6.32-23-preempt .config
 $ make oldconfig
  81 x Enter
 $ make menuconfig
  Edited from Generic-x86-64 to Opteron/Athlon64/Hammer/K8
  Save an Alternate Configuration File
 $ make oldconfig
  Nothing to do
 $ make-kpkg clean
 $ export CONCURRENCY_LEVEL=2
  This didn't work:
  $ make-kpkg --rootcmd fakeroot --initrd kernel-image
 kernel-headers
 kernel-source

PulseAudio

2010-07-12 Thread Ralf Mardorf
A last newbie posting.

I surfed the devel mailing list archive.
https://lists.ubuntu.com/archives/ubuntu-studio-devel/2010-February/002220.html
For 64 Studio (AFAIK it's the only audio distro beside Ubuntu Studio,
that is based on a .deb system and supports amd64 architecture, but only
i386), PulseAudio is disabled. It's making things much easier for users.

OT: To have the choice between JACK1 and JACK2 would be good to, AFAIK
there's no distro supporting this.

- Ralf


-- 
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: Bugtracker

2010-07-12 Thread Ralf Mardorf
On Mon, 2010-07-12 at 14:17 +0300, Jussi Schultink wrote:
 Hi Ralf,
 
 On Mon, Jul 12, 2010 at 2:14 PM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
  Hi again :)
 
  isn't there a bugtracker for Ubuntu Studio only? I guess those tickets
  at https://launchpad.net/ubuntu/+bugs are for Ubuntu in general?
 
  - Ralf
 
 Ubuntu Studio is a part of Ubuntu, using the same repositories and
 packages. Therefore, any bugs in Ubuntu Studio also apply to ubuntu.
 This means we use the same tracker as ubuntu.
 
 HTH
 
 Jussi

Thank you :)

ok, I do understand. It's my first install of Ubuntu Studio. I just
wonder a little bit, because for an audio distro there might be some
hacks, that are different from an averaged desktop distro. IMO mixing
tickets for desktop computers and audio studio computers could lead away
from the target to get a stable audio and video production Linux,
because 'democracy' does mean to fit to the needs of the most people,
but just a minority group needs real time audio.

- Ralf


-- 
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: Real time for Ubuntu Studio 10.04 amd64

2010-07-14 Thread Ralf Mardorf
On Tue, 2010-07-13 at 01:32 +0400, Oleg Ivanenko wrote:
 2010/7/13 Pablo pablo.f...@gmail.com
 
 
  One more significant(for me) reason for still using 2.6.31,
 except
  nvidia-problem,  is that I find out that command ps output
 was somehow
  changed in subsequent kernels, so steps starts from 3
  from http://subversion.ffado.org/wiki/IrqPriorities is not
 working.
 
 
 
 Hi Oleg,
 
 Just an idea. I use htop to see the processes and kernel
 threads'
 priorities.
 
 sudo apt-get install htop terminator
 
 I run htop in terminator because it uses the F10 to save
 configuration
 changes and gnome-terminal uses F10 to show the menus.
 
 F2 - Display Options: Disable Hide kernel threads - F10
 F6 - Sort by: PRI
 
 Hi, Pablo!
 
 
 Thanks for pointing, I will try this way.
 
 -- 
 Truly yours, Oleg Ivanenko aka Ash
 [if it wasn't so sad, it would be funny]

I also prefer htop, but atop also has some advantages.


-- 
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: Real time for Ubuntu Studio 10.04 amd64

2010-07-14 Thread Ralf Mardorf
Hi Oleg :) hi Brian :)

On Mon, 2010-07-12 at 11:45 -0500, Brian David wrote:

 This is one of the kernels that stops booting with the
 message 'mount:
 mounting none on /dev failed: No such device.'
 
 
 
 I have such message too but it is not stops booting and not
 affects my work. I have no idea what is this exactly :)
  
 
 
 This message will pop up, and the cursor will blink for some time, but
 the computer should start up if you wait long enough.  At least, this
 is how my computer works with the current -rt kernel.
 
 I don't know what the actual message means, though.

Aha, it might be some of that esoteric issues :D.

For my self build kernel 2.6.31.6-rt19 on Suse 11.2 I need to wait
around 10 seconds when GDM appeared, I also could log in, but than the
screen will freeze and I need to push

Ctrl + alt + double-backspace

yes, I need to push backspace two times and log in (again), then
everything is ok.

- Ralf


-- 
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


No audio - was: Real time for Ubuntu Studio 10.04 amd64

2010-07-28 Thread Ralf Mardorf
Hi :)

today I tried Ubuntu Studio again, but I had no time to work on the
realtime kernel issue, because I got some new issues.

1.

After updating apps and the non-realtime kernel, my manually edited
grub.cfg was automatically overwritten by a completely grotesque
grub.cfg, without an automatically backup of the original. So tomorrow
I'll have to do a hard job to make all my really existing kernels and
Linuxes bootable again and those who are already bootable needs to get
rid of those annoying boot splashes, unfortunately I didn't backup it
myself.

2.

I tried to play a MP3 by Movie Player, the PA setting meters show
output, optional for one or the other of my two Terratec EWX 24/96 sound
cards, but there was no sound hearable or visible for Envy24 control.

3.

I installed KMPlayer, set it up to use JACK, run JACK, launched
KMPLayer, pushed play and play stand still.

Any hints how to solve issue 2 and 3 are welcome.

Cheers!

Ralf


-- 
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: No audio - was: Real time for Ubuntu Studio 10.04 amd64

2010-07-28 Thread Ralf Mardorf
On Wed, 2010-07-28 at 20:34 +0100, Matt Wheeler wrote:
 Sorry, I can't answer either of the questions you said you actually
 wanted help with but...
 
 On 28 July 2010 17:22, Ralf Mardorf ralf.mard...@alice-dsl.net wrote:
  Hi :)
 
  today I tried Ubuntu Studio again, but I had no time to work on the
  realtime kernel issue, because I got some new issues.
 
  1.
 
  After updating apps and the non-realtime kernel, my manually edited
  grub.cfg was automatically overwritten by a completely grotesque
  grub.cfg, without an automatically backup of the original. So tomorrow
  I'll have to do a hard job to make all my really existing kernels and
  Linuxes bootable again and those who are already bootable needs to get
  rid of those annoying boot splashes, unfortunately I didn't backup it
  myself.
 
 Rather than editing /boot/grub/grub.cfg directly you need to edit or
 replace the files in /etc/grub.d and then call update-grub.
 The scripts in /etc/grub.d are executed in order, hence the filenames
 beginning with numbers, so if you want to add custom entries at the
 top call your file 08_localstuff or something. I've blogged about this
 in relation to realtime kernels [1]. Perhaps you can modify that to
 suit your needs.
 
 
 If you just want to include some static text in grub.cfg you could
 create a file like this (and make it executable):
 
 #!/bin/sh
 
 echo  EOF
 
 your stuff for grub.cfg goes here
 
 EOF
 
 
 Hope this is at least a little helpful ⢁)
 
 
 [1] http://funkyhat.org/2010/01/19/putting-rt-kernels-first-in-grub2/
 
 -- 
 Matt Wheeler
 m...@funkyhat.org
 

Thank you Matt :)

1.

My fault not to backup grub.cfg or to switch to GRUB 1, resp. not to use
GRUB 1 of my older Linux installs.

2.

For the future I could backup grub.cfg or I should (have) read about
GRUB 2 myself.

So, okay, GRUB isn't that important, OTOH thank you for making it easier
for me to keep the new GRUB.

Anyway, I still wounder why GRUB does search for outdated GRUB 1
menu.lst's ;).

Not the hint I was asking for, but OTOH a really good hint, because the
new GRUB for sure will remove the old faithful GRUB.

Thanx :)

Ralf


-- 
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: No audio - was: Real time for Ubuntu Studio 10.04 amd64

2010-07-28 Thread Ralf Mardorf
On Thu, 2010-07-29 at 00:18 +0200, Gerhard Lang wrote:
 Am 28.07.2010 18:22, schrieb Ralf Mardorf:
  Hi :)
 
  today I tried Ubuntu Studio again, but I had no time to work on the
  realtime kernel issue, because I got some new issues.
 
  1.
 
  After updating apps and the non-realtime kernel, my manually edited
  grub.cfg was automatically overwritten by a completely grotesque
  grub.cfg, without an automatically backup of the original. So tomorrow
  I'll have to do a hard job to make all my really existing kernels and
  Linuxes bootable again and those who are already bootable needs to get
  rid of those annoying boot splashes, unfortunately I didn't backup it
  myself.
 
  2.
 
  I tried to play a MP3 by Movie Player, the PA setting meters show
  output, optional for one or the other of my two Terratec EWX 24/96 sound
  cards, but there was no sound hearable or visible for Envy24 control.
 
  3.
 
  I installed KMPlayer, set it up to use JACK, run JACK, launched
  KMPLayer, pushed play and play stand still.
 
  Any hints how to solve issue 2 and 3 are welcome.
 
  Cheers!
 
  Ralf
 
 
 hi Ralf
 I'd recommend grub2. On my stationary machine it finds all hard-drives, 
 partitions, oses and every single Linux kernel. You'll just have to edit 
 /etc/default/grub for your needs on the Linux from where you updated 
 grub i.e. for getting rid of splash and recovery mode, setting defaults 
 etc..
 I also have an ice1712 card, a hoontech dsp24, and it worked ootb in 
 10.04 64bit.
 But just in the moment I have problems with sound/alsa in kernels 
 2.6.32.23 and 24 generic and preempt.
 With rt kernel 2.6.33.26-rt and jack2 (available i.e. in falktx ppas) 
 and  alsa updated to 1.0.23 all audio is fine.
 Even if both your cards are selectable in PA I think your problem has to 
 do with multiple sound-card setup which seems to be not trivial in 
 Ubuntu. Can you select them  in Qjackctl too?
 good luck
 Gerhard
 

Yes, I'm able to select them by Qjackctl too. I didn't make both cards a
single virtual card until now.
I can't boot any kernel-rt. There at least is an issue for X. I'm unable
to start GDM. There's no sound for the preempt kernels.

Because there isn't a xorg.conf anymore I'm unable to switch between
drivers for the graphics ... right now I see there's a
xorg.conf.failsafe using the vesa driver.

Hm, ASAP, not right now, I'll try to boot a kernel-rt in failsafe mode.

- Ralf


-- 
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: No audio - was: Real time for Ubuntu Studio 10.04 amd64

2010-07-29 Thread Ralf Mardorf
On Thu, 2010-07-29 at 07:55 +0200, Ralf Mardorf wrote:
 On Thu, 2010-07-29 at 00:18 +0200, Gerhard Lang wrote:
  Am 28.07.2010 18:22, schrieb Ralf Mardorf:
   Hi :)
  
   today I tried Ubuntu Studio again, but I had no time to work on the
   realtime kernel issue, because I got some new issues.
  
   1.
  
   After updating apps and the non-realtime kernel, my manually edited
   grub.cfg was automatically overwritten by a completely grotesque
   grub.cfg, without an automatically backup of the original. So tomorrow
   I'll have to do a hard job to make all my really existing kernels and
   Linuxes bootable again and those who are already bootable needs to get
   rid of those annoying boot splashes, unfortunately I didn't backup it
   myself.
  
   2.
  
   I tried to play a MP3 by Movie Player, the PA setting meters show
   output, optional for one or the other of my two Terratec EWX 24/96 sound
   cards, but there was no sound hearable or visible for Envy24 control.
  
   3.
  
   I installed KMPlayer, set it up to use JACK, run JACK, launched
   KMPLayer, pushed play and play stand still.
  
   Any hints how to solve issue 2 and 3 are welcome.
  
   Cheers!
  
   Ralf
  
  
  hi Ralf
  I'd recommend grub2. On my stationary machine it finds all hard-drives, 
  partitions, oses and every single Linux kernel. You'll just have to edit 
  /etc/default/grub for your needs on the Linux from where you updated 
  grub i.e. for getting rid of splash and recovery mode, setting defaults 
  etc..
  I also have an ice1712 card, a hoontech dsp24, and it worked ootb in 
  10.04 64bit.
  But just in the moment I have problems with sound/alsa in kernels 
  2.6.32.23 and 24 generic and preempt.
  With rt kernel 2.6.33.26-rt and jack2 (available i.e. in falktx ppas) 
  and  alsa updated to 1.0.23 all audio is fine.
  Even if both your cards are selectable in PA I think your problem has to 
  do with multiple sound-card setup which seems to be not trivial in 
  Ubuntu. Can you select them  in Qjackctl too?
  good luck
  Gerhard
  
 
 Yes, I'm able to select them by Qjackctl too. I didn't make both cards a
 single virtual card until now.
 I can't boot any kernel-rt. There at least is an issue for X. I'm unable
 to start GDM. There's no sound for the preempt kernels.
 
 Because there isn't a xorg.conf anymore I'm unable to switch between
 drivers for the graphics ... right now I see there's a
 xorg.conf.failsafe using the vesa driver.
 
 Hm, ASAP, not right now, I'll try to boot a kernel-rt in failsafe mode.
 
 - Ralf

Booting a kernel-rt in recovery mode failed too.

spinymouse1...@suse11-2:~
cat /media/ubuntu_studio/var/log/Xorg.failsafe.log
[snip]
(II) VESA(0): Total Memory: 4096 64KB banks (262144kB)
(II) VESA(0): Configured Monitor: Using hsync range of 31.50-0.00 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 56.00-0.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode 2048x1536 (no mode of this name)
(II) VESA(0): Not using built-in mode 1280x1024 (no mode of this name)
(II) VESA(0): Not using built-in mode 1024x768 (no mode of this name)
(II) VESA(0): Not using built-in mode 800x600 (no mode of this name)
(II) VESA(0): Not using built-in mode 640x480 (no mode of this name)
(II) VESA(0): Not using built-in mode 640x400 (no mode of this name)
(II) VESA(0): Not using built-in mode 320x400 (no mode of this name)
(II) VESA(0): Not using built-in mode 320x240 (no mode of this name)
(II) VESA(0): Not using built-in mode 320x200 (no mode of this name)
(WW) VESA(0): No valid modes left. Trying less strict filter...
(II) VESA(0): Configured Monitor: Using hsync range of 31.50-0.00 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 56.00-0.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode 2048x1536 (unknown reason)
(II) VESA(0): Not using built-in mode 1280x1024 (unknown reason)
(II) VESA(0): Not using built-in mode 1024x768 (unknown reason)
(II) VESA(0): Not using built-in mode 800x600 (unknown reason)
(II) VESA(0): Not using built-in mode 640x480 (unknown reason)
(II) VESA(0): Not using built-in mode 640x400 (unknown reason)
(II) VESA(0): Not using built-in mode 320x400 (unknown reason)
(II) VESA(0): Not using built-in mode 320x240 (unknown reason)
(II) VESA(0): Not using built-in mode 320x200 (unknown reason)
(WW) VESA(0): No valid modes left. Trying aggressive sync range...
(II) VESA(0): Configured Monitor: Using hsync range of 31.50-0.00 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 50.00-0.00 Hz
(WW) VESA(0): Unable to estimate virtual size
(II) VESA(0): Not using built-in mode 2048x1536 (unknown reason)
(II) VESA(0): Not using built-in mode 1280x1024 (unknown reason)
(II) VESA(0): Not using built-in mode 1024x768 (unknown reason)
(II) VESA(0): Not using built-in mode 800x600 (unknown reason)
(II) VESA(0): Not using built-in mode 640x480 (unknown reason)
(II) VESA(0): Not using built-in mode 640x400

Re: Motherboard compatibility - AMD

2010-07-29 Thread Ralf Mardorf
On Thu, 2010-07-29 at 10:36 +0100, Fernando Gomes wrote:
 ASUS M2N68-AM PLUS - NVIDIA nForce 630a + Geforce 7025 GPU
 
 Asus M4A785D-M Pro - AMD 785G chipset
 
 ASUS M4A785TD-M EVO - AMD 785G chipset

Mobo ASUS M2A-VM HDMI with a CPU model 15.107.2 AMD Athlon(tm) X2 Dual
Core Processor BE-2350 and instead of the integrated ATI Radeon
X1250-based graphics using a NVIDIA 7200 GS. Northbridge: AMD 690G,
Southbridge: ATI SB600

Regarding to multimedia, audio and video I get best results when running
tests. I'm not fine with those results, e.g. MIDI jitter around 1 ms,
but compared to other mobos this mobo works like a charm.

Unfortunately not with Ubuntu Studio until now, but e.g. with 64 Studio
3.0 based on Ubuntu Hardy out of the box.

So, no experiences with those mobos you mentioned, but if you wish to
use Ubuntu Studio out of the box, avoid my mobo, OTOH this mobo is
hardcore audio proved, of course not with the onboard audio, but two PCI
cards.

Note that it's always a combination of hardware, BIOS updates, kernel-rt
updates etc., you can't trust 'ASUS xyz with chipset abc' is good or
bad.

Once you've got a stable system that fits to your needs, keep it and
e.g. do upgrades for a copy of this Linux. I'm using GRUB for multiboot
a lot.


-- 
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: Motherboard compatibility - AMD

2010-07-29 Thread Ralf Mardorf
On Thu, 2010-07-29 at 10:36 +0100, Fernando Gomes wrote:
 freezing after boot, mouse getting very slow after some seconds /
 minutes of use, etc. Or can you suggest any other known working setup?

Sometimes issues are caused by a HDD near to the end of its lifetime.
The HDD seems to be ok, but there are strange issues for X.

Do you use PS/2 or USB for mouse and keyboard? Perhaps you only need to
switch to PS/2, for your current board.


-- 
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: Motherboard compatibility - AMD

2010-07-29 Thread Ralf Mardorf
On Thu, 2010-07-29 at 14:02 +0100, Fernando Gomes wrote:
 Hi Ralf, thanks for your reply! I would try with a PS2 mouse, my doubt
 is because I'm also using a USB audio interface, so I think that the
 USB problem might affect also the audio interface (but as far as I
 remember it keeps working even when mouse starts to get slow, but I'm
 not sure). Also have some network timeouts from time to time... 
 As you say, this is a problem of all the things work together (the
 motherboard, bios version and linux rt version must match), this is
 why I was looking for a MB with integrated graphics that was known for
 working with the current Linux RT kernel ... That way the only
 difference I will have is the audio interface (I'm using a Tascam 122
 usb sound module). Buying a third motherboard to see it doesn't work
 with ubuntu studio will be to much - specially to justify it to my
 wife :-)
 Im looking to ASUS because they have good motherboards and normally
 they have frequent bios updates (this should also be true for MSI, but
 unfortunatly not with the one I'm using). The BIOS of my current MSI
 boards misses many setup options and features.
 
 Fernando

Hahaha :D

I do understand your wife :). Hm, if you should have children, than you
could argue with 'Linux should become more popular, because it's FLOSS,
so knowledge is forwarded for free and to everybody'.
Of course a week argument, if the costs for the gym shoe needed by the
children for school vs a new mobo for you.

There are hardware black/white/grey lists, e.g.
http://www.64studio.com/node/69 ...

but again, I don't trust those lists, they are ok for on Linux distro's
version, but not ok in general.

On then 64 Studio users mailing list some people said that Linux + MSI
hardware should be the best combination, while e.g. some news on German
say that Linux is a PITA,
http://www.pro-linux.de/news/1/13293/rueckgabequote-bei-msi-linux-geraeten-hoeher.html
 for most consumers, e.g. when using MSI-Linux-Netbooks.
The valid argument of the consumers is, that they don't like to learn,
but they wish to have a tool working out of the box.

IMO 'out of the box' for realtime audio using Linux is utopistic. It's
possible if you've good luck, or if you are a bad musician, engineer
unable to notice the week points.
For some reasons we decided to use Linux for making music, so I guess we
need to offer much more time as we would like to offer regarding to
hardware issues etc..

I'm just a user. I guess if you describe your hardware and your issues
more detailed some coders would be able to help you efficient.

Perhaps you should subscribe to LAU,
http://lists.linuxaudio.org/listinfo/linux-audio-user/. Allegedly the
coders subscribed to the Linux audio developers mailing list, should
read and reply to mails at LAU too.

2 Cents, unfortunately not really a help :(,

Ralf




-- 
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: Start 2 functions of apps at same point of time

2010-08-22 Thread Ralf Mardorf
On Sun, 2010-08-22 at 16:35 +0200, Dennis Neumeier wrote: 
  IIUC you aren't asking for sync in general, but you wish to record the
  guitar and after a while Hydrogen should start?
 
 Hm, yes and no: I might use different Hydrogen patterns and they should 
 switch 
 at a certain time in the Ardour recording (eg different Hydrogen patterns for 
 intro and chorus of the song)
 
  So, I'm not an Ardour and Hydrogen user until now, but I'm experienced
  using MIDI and non-MIDI sync.
 
 Oh, I was not using MIDI up to now, so please be patient when I do not 
 understand something at once :)
  
  E.g. make a song with Hydrogen playing nothing for e.g. 10 bars and then
  let Hydrogen play the needed patterns, sync should be done by JACK
  transport.
 
 Ah... There's something lke sync by JACK transport. Sounds like this is 
 something useful for me. But how do I use it? Is there any easy first steps 
 for me?
  
 Greets,
 Dennis
 

I guess Rolf Krüger's reply comes with the information you were asking
for.

Btw. you didn't ask a 'dumb question', you simply asked for something
you didn't know, there's nothing more smart, than to ask, if we are
uncertain. Only stupid people don't ask. I don't like the machismo on
Linux mailing lists, but I like Linux ;).


-- 
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: Start 2 functions of apps at same point of time

2010-08-22 Thread Ralf Mardorf
Hm? It shouldn't be a pain, but just be annoying to change recorded
drums later ;). You could record drums and later mute those drums and
record or just play in sync new drums. I don't know if there is a sync
issue for JACK transport now, but once there was an issue. There was a
delay of one buffer size, that caused a delay that sounds similar to an
early reflection effect, but even if there should be such a delay, I
guess you could give Ardour's tracks an offset.

I did run Rosegarden or Qtractor to play drums by Fluidsynth DSSI, or
Qsynth for Soundfonts or LinuxSampler for GIG files or I used Hydrogen
without it's own sequencer, but as a MIDI sample player. Unfortunately
PC realtime (Windows and Linux) isn't ok when using external MIDI
instruments, because of jitter, internal a PC (Windows and Linux) MIDI
is without jitter.

Avoid USB MIDI and prefer gameport MIDI regarding to issues caused
because of jitter.

A picture of the Delta 66,
http://www.m-audioshop.nl/images/delta6p2.jpg, shows that it comes with
a gameport, perhaps it does support MIDI, you just need a cable
including opto-couplers.
For the 1010 there seems to be a MIDI adaptor part of the product
contents, http://bavasmusic.com.au/store/images/delta_1010_lt.jpg.

If you are from Germany get this adapter
http://cgi.ebay.de/Midikabel-IN-OUT-THRU-Gameport-Verl-3070-/300452789949, if 
not use the search engine and search for something that doesn't cost too much.




-- 
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: Strange Jack behavior

2010-08-22 Thread Ralf Mardorf
On Sun, 2010-08-22 at 20:33 +0300, Jonathan Goodman wrote:
 Hi,   I am experiencing very strange behavior between my system and
 Jack. If I use a web browser, a file browser, or an e-mail client and
 then try to start Jack, Jack will not start. If I use one of these while
 Jack is running, sometimes Jack locks up and sometime the system locks
 up and I am forced to do a hard reboot.   My only guess so far is that
 maybe all of the above applications use Totem/G-streamer to play audio.
 I was thinking that maybe a Jack plugin for G-streamer might solve this,
 but I'm not sure if this is the correct direction to go.   I would still
 like a Jack plugin for G-streamer so that I can audition audio files
 from the file browser while Jack is running, but I can't find any DEBs
 for a Jack plugin and can't get alien to convert an RPM.   Thanks,
 Aaron

This also could be an issue regarding to PulseAudio. At the moment I'm
still using 64 Studio for a production, but ...



-- 
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: Real-time kernel and Nvidia

2010-08-22 Thread Ralf Mardorf
On Sun, 2010-08-22 at 21:01 +0300, Jonathan Goodman wrote:
 Hi,   On a recent update from Synaptic lurid :), I installed 2 realtime
 kernels [Ubuntu 10.04.1 LTS, kernel 2.6.31-11-rt, Ubuntu 10.04.1 LTS,
 kernel 2.6.31-10-rt] . 
 They both gave the following error message on bootup
  but then proceeded to boot with no problem: 
 mount:mounting none on /drive failed:no such device qa34229f8 
 [I think this is the disk id]
The only problem is that with these kernels the graphics went to low
 resolution but worked fine. So I installed the proprietary NVIDIA
 drivers current version. On reboot, when I log in to the desktop,with
 tie real time kernel my system freezes and I have to do a hard reboot
 into the generic kernel.   How can I remove the NVIDIA driver from the
 realtime kernel and how can I get these realtime kernels to work with
 NVIDIA drivers?   Caveat: The proprietary NVIDIA driver in the generic
 kernel improves system performance with audio and there are no longer
 Xruns.   Thank you in advance, Aaron

... I do have issues with the default realtime kernels and NVIDI too and
regarding to non-JACK-audio-apps.

I'll try to fix those issues, when I've done the current production,
using 64 Studio.

Search the mailing list archive (I guess there is one), some days ago
somebody gives me a hint, sorry, I don't have time to search my mails
now.



-- 
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: MIDI-support card needed

2010-08-24 Thread Ralf Mardorf
On Mon, 2010-08-23 at 00:44 +0200, Gerhard Lang wrote:
 
 Am 22.08.2010 19:12, schrieb Dennis Neumeier:
  Hi all,
 
  I am facing a rather problem-before-another-problem-problem before I can
  start to get into MIDI: I am using a M-Audio Delta 66 up to now that does 
  not
  have MIDI-Ports. Now, I was just one step before ordering the Delta 1010LT,
  but it seems that his card does not have any settop-box like the Delta 66.
  Now, I wonder how I connect a normal guitar/bass cable to the 1010LT and
  that's where I see trouble coming up. So any recommandations for soundcards
  would be nice.
 
  Greets,
  Dennis
 
 
 have e a look for an e-mu xmidi2x2, very reasobable price, good 
 reliability. It saved me some alsa, jack and ffado updates ago, when my 
 edirol fa101's own midi ports were not supported and now I like it as an 
 independent additional midi connector
 best regards
 Gerhard

Don't! Avoid USB MIDI, see the LAD archive for ALSA MIDI latency
(jitter) tests. By the way, I've got a Swissonic USB device, the jitter
test was ok, but listening isn't ok, anyway 2 of this, for USB good
devices, does cost less then one Edirol,
http://www.thomann.de/gb/swissonic_midiusb_1x1.htm.

Usually USB MIDI failed even the latency (jitter) test.
Always use a real gameport MIDI or the gameport MIDI supported by PCI
sound cards. One of the two Envy24's MPU (MIDInterfaces) is supported by
the Linux driver, resp. by usually by those cards, any Envy24 card
should be ok. If the sound quality isn't that important, you can get
several PCI cards at Ebay for less money and use them simultan, you only
need for audio, but MIDI, a more expensive sound device.

Run this test: http://github.com/koppi/alsa-midi-latency-test



-- 
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: MIDI-support card needed

2010-08-24 Thread Ralf Mardorf
On Tue, 2010-08-24 at 09:26 +0200, Ralf Mardorf wrote:
 On Mon, 2010-08-23 at 00:44 +0200, Gerhard Lang wrote:
  
  Am 22.08.2010 19:12, schrieb Dennis Neumeier:
   Hi all,
  
   I am facing a rather problem-before-another-problem-problem before I can
   start to get into MIDI: I am using a M-Audio Delta 66 up to now that does 
   not
   have MIDI-Ports. Now, I was just one step before ordering the Delta 
   1010LT,
   but it seems that his card does not have any settop-box like the Delta 66.
   Now, I wonder how I connect a normal guitar/bass cable to the 1010LT and
   that's where I see trouble coming up. So any recommandations for 
   soundcards
   would be nice.
  
   Greets,
   Dennis
  
  
  have e a look for an e-mu xmidi2x2, very reasobable price, good 
  reliability. It saved me some alsa, jack and ffado updates ago, when my 
  edirol fa101's own midi ports were not supported and now I like it as an 
  independent additional midi connector
  best regards
  Gerhard
 
 Don't! Avoid USB MIDI, see the LAD archive for ALSA MIDI latency
 (jitter) tests. By the way, I've got a Swissonic USB device, the jitter
 test was ok, but listening isn't ok, anyway 2 of this, for USB good
 devices, does cost less then one Edirol,
 http://www.thomann.de/gb/swissonic_midiusb_1x1.htm.
 
 Usually USB MIDI failed even the latency (jitter) test.
 Always use a real gameport MIDI or the gameport MIDI supported by PCI
 sound cards. One of the two Envy24's MPU (MIDInterfaces) is supported by
 the Linux driver, resp. by usually by those cards, any Envy24 card
 should be ok. If the sound quality isn't that important, you can get
 several PCI cards at Ebay for less money and use them simultan, you only
 need for audio, but MIDI, a more expensive sound device.
 
 Run this test: http://github.com/koppi/alsa-midi-latency-test

PS: Be aware that for any PC OS you won't get the stable timing quality
for MIDI, as you get using a C64, Atari ST etc. or as there is for stand
alone sequencers from the 80ies. The Linux rt patch, Windows ASIO etc.
aren't for hard real-time. There always will be jitter, perhaps you can
reduce it, until it might be inaudible, regarding to your needs, if you
keep JACK audio buffers small, yes, JACK audio could have influence to
ALSA MIDI :D. Editing rtirq didn't have effect on my machine, anyway it
won't harm to e.g. make an USB MIDI device head of the USB ports, not to
use an USB mouse, keyboard, printer etc. when using MIDI. But again,
prefer gameport MIDI.


-- 
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: MIDI-support card needed

2010-08-24 Thread Ralf Mardorf
On Tue, 2010-08-24 at 10:08 +0200, Ralf Mardorf wrote:
 On Tue, 2010-08-24 at 09:26 +0200, Ralf Mardorf wrote:
  On Mon, 2010-08-23 at 00:44 +0200, Gerhard Lang wrote:
   
   Am 22.08.2010 19:12, schrieb Dennis Neumeier:
Hi all,
   
I am facing a rather problem-before-another-problem-problem before I 
can
start to get into MIDI: I am using a M-Audio Delta 66 up to now that 
does not
have MIDI-Ports. Now, I was just one step before ordering the Delta 
1010LT,
but it seems that his card does not have any settop-box like the Delta 
66.
Now, I wonder how I connect a normal guitar/bass cable to the 1010LT and
that's where I see trouble coming up. So any recommandations for 
soundcards
would be nice.
   
Greets,
Dennis
   
   
   have e a look for an e-mu xmidi2x2, very reasobable price, good 
   reliability. It saved me some alsa, jack and ffado updates ago, when my 
   edirol fa101's own midi ports were not supported and now I like it as an 
   independent additional midi connector
   best regards
   Gerhard
  
  Don't! Avoid USB MIDI, see the LAD archive for ALSA MIDI latency
  (jitter) tests. By the way, I've got a Swissonic USB device, the jitter
  test was ok, but listening isn't ok, anyway 2 of this, for USB good
  devices, does cost less then one Edirol,
  http://www.thomann.de/gb/swissonic_midiusb_1x1.htm.
  
  Usually USB MIDI failed even the latency (jitter) test.
  Always use a real gameport MIDI or the gameport MIDI supported by PCI
  sound cards. One of the two Envy24's MPU (MIDInterfaces) is supported by
  the Linux driver, resp. by usually by those cards, any Envy24 card
  should be ok. If the sound quality isn't that important, you can get
  several PCI cards at Ebay for less money and use them simultan, you only
  need for audio, but MIDI, a more expensive sound device.
  
  Run this test: http://github.com/koppi/alsa-midi-latency-test
 
 PS: Be aware that for any PC OS you won't get the stable timing quality
 for MIDI, as you get using a C64, Atari ST etc. or as there is for stand
 alone sequencers from the 80ies. The Linux rt patch, Windows ASIO etc.
 aren't for hard real-time. There always will be jitter, perhaps you can
 reduce it, until it might be inaudible, regarding to your needs, if you
 keep JACK audio buffers small, yes, JACK audio could have influence to
 ALSA MIDI :D. Editing rtirq didn't have effect on my machine, anyway it
 won't harm to e.g. make an USB MIDI device head of the USB ports, not to
 use an USB mouse, keyboard, printer etc. when using MIDI. But again,
 prefer gameport MIDI.

Sorry, a last PS:

I forgot this ... If available, enable HR Timer (HPET), when using
hardware MIDI. Linux apps still tend to freeze the system when using HR
Timer (HPET), but I'm fine using Qtractor when it's enabled, I just need
to start 'qtractor filename.qtr', because when starting 'qtractor' and
then loading the file, HR Timer (HPET) is captured.


-- 
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: MIDI-support card needed

2010-08-24 Thread Ralf Mardorf
On Tue, 2010-08-24 at 10:20 +0200, Michael wrote:
  
  Don't! Avoid USB MIDI, see the LAD archive for ALSA MIDI latency
  (jitter) tests. By the way, I've got a Swissonic USB device, the jitter
  test was ok, but listening isn't ok, anyway 2 of this, for USB good
  devices, does cost less then one Edirol,
  http://www.thomann.de/gb/swissonic_midiusb_1x1.htm.
 
 This is really out of question to me: I will certainly not use MIDI over USB. 
 I talked to some guys and beside the technical issues of this, there is the 
 question about the intention of a musician using this: Doing real music 
 certainly does not work with MIDI over USB. I know that this opinion may be 
 considered as offensive or something like this, but that´s what I was told 
 but everyone I asked, so I guess, there is truth behind it.
 
 Any other real good sound cards that can be recommended?
 
 Greets,
 Dennis

I don't have the money for a good sound card, hence I can recommend what
sound card not to buy ;).

I've got 2 Terratec EWX 24/96. It's said that the converter AK 4524
should be a good one, so I guess I've got a bad sound quality because
it's analog circuits aren't good. next time I'll use my DAT recorders
and use S/PDIF instead of the analog IOs of those cards.

MIDI by those Envy24 cards is ok, such a card costs around 30,- € at
Ebay. You could get it for MIDI, but you shouldn't buy it for audio,
OTOH, if you don't have money, get it for audio too.



-- 
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: Tethering with iPhone

2010-08-24 Thread Ralf Mardorf
On Tue, 2010-08-24 at 12:35 -0300, Flavio Teixeira Neto wrote:
 How can I tether my UbuntuStudio with IPhone? I've tried a lot of
 scrpts without sucess. 
 
 Thanks, 
 Flavio

I don't have knowledge about this, but IMO it sounds grotesque. I guess
there are other Linux for this kind of usage, but a Distro that ships by
default with a PC desktop environment and real-time audio apps. IMO it
doesn't sound useful to install Ubuntu Studio to an iPhone.

Perhaps this would be a better community for you needs: http://meld.org/

There seems to be a Wiki too: http://www.google.de/search?hl=deq=linux
+distros+for+mobile+phonesaq=faqi=aql=oq=gs_rfai=

Just 2 Cents,

Ralf



-- 
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


AW: No sound without JACK

2010-09-12 Thread Ralf Mardorf
On Tue, 2010-08-17 at 02:00 +0200, Pablo wrote:
 Hi Ralf!
 
 Ralf Mardorf wrote:
 
  1. How should sound be enabled usually for apps without JACK audio support  
  on Ubuntu Studio?
 
  Could there be an issue regarding to PA not loading the needed modules?
  I'm using two Envy24 based Terratec EWX 24/96 PCI sound cards on amd64  
  architecture, on-board sound is disabled.

 Check this:
 
 https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/178442
 
 I did as comment #30 and it worked for me with a m-audio audiophile 2496 
 which also uses the alsa module snd-ice1712. The problem remains in 
 ubuntustudio maverick alpha. See:
 
 http://www.mail-archive.com/ubuntustudio-test...@lists.launchpad.net/msg00351.html

Thank you Pablo, it does solve this issue :).

I wonder what will happen, if I make my 2 Terratec EWX 24/96 cards 1 virtual 
card, anyway, today I just tested to get 1 of the 2 cards ready to work.

I tested analog stereo for KMPLayer set up to use PA and the sound preferences 
were set up to analog stereo output and simultaneous output for both cards, 
while I just tested one of the cards, but the sound was ok :).

Anyway, before this test Movie Player crashed and there are issues for the 
website of a friend, http://achimjaroschek.com/music.html, while sound was ok 
for his YouTube channel, e.g. http://www.youtube.com/watch?v=Mu6uFtCASYc.

This does the trick:

$ cat /usr/share/alsa/cards/ICE1712.conf
#
# Configuration for the ICE1712 (Envy24) chip
#
[snip]
confdir:pcm/front.conf

ICE1712.pcm.front.0 {
@args [ CARD ]
@args.CARD {
type string
}
type route
ttable.0.0 1
ttable.1.1 1
slave.pcm {
type hw
card $CARD
}
 fix PA issue 
slave.format S32_LE
slave.channels 10
##
}
[snip]

Unfortunately there are still many issues and today there are some new issues. 
I don't have those issues with 64 Studio 3.0 beta (Hardy) and 3.3 alpha 
(Karmic) amd64.

I'm still in a production with recordings Achim and I made, so there's no time 
to fix Ubuntu Studio right now. I'm doing the production using 64 Studio 3.3 
alpha and even if the software works without issues, it's still tricky and time 
consuming and there always is the risk of a crash, so I can't use Linux for 
recording Achim and friends or other serious musicians who are short in time, 
only if there's a lot of time, it can be used for post processing. IMO for 
Ubuntu Studio it would help to remove desktop stuff like PA from the distro.

This and next month Achim does some concerts in Germany, 
http://achimjaroschek.com/, certainly I'll be at the concerts in the Ruhrgebiet.

The next 6 month I'll do a job with elementary school kids, but professional 
musicians, it might be that Linux could be more interesting then.

 
 
  2. Does anybody know how to add libflashsupport-jack? Compiling and  
  installing seems to be ok, I guess there's an issue regarding to set up  
  everything correctly.
 I am not sure. I am checking this post and comments:
 
 http://www.linuxmusicians.com/viewtopic.php?f=4t=2323st=0sk=tsd=ahilit=flash+player
 
 Please, let us know if you solve this.

Again, thank you :). If I should have more time, I'll continue and let you know 
what happened.

To be continued

Ralf

 
 Cheers! Pablo
  Cheers!
 
  Ralf
 
  [1]
  
  Ubuntu Studio
 
  $ sudo apt-get update
  $ sudo apt-get install libasound2-dev libjack-dev libsamplerate0-dev  
  libssl-dev build-essential git-core autoconf automake libtool
  $ git clone git://repo.or.cz/libflashsupport-jack.git
  $ cd libflashsupport-jack
  $ sh bootstrap.sh
  $ make
  $ sudo make install
  $ sudo ln -s /usr/lib/libflashsupport.so /usr/lib/firefox-3.6.8/
 
  $ cat /etc/ld.so.conf.d/libc.conf
  # libc default configuration
  /usr/local/lib
 
  # Regarding to libflashsupport I added:
  # If you ever happen to want to link against installed libraries
  # in a given directory, LIBDIR, you must either use libtool, and
  # specify the full pathname of the library
  # [snip] add LIBDIR to `/etc/ld.so.conf'
 
  /usr/lib
  /usr/lib/libflashsupport.so
 
  $ sudo ldconfig

-- 
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


No sound when running JACK - was confused with No sound without, when not running JACK

2010-09-12 Thread Ralf Mardorf
On Sun, 2010-09-12 at 23:54 -0500, Kenneth Koym wrote:

 JACK is running in realtime mode, but you are not allowed to use
 realtime scheduling.
 
 22:31:01.338 JACK was started with PID=2028.
 
 Your system has an audio group, but you are not a member of it.
 
 Please add yourself to the audio group by executing (as root):
 
 usermod -a -G audio (null)

You need to run 'sudo usermod... ' or 'sudo -i' and then 'usermod...'
and IIRC then you need to log out and log in again, perhaps it's written
somewhere, maybe here, didn't read it completely:
http://www.cyberciti.biz/faq/howto-linux-add-user-to-group/. Or start
jackd without realtime mode, run 'jackd --help', for older versions you
need to drop the '-R' switch, but for the current version you need a
switch to disable realtime mode.

- Ralf


-- 
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: Muse

2010-09-13 Thread Ralf Mardorf
On Mon, 2010-09-13 at 13:09 +0200, Vincent Jousse wrote:
 Le 13/09/2010 12:58, Ralf Mardorf a écrit :
  On Mon, 2010-09-13 at 12:31 +0200, Vincent Jousse wrote:
 
  Hi All,
 
  I'm a Muse (http://www.muse-sequencer.org) user and I use some VSTi
  instruments thanks to DSSI-VST. But to have all this working, I need to
  compile Muse with enable-dssi and enable-osc options.
  I would like to know who makes the versions we can find in the ubuntu
  repository ?
  My goal is to use the ubuntu repository version instead of compiling my
  own version.
  Do you think it is possible to have these option activated for next
  release ?
 
  Vincent
   
  I'm not the person you are asking for, but note that VST support needs
  the free open source, but proprietary Steinberg headers. There are Linux
  headers too, but AFAIK Steinberg headers are still needed for a lot of
  VSTs. I guess you need to compile it yourself.
 
  Ralf
 
 
 
 
 I just want to have DSSI support in Muse, I can manage everything else.
 
 Vincent

Pardon, I did misunderstand you. Is Muse provided by the Ubuntu
repositories  version 1?
'The MusE sequencer added full DSSI support with version 1.0.'
http://dssi.sourceforge.net/

I always had bad luck with Muse, tried to use it, because I'm not fine
with Rosegarden, but Muse never worked, so I'm using Qtractor.



-- 
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: Muse

2010-09-13 Thread Ralf Mardorf
On Mon, 2010-09-13 at 13:58 +0200, Vincent Jousse wrote:
 Le 13/09/2010 13:17, Ralf Mardorf a écrit :
  On Mon, 2010-09-13 at 13:09 +0200, Vincent Jousse wrote:
 
  Le 13/09/2010 12:58, Ralf Mardorf a écrit :
   
  On Mon, 2010-09-13 at 12:31 +0200, Vincent Jousse wrote:
 
 
  Hi All,
 
  I'm a Muse (http://www.muse-sequencer.org) user and I use some VSTi
  instruments thanks to DSSI-VST. But to have all this working, I need to
  compile Muse with enable-dssi and enable-osc options.
  I would like to know who makes the versions we can find in the ubuntu
  repository ?
  My goal is to use the ubuntu repository version instead of compiling my
  own version.
  Do you think it is possible to have these option activated for next
  release ?
 
  Vincent
 
   
  I'm not the person you are asking for, but note that VST support needs
  the free open source, but proprietary Steinberg headers. There are Linux
  headers too, but AFAIK Steinberg headers are still needed for a lot of
  VSTs. I guess you need to compile it yourself.
 
  Ralf
 
 
 
 
 
  I just want to have DSSI support in Muse, I can manage everything else.
 
  Vincent
   
  Pardon, I did misunderstand you. Is Muse provided by the Ubuntu
  repositories  version 1?
  'The MusE sequencer added full DSSI support with version 1.0.'
  http://dssi.sourceforge.net/
 
  I always had bad luck with Muse, tried to use it, because I'm not fine
  with Rosegarden, but Muse never worked, so I'm using Qtractor.
 
 
 
 
 The version provided by the Ubuntu repositories (1.0.1) would have DSSI 
 support only if enable-dssi and enable-osc options had been used at 
 compiling !
 Sorry for my poor English !!
 So the question is: who compiles software for Ubuntu repositories ?

If you run Synaptic and take a look to the properties for the package
muse, there might be the email address of the package maintainer.


-- 
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: No sound without JACK

2010-09-13 Thread Ralf Mardorf
On Tue, 2010-08-17 at 02:00 +0200, Pablo wrote:
 Hi Ralf!
 
 Ralf Mardorf wrote:
 
  1. How should sound be enabled usually for apps without JACK audio support  
  on Ubuntu Studio?
 
  Could there be an issue regarding to PA not loading the needed modules?
  I'm using two Envy24 based Terratec EWX 24/96 PCI sound cards on amd64  
  architecture, on-board sound is disabled.

 Check this:
 
 https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/178442
 
 I did as comment #30 and it worked for me with a m-audio audiophile 2496 
 which also uses the alsa module snd-ice1712. The problem remains in 
 ubuntustudio maverick alpha. See:
 
 http://www.mail-archive.com/ubuntustudio-test...@lists.launchpad.net/msg00351.html

I had the same issue with Suse 11.2 and I could solve it by adding those
two lines for Suse 11.2 too.

@ Pablo: Thank you, thank you, thank you Pablo :)

@ anybody who is pro PA: PA for rt audio users is a PITA. It might have
advantages for the averaged desktop user, but we should get rid of it
for rt audio distros.

As I told before, until now I prefer 64 Studio, it's based on Ubuntu,
but ships without PA by default, hence using flashplayer without JACK
support and JACK at the same time is no problem. While Suse isn't
important for me, Ubuntu Studio is very interesting for my needs. There
might be reasons to come with PA by default, but if so, the distro
should take care of those two lines
in /usr/share/alsa/cards/ICE1712.conf.

I wonder if it's easy to get rid of PA, when building dummy packages by
equivs, to keep package dependencies consistent and what needs to be set
up in addition?!

Man, Envy24 cards are very common, because they are the most cheap rt
capable cards, no distro should have issues when using those cards.
Btw. there will come a successor for envy24control soon, maybe there
already is a successor, I didn't lurk LAD the last weeks. For Suse only
I'm running the first version + a manual edit of it's successor and it's
still named envy24control, but AFAIR the renamed it.

Cheers!

Ralf


-- 
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


envy24control/mudita24

2010-09-14 Thread Ralf Mardorf
http:// mudita24.googlecode.com

Please notice that there is a successor for envy24control. Nils and Tim
did a good job.

I didn't compile the current version myself, but I added the first
overworks.

Please compile and test their current version. I'll do it too.

Cheers,

Ralf





-- 
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: [64studio-devel] envy24control/mudita24

2010-09-14 Thread Ralf Mardorf
On Tue, 2010-09-14 at 12:07 +0100, Daniel James wrote:
 Hi Ralf,
 
  http:// mudita24.googlecode.com
  
  Please notice that there is a successor for envy24control. Nils and Tim
  did a good job.
 
 Yes, it's encouraging to see that the tools continue to improve, even
 for hardware that might be ten years old and no longer sold. That
 doesn't happen on Windows :-)
 
 Cheers!
 
 Daniel

Next month I start a permanent position and I'm thinking of buying a
much better sound card. Anyway, you're mistaken, Envy24 cards are still
sold in Germany and some cards should be much better, but my two
Terratec EWX 24/96.

Even if it's easy to compile mudita24, it would be nice, if 64 Studio
would add mudita to the repositories, perhaps you should wait until 1.04
is released.

Cheers!

Ralf



-- 
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: [64studio-devel] envy24control/mudita24

2010-09-15 Thread Ralf Mardorf
On Wed, 2010-09-15 at 11:27 +0300, Asmo Koskinen wrote:
 My Ubuntu Studio for daily use is 9.10 (x86_64), I have Delta 66.
 
 
 Delta 66 works (again) with Ubuntu 10.10 Beta (i686) with this fix.
 
 https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/178442/comments/30
 
 I have tested Alessio's latest kernel, jackd and Ardour. So far so good.
 
 Linux ubuntu 2.6.35-20-lowlatency #29-Ubuntu SMP PREEMPT Mon Sep 6 
 09:50:08 UTC 2010 i686 GNU/Linux
 
 I tested today Mudita24 - great job!
 
 sudo apt-get update
 sudo apt-get dist-upgrade
 sudo apt-get build-dep alsa-tools-gui
 tar zxvf mudita24-1.0.3.tar.gz
 ./configure
 make
 sudo make install
 
 Screenshots with Ubuntu Studio 10.10 Beta theme.
 
 http://www.arkki.info/howto/Ubuntu_Studio_Testing/Mudita24/
 
 
 I think I can take Ubuntu Studio 10.10 (x86_64) for daily use next 
 month. Great job Ubuntu Studio!
 
 Best Regards Asmo Koskinen.

Hi :)

when Niels and Tim started to program, there was an issue for the CPU
usage, the newer version sometimes did stress the CPU more than the old
Envy24control.

I've got a cold and don't like to compile the current version right now,
I'll compile it within the next days and test it then.

For the first overwork I did compile and compare the versions.

Some time ago, for the first overwork, I switched several times
between /usr/bin/envy24control and /usr/local/bin/envy24control and
watched both CPUs by htop.

I dunno if the current version still is called envy24control, I guess
you do know how it's called.

If you've got the time to test it, please run top, atop, htop or what
ever you prefer and compare the CPU usage when using the GUI.

The old version should be in /usr/bin and because you didn't compile
with prefix, the new version should be in /usr/local/bin.

If there should be issues, you might want to report it to the list and
Niels Mayer nielsma...@gmail.com.

It's nice that they overworked Envy24control :).

Thank you for compiling and testing it.

- Ralf



-- 
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: [64studio-devel] envy24control/mudita24

2010-09-15 Thread Ralf Mardorf
On Wed, 2010-09-15 at 12:16 +0300, Asmo Koskinen wrote:
 15.09.2010 12:07, Ralf Mardorf kirjoitti:
 
  If you've got the time to test it, please run top, atop, htop or what
  ever you prefer and compare the CPU usage when using the GUI.
 
  The old version should be in /usr/bin and because you didn't compile
  with prefix, the new version should be in /usr/local/bin.
 
  If there should be issues, you might want to report it to the list and
  Niels Mayernielsma...@gmail.com.
 
 I try that later in this week.

Hi Asmo :)

I'll do it later in this week too and btw. I guess it's not really
important if the CPU usage should be higher than it was for the old
Envy24control, because I guess most people, me too, don't use the faders
real-time, but just to level before record or play.

Resume: You wrote I tested today Mudita24 - great job! I believe they
did a good job. I'm running an older overworked version were the CPU is
stressed much more, but anyway this isn't a problem for me.

Sometimes I'm not fine with Linux, but it's really a highlight of Linux,
that oldish stuff still is supported :). Because of this and some other
reasons I like to have Linux only running on my PC, but I need to run
several distros, because I didn't found the distro that gives me all I
need.

- Ralf


-- 
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


Can't boot after kernel upgrade

2010-09-17 Thread Ralf Mardorf
Hi :)

I made a kernel upgrade from 2.6.32-24-preempt #39-Ubuntu to #4x-Ubuntu,
AFAIR it's 42.

It's nearly a default Ubuntu Studio without the needed kernel-rt,
because I wasn't able to get a kernel-rt that's bootable for Ubuntu
Studio on my machine.

There's just one relevant change, that wasn't a problem until now and
that doesn't seem to be the reason for the issue I've got now:
--- --- --- ---
suse11-2:/home/spinymouse11.2 #
cat /media/ubuntu_studio/usr/sbin/update-grub
#!/bin/sh -e
exec grub-mkconfig -o /boot/grub/grub.cfg_$(date +%b-%d-%Y_%H-%M-%S)
$@
--- --- --- ---

I kept my manually edited menu entrie, the first one, while the second
one is the latest generated grub.cfg_$(date +%b-%d-%Y_%H-%M-%S).

menuentry 'Ubuntu Studio 10.04, Kernel 2.6.32-24-preempt' --class ubuntu
--class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd1,11)'
search --no-floppy --fs-uuid --set 54b5bb8c-356a-4268-8592-e76aac7941a8
linux   /boot/vmlinuz-2.6.32-24-preempt
root=UUID=54b5bb8c-356a-4268-8592-e76aac7941a8 ro   #quiet
initrd  /boot/initrd.img-2.6.32-24-preempt
}

menuentry 'Ubuntu, with Linux 2.6.32-24-preempt' --class ubuntu --class
gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd1,11)'
search --no-floppy --fs-uuid --set 54b5bb8c-356a-4268-8592-e76aac7941a8
linux   /boot/vmlinuz-2.6.32-24-preempt
root=UUID=54b5bb8c-356a-4268-8592-e76aac7941a8 ro   quiet splash
initrd  /boot/initrd.img-2.6.32-24-preempt
}

I can't boot, but get a message that

/dev/disk/by-uuid/54b5bb8c-356a-4268-8592-e76aac7941a8 does not exist

Is there something different for Ubuntu Studio compared to other Ubuntus
regarding to those kernel problems?

My all day Linux are Hardy (64 Studio 3.0 beta) and Karmic (64 Studio
3.3 alpha) were self compiled kernel-rt and 64 Studio kernel-rt are ok.

Obviously /dev/disk/by-uuid/54b5bb8c-356a-4268-8592-e76aac7941a8 still
does exist and is readable ;).

I tried to go on with fixing some issues and building mudita24, but get
an additional issue :S.

Any help is welcome.

Cheers!

Ralf


-- 
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


PS: Can't boot after kernel upgrade

2010-09-17 Thread Ralf Mardorf
On Fri, 2010-09-17 at 15:58 +0200, I wrote:
 Hi :)
 
 I made a kernel upgrade from 2.6.32-24-preempt #39-Ubuntu to #4x-Ubuntu,
 AFAIR it's 42.
 
 It's nearly a default Ubuntu Studio without the needed kernel-rt,
 because I wasn't able to get a kernel-rt that's bootable for Ubuntu
 Studio on my machine.
 
 There's just one relevant change, that wasn't a problem until now and
 that doesn't seem to be the reason for the issue I've got now:
 --- --- --- ---
 suse11-2:/home/spinymouse11.2 #
 cat /media/ubuntu_studio/usr/sbin/update-grub
 #!/bin/sh -e
 exec grub-mkconfig -o /boot/grub/grub.cfg_$(date +%b-%d-%Y_%H-%M-%S)
 $@
 --- --- --- ---
 
 I kept my manually edited menu entry, the first one, while the second
 one is the latest generated grub.cfg_$(date +%b-%d-%Y_%H-%M-%S).
 
 menuentry 'Ubuntu Studio 10.04, Kernel 2.6.32-24-preempt' --class ubuntu
 --class gnu-linux --class gnu --class os {
   recordfail
   insmod ext2
   set root='(hd1,11)'
   search --no-floppy --fs-uuid --set 54b5bb8c-356a-4268-8592-e76aac7941a8
   linux   /boot/vmlinuz-2.6.32-24-preempt
 root=UUID=54b5bb8c-356a-4268-8592-e76aac7941a8 ro   #quiet
   initrd  /boot/initrd.img-2.6.32-24-preempt
 }
 
 menuentry 'Ubuntu, with Linux 2.6.32-24-preempt' --class ubuntu --class
 gnu-linux --class gnu --class os {
   recordfail
   insmod ext2
   set root='(hd1,11)'
   search --no-floppy --fs-uuid --set 54b5bb8c-356a-4268-8592-e76aac7941a8
   linux   /boot/vmlinuz-2.6.32-24-preempt
 root=UUID=54b5bb8c-356a-4268-8592-e76aac7941a8 ro   quiet splash
   initrd  /boot/initrd.img-2.6.32-24-preempt
 }
 
 I can't boot, but get a message that
 
 /dev/disk/by-uuid/54b5bb8c-356a-4268-8592-e76aac7941a8 does not exist
 
 Is there something different for Ubuntu Studio compared to other Ubuntus
 regarding to those kernel problems?
 
 My all day Linux are Hardy (64 Studio 3.0 beta) and Karmic (64 Studio
 3.3 alpha) were self compiled kernel-rt and 64 Studio kernel-rt are ok.
 
 Obviously /dev/disk/by-uuid/54b5bb8c-356a-4268-8592-e76aac7941a8 still
 does exist and is readable ;).
 
 I tried to go on with fixing some issues and building mudita24, but get
 an additional issue :S.
 
 Any help is welcome.
 
 Cheers!
 
 Ralf

PS:

I still can boot Ubuntu Studio kernel 2.6.32-23-preempt and I do have a
backup for Ubuntu Studio with an older 2.6.32-24-preempt, but I won't
restore this backup, because I installed some apps, fixed Ubuntu Studio,
so that PA is fine with my Envy24 card etc., but it might help to get
the current 2.6.32-24-preempt version running?!


-- 
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: Few notes about video programs in 10.10 Beta

2010-09-25 Thread Ralf Mardorf
On Sat, 2010-09-25 at 10:53 +0300, Asmo Koskinen wrote: 
 Few notes about video programs. This is 10.10 i386 Beta 
 (updatedupgraded). Alessio's low latency kernel, NVidia GeForce 9500 GT 
 and M-Audio Delta 66 sound card.
 
 You know, in this area you really need PPA or source version.
 
 
 Kdenlive PPA - OK
 
 https://launchpad.net/~sunab/+archive/kdenlive-release
 
 Openshot PPA - OK
 
 https://launchpad.net/~jonoomph/+archive/openshot-edge?field.series_filter=maverick
 
 
 CinelerraCV SOURCE - OK
 
 http://cinelerra.org/devcorner.php
 
 Few screen shots and example file.
 
 http://arkki.info/howto/Cinelerra/CV2.1/
 
 
 Flumotion SOURCE - OK
 
 http://www.flumotion.net/download/
 
 Few screen shots, web camera and fw camera.
 
 http://arkki.info/howto/Flumotion/0.8.0
 
 
 Yes, I really like 10.10 - so far so good.
 
 Best Regards Asmo Koskinen.

IMO Cinelerra is the best app to cut videos, but some people might
prefer Kino, that is used by some professional German broadcast.

FWIW, for quick editing with low expectations I like Avidemux, wich
replaced Kmenc15 for me.

An issue for musicians might be compatibility with JACK transport.
Dunno, but xjadeo might give this as a player and I'm not up to date,
but for editing it might be open movie editor and perhaps kdenlive now
too.

+ 2 cents

Ralf


-- 
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: Few notes about video programs in 10.10 Beta

2010-09-27 Thread Ralf Mardorf
On Sat, 2010-09-25 at 17:20 -0500, Kenneth Koym wrote:
 I currently have no video on my Studio nor sound

Did you install the audio/video container codecs?

Install the video codecs: 
sudo apt-get install gstreamer0.10-plugins-good
gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse
gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse ffmpeg

If you use the Medibuntu repository, you can add other codecs, and
encrypted DVD support to Ubuntu: 
sudo apt-get install non-free-codecs libdvdcss2

See Unofficial Backports section below for more information. Resp.
read

https://help.ubuntu.com/community/UbuntuStudioPreparation#Effect
Plugins, Instruments and Codecs

, I didn't read it myself, I just take a look at the codec section, IMO
there are a lot of codecs missing, but I might be wrong and they might
be part of the non-free-codecs or they are already included to Ubuntu
Studio (right now I'm booted to another Linux, so I'm unable to check
this).

Regarding to the no sound issue, could you please run jackd or qjackctl
and an application using jack? I wonder if you might have an issue with
pulseaudio, but if you run jack sound perhaps is ok.

Please install 'hwinfo' and run

sudo hwinfo --sound  hwinfo_sound.txt

then post the output to the 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: GUI won't start after updates

2010-09-29 Thread Ralf Mardorf
2 cents regarding to the style how to quote when replying to a mailing
list.

Please prefer the bottom-posting style, which includes the interleaved
reply style.

I never read the Wiki myself and I guess it's not too important to take
care of all the rules, but the bottom-posting style,
http://en.wikipedia.org/wiki/Posting_style .

Anyway, a time ago I had an issue that I couldn't boot into an upgraded
kernel version, hence I booted an older kernel and after a while, there
was another upgrade for the broken, upgraded kernel, that again was ok.

As somebody or some people mentioned before, try to boot an older
kernel, resp. run

uname -a

and run

ls /boot

and post it to the list and write if all kernels listed in /boot are
available for the GRUB menu.

Cheers!

Ralf


-- 
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: Natty and RT Kernel (was Maverick and RT)

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 08:19 +0200, Alessio Igor Bogani wrote:
 Hi Ronan,
 
 2010/9/30 Ronan Jouchet ro...@jouchet.fr:
 [...]
  latencies I reached with no xruns during a 10min rakarrack session on my
  test laptop (Dell Vostro V13 with a TI firewire card):
  -generic: 16ms
  -lowlatency: 4ms (@2ms: tons of xruns)
  -realtime: 4ms (@2ms: many xruns)
 
  To put it simply: -lowlatency all the way! It delivers impressive
  results for maintenance requirements way lower than -realtime (or -rt
  even more), meaning less work for maintainers and new kernel candy for
  users.
 [...]
  A few diehard performance fans may appreciate a PPA with -rt, but if
  there must be one sustainable and supported priority, it is -lowlatency.
 
 At least at the end someone have noticed it! :-)
 
 Ciao,
 Alessio

That's bad reasoning. Just because an app isn't ok, when using a
kernel-rt, low latency without rt isn't the better solution.
Independently, did you ensure that the kernel-rt runs with CPU frequency
scaling set up to performance? And did you test what will happen, if you
don't use rakarrack, but a heavy audio and MIDI set up? Did you compare
JACK1 and JACK2? Etc.?
Especially for external MIDI devices the so called Linux rt is far away
from hard rt.
Resume, even when using a kernel-rt, Linux is far away from hard rt, we
do need support of the kernel-rt for multimedia work and all the apps,
that do cause issues, when using a kernel-rt, need rework.

- Ralf


-- 
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: Natty and RT Kernel (was Maverick and RT)

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 09:05 +0200, Alessio Igor Bogani wrote:
 Ralf,
 
 2010/9/30 Ralf Mardorf ralf.mard...@alice-dsl.net:
 [...]
  That's bad reasoning. Just because an app isn't ok, when using a
  kernel-rt, low latency without rt isn't the better solution.
  Independently, did you ensure that the kernel-rt runs with CPU frequency
  scaling set up to performance? And did you test what will happen, if you
  don't use rakarrack, but a heavy audio and MIDI set up? Did you compare
  JACK1 and JACK2? Etc.?
  Especially for external MIDI devices the so called Linux rt is far away
  from hard rt.
  Resume, even when using a kernel-rt, Linux is far away from hard rt, we
  do need support of the kernel-rt for multimedia work and all the apps,
  that do cause issues, when using a kernel-rt, need rework.
 
 Sorry but my understanding of English is very limited.
 Could you explain your thoughts in a more simple manner?
 Thanks.
 
 Ciao,
 Alessio

Hi Alessio :)

my English is terrible broken too :D.

I experienced the real-time kernels as the only valid kernels for audio
and MIDI recordings.

Anyway, when using a real-time kernel the set up needs some tuning and I
always have problems with this tuning.

First of all, on-demand for the CPU frequency scaling vs performance

cat config-[...] | grep CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE

should be set up to 'y'.

I experienced that Rui's rtirq script doesn't have much impact, but it
anyway should be included.

On some machines JACK1 seem to work better and on other machines JACK2.

A big problem is MIDI, when controlling stand alone devices, then jitter
very often is an issue.

If we run uname -a and the kernel is just a

PREEMPT

but a

PREEMPT RT

'things' are more worse. IMO we only do need 'real' real-time kernels.

We can't get hard real-time for modern PCs. Hard real-time only is
possible when directly talking to the hardware, as it is done e.g. by
the C64 on Assembler ...

ask the UART if there's a byte ...

LDA the register
LSR
BCC to LDA

turn of the IRQ!!! ...

SEI

...

I'm unable to program for Linux, but for sure nor Linux, neither Windows
is able to do this kind of hard real-time, e.g. to turn of all IRQs.

The Linux folks who program the kernel-rt patches try to get as near as
possible to the oldish hard real-time programming, any other kernel, but
rt patched kernels aren't usable for music productions.

Some applications might not use JACK in the best way, so they could
cause xruns etc..

I'm really not the right person to teach this stuff, because I don't
have the needed knowledge myself, but for sure Paul Davis won't
recommend to run JACK and Ardour without a kernel-rt.

We don't need latest Desktop candy supported by generic kernels, but
well tuned disros + kernel-rt, to get a good audio workstation.

Cheers!

Ralf




-- 
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: Natty and RT Kernel (was Maverick and RT)

2010-09-30 Thread Ralf Mardorf
You were asking for people using Ubuntu + Kernel-rt.

I'm using 64 Studio 3.0 (Hardy) and 3.3 (Karmic) with the 64 Studio's
multimedia kernel, which is a kernel-rt and several self build kernel-rt
(vanilla + patch).

Regarding to different distros based on Ubuntu vs all developers just to
work on Ubuntu Studio:

For example it's possible to add the 64 Studio repository to Ubuntu
Studio, assumed they are based on the same version of Ubuntu (Karmic,
Lucid etc.).

I don't think that there are distros hat do use JACK as the sound
server, but e.g. 64 Studio ships without PulseAudio, so all consumer
desktop apps do use ALSA directly, which is an advantage for users who
need JACK for audio apps, because without PulseAudio there's no pain for
flashplayer etc., vene whe  JACK is needed for Ardour, Qtractor or what
app ever.

And again a kernel-rt for Linux or ASIO for Windows does no hard
real-time, it's still a soft kind of real-time, so anything less, but a
kernel-rt IMO isn't good for a multimedia distro.

I would like to see Ubuntu Studio supporting the kernel-rt.

- Ralf


-- 
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: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 07:35 -0400, Ronan Jouchet wrote:
 Hello everybody,
 
 Many are confused about the various realtime kernels, so here is a 
 reminder of the situation as of Sept. 2010 (but _please_ see 
 https://help.ubuntu.com/community/UbuntuStudio/RealTimeKernel , which is 
 more detailed and continuously updated).
 
 ***Summary***
 vanilla = unpatched kernel straight from kernel.org
 generic = vanilla + ubuntu sauce (it's the default ubuntu kernel)
 
 The *soft realtime kernels, prepared by changing build-time parameters*
  preempt = generic + mild configuration to reduce latency
  lowlatency = generic + aggressive configuration to reduce latency
 
 The *hard realtime kernels, prepared by applying a big patch* from Ingo 
 Molnar to the kernel source before building:
  realtime = vanilla + patch (hard to maintain and stabilize because 
 merging 2 pieces of code is never easy)
  rt = generic + patch (even harder to maintain and stabilize because 
 merging 3 pieces of code is harder than 2)
 
 ***Availability***
 - for Maverick, generic will be the only kernel in the archives, thus 
 the default kernel for ubuntu and ubuntustudio, but Alessio has been 
 maintaining a PPA providing lowlatency and realtime
 - for Natty or later: work is being done to include lowlatency in the 
 official archives and make it the default ubuntustudio kernel
 
 I hope this clears some doubts. By the way, this confusion is only going 
 to get more intense at release time (less informed / technical users). 
 Could we include some kind of note informing users about this? Why not a 
 RealTime kernel help item in the Audio Production menu, redirecting to 
 the wiki page?
 
 Good day,
 
 -- Ronan Jouchet

For what do multimedia users (producers, but consumers) need more, but
vanilla + rt-patch? Does somebody run a multi-user data server on the
same machine, as he is using in his audio or audio-video studio? This
would be nonsense.

2 cents,
Ralf


-- 
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: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 16:38 +0200, Ralf Mardorf wrote:
 On Thu, 2010-09-30 at 07:35 -0400, Ronan Jouchet wrote:
  Hello everybody,
  
  Many are confused about the various realtime kernels, so here is a 
  reminder of the situation as of Sept. 2010 (but _please_ see 
  https://help.ubuntu.com/community/UbuntuStudio/RealTimeKernel , which is 
  more detailed and continuously updated).
  
  ***Summary***
  vanilla = unpatched kernel straight from kernel.org
  generic = vanilla + ubuntu sauce (it's the default ubuntu kernel)
  
  The *soft realtime kernels, prepared by changing build-time parameters*
   preempt = generic + mild configuration to reduce latency
   lowlatency = generic + aggressive configuration to reduce latency
  
  The *hard realtime kernels, prepared by applying a big patch* from Ingo 
  Molnar to the kernel source before building:
   realtime = vanilla + patch (hard to maintain and stabilize because 
  merging 2 pieces of code is never easy)
   rt = generic + patch (even harder to maintain and stabilize because 
  merging 3 pieces of code is harder than 2)
  
  ***Availability***
  - for Maverick, generic will be the only kernel in the archives, thus 
  the default kernel for ubuntu and ubuntustudio, but Alessio has been 
  maintaining a PPA providing lowlatency and realtime
  - for Natty or later: work is being done to include lowlatency in the 
  official archives and make it the default ubuntustudio kernel
  
  I hope this clears some doubts. By the way, this confusion is only going 
  to get more intense at release time (less informed / technical users). 
  Could we include some kind of note informing users about this? Why not a 
  RealTime kernel help item in the Audio Production menu, redirecting to 
  the wiki page?
  
  Good day,
  
  -- Ronan Jouchet
 
 For what do multimedia users (producers, but consumers) need more, but
 vanilla + rt-patch? Does somebody run a multi-user data server on the
 same machine, as he is using in his audio or audio-video studio? This
 would be nonsense.
 
 2 cents,
 Ralf

PS: Ok, on 32-bit architecture some might need support for large RAM in
addition, this might be an additional patch, hat's not needed on 64-bit
architecture.


-- 
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: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
Hi Ricardo :)

sorry for my broken English, especially at the moment, because I do have
an influenza.

On Thu, 2010-09-30 at 16:18 +0100, Ricardo Lameiro wrote:
 Hi Ralf, 
 
 I didn't understood what did you meant with:
  For what do multimedia users (producers, but consumers) need more,
 but
  vanilla + rt-patch? Does somebody run a multi-user data server on
 the
  same machine, as he is using in his audio or audio-video studio?
 This
  would be nonsense.
 
 What would be nonsense? audio producers using hard RT preemption on
 the kernel?
 Do you think that a webserver needs more Realtime preemption than
 audio work?

No, I guess for audio and audio-video productions we only need a vanilla
+ rt-patch kernel and nothing more.

Nobody should run a web-server or anything else on a DAW, so there are
no other kernel patches needed.

I'm pro PREEMPT RT and against PREEMPT only ;) or any kernel patches
that don't make sense for audio, audio-video productions.

I was asking for reasons to patch a kernel with something like a
'generic'-patch. A DAW, resp. audio-video-MIDI workstation don't need a
special server-kernel, or desktop-kernel etc., just a vanilla kernel +
rt-patch.

Why does Ubuntu Studio comes without PREEMPT RT, but just PREEMPT?!
This is my intension.

FWIW, I'm a professional audio and video engineer and did program oldish
computers and I'm missing hard real-time for modern PCs. Even the
kernel-rt isn't able to do hard real-time, so I don't understand why
Ubuntu Studio does prefer a kernel without rt-patch. Today the rt-patch
isn't good enough and any kernel without this patch is useless for
multimedia production.

So a misunderstanding ;)!

 
 As I see, If a webserver used a RT kernel, it would have a lot of
 problems, because it will probably lock in some tasks until they are
 finished.
 
 Audio needs a very low latency, high resolution timer etc, because the
 Interrupts given by sound cards and by audio software need to be
 addressed as fast as possible,

This is what I'm thinking off, I sometimes use the hr timer, that on
Linux still is a PITA on some machines and for some apps.

Anyway, if possible a multimedia distro should use hr timer (HPET), but
always a kernel-rt only.

  if they arent, what happens is that the audio buffers, either for the
 souncard playback, or capture will run out of data, and then the
 continuos steam of audio data will be over, and wait until receive
 more info. In a Nutshell, you LOSE audio data, and you will never get
 it back, for professional audio that is unacceptable. Also if You give
 software RT priorities, it less possible that, for instance, Ardour is
 left behind of a twitter client unaceptable to...
 
 I am going to make some simple math with a not so professional cenario
 to ilstrate just the data stream, not audo software CPU time.
 
 
 Recording and monitoring out 8 channels (8 in 8 out) at 48KS/s at 24
 bits
 
 48000 * 24 = 115200 bps = 14.0625KB/s
 
 14.0625 * 16 = 225 KB/s = 1.76MB/s
 
 Well, 1.76 MB/s is not to much really, well this calc is simple
 cenario, provided that the sound card uses real 24 bit audio data
 stream, if it used 32 bit, welll do the math.
 
 Now to a PRO setup.. 192 KS/s @ 24bits
 
 192000 * 24 = 4608000 = 0.55 MB/s
 
 0.55 * 16  = 8,78 MB/s
 
 8.78 MBytes per second, not mbits, FIrewire is rated at 400 MBit per
 second... USB in practice is a lot less + Communication overhead.
 
 This is only on the Audio tranfer side, then you need to send this
 streams from each different software, make dsp calculations for
 Amplitude (volume) or mixing. This takes time so YES a Real time
 kernels is better for audio users than for normal users. Specially if
 you use Externals Firewire/USB card with high outputs
 
 note: this are simple calculations made fast, just to demonstrate the
 kind of stream we talk about. I assumed 24 bits, this is very rare,
 usually it goes with 32 bit, that is a lot more data to transfer.
 
 If some more explanation on why a RT kernel is prefered for audio, i
 can try to answer some more questions, i am not a pro in this tough.
 
 Ricardo Lameiro
 
 2010/9/30 Ralf Mardorf ralf.mard...@alice-dsl.net
 
 On Thu, 2010-09-30 at 16:38 +0200, Ralf Mardorf wrote:
  On Thu, 2010-09-30 at 07:35 -0400, Ronan Jouchet wrote:
   Hello everybody,
  
   Many are confused about the various realtime kernels, so
 here is a
   reminder of the situation as of Sept. 2010 (but _please_
 see
  
 https://help.ubuntu.com/community/UbuntuStudio/RealTimeKernel , which 
 is
   more detailed and continuously updated).
  
   ***Summary***
   vanilla = unpatched kernel straight from kernel.org
   generic = vanilla + ubuntu sauce (it's the default ubuntu
 kernel)
  
   The *soft realtime kernels, prepared by changing
 build-time parameters*
preempt = generic + mild

Re: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 17:45 +0200, Ralf Mardorf wrote:
 Hi Ricardo :)
 
 sorry for my broken English, especially at the moment, because I do have
 an influenza.
 
 On Thu, 2010-09-30 at 16:18 +0100, Ricardo Lameiro wrote:
  Hi Ralf, 
  
  I didn't understood what did you meant with:
   For what do multimedia users (producers, but consumers) need more,
  but
   vanilla + rt-patch? Does somebody run a multi-user data server on
  the
   same machine, as he is using in his audio or audio-video studio?
  This
   would be nonsense.
  
  What would be nonsense? audio producers using hard RT preemption on
  the kernel?
  Do you think that a webserver needs more Realtime preemption than
  audio work?
 
 No, I guess for audio and audio-video productions we only need a vanilla
 + rt-patch kernel and nothing more.
 
 Nobody should run a web-server or anything else on a DAW, so there are
 no other kernel patches needed.
 
 I'm pro PREEMPT RT and against PREEMPT only ;) or any kernel patches
 that don't make sense for audio, audio-video productions.
 
 I was asking for reasons to patch a kernel with something like a
 'generic'-patch. A DAW, resp. audio-video-MIDI workstation don't need a
 special server-kernel, or desktop-kernel etc., just a vanilla kernel +
 rt-patch.
 
 Why does Ubuntu Studio comes without PREEMPT RT, but just PREEMPT?!
 This is my intension.
 
 FWIW, I'm a professional audio and video engineer and did program oldish
 computers and I'm missing hard real-time for modern PCs. Even the
 kernel-rt isn't able to do hard real-time, so I don't understand why
 Ubuntu Studio does prefer a kernel without rt-patch. Today the rt-patch
 isn't good enough

PS:

Pardon, it isn't good enough for all needs, but good for a lot of needs,
hence we should use the rt-patch.

 and any kernel without this patch is useless for
 multimedia production.
 
 So a misunderstanding ;)!
 
  
  As I see, If a webserver used a RT kernel, it would have a lot of
  problems, because it will probably lock in some tasks until they are
  finished.
  
  Audio needs a very low latency, high resolution timer etc, because the
  Interrupts given by sound cards and by audio software need to be
  addressed as fast as possible,
 
 This is what I'm thinking off, I sometimes use the hr timer, that on
 Linux still is a PITA on some machines and for some apps.
 
 Anyway, if possible a multimedia distro should use hr timer (HPET), but
 always a kernel-rt only.
 
   if they arent, what happens is that the audio buffers, either for the
  souncard playback, or capture will run out of data, and then the
  continuos steam of audio data will be over, and wait until receive
  more info. In a Nutshell, you LOSE audio data, and you will never get
  it back, for professional audio that is unacceptable. Also if You give
  software RT priorities, it less possible that, for instance, Ardour is
  left behind of a twitter client unaceptable to...
  
  I am going to make some simple math with a not so professional cenario
  to ilstrate just the data stream, not audo software CPU time.
  
  
  Recording and monitoring out 8 channels (8 in 8 out) at 48KS/s at 24
  bits
  
  48000 * 24 = 115200 bps = 14.0625KB/s
  
  14.0625 * 16 = 225 KB/s = 1.76MB/s
  
  Well, 1.76 MB/s is not to much really, well this calc is simple
  cenario, provided that the sound card uses real 24 bit audio data
  stream, if it used 32 bit, welll do the math.
  
  Now to a PRO setup.. 192 KS/s @ 24bits
  
  192000 * 24 = 4608000 = 0.55 MB/s
  
  0.55 * 16  = 8,78 MB/s
  
  8.78 MBytes per second, not mbits, FIrewire is rated at 400 MBit per
  second... USB in practice is a lot less + Communication overhead.
  
  This is only on the Audio tranfer side, then you need to send this
  streams from each different software, make dsp calculations for
  Amplitude (volume) or mixing. This takes time so YES a Real time
  kernels is better for audio users than for normal users. Specially if
  you use Externals Firewire/USB card with high outputs
  
  note: this are simple calculations made fast, just to demonstrate the
  kind of stream we talk about. I assumed 24 bits, this is very rare,
  usually it goes with 32 bit, that is a lot more data to transfer.
  
  If some more explanation on why a RT kernel is prefered for audio, i
  can try to answer some more questions, i am not a pro in this tough.
  
  Ricardo Lameiro
  
  2010/9/30 Ralf Mardorf ralf.mard...@alice-dsl.net
  
  On Thu, 2010-09-30 at 16:38 +0200, Ralf Mardorf wrote:
   On Thu, 2010-09-30 at 07:35 -0400, Ronan Jouchet wrote:
Hello everybody,
   
Many are confused about the various realtime kernels, so
  here is a
reminder of the situation as of Sept. 2010 (but _please_
  see
   
  https://help.ubuntu.com/community/UbuntuStudio/RealTimeKernel , 
  which is
more detailed and continuously updated).
   
***Summary

Re: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 17:15 +0100, Ricardo Lameiro wrote:
 I agree with you. I think the best compromise is to use the Hard RT
 kernel patch on top of vanilla kernel, and have the Generic kernel for
 everyday usage.
 You can choose which kernel to boot from at the beginning,

I only use vanilla + rt-patched kernels for audio-video and everyday
usage. The only difference is the CPU frequency scaling. For everyday
usage I set it to ondemand and for audio-video work to performance and
sometimes I manually enable hr timer when doing MIDI work.

IMO just a kernl-rt is needed, but as I mentioned before, people running
32-bit architecture might need a patch to enable usage of large RAM.

But indeed, GRUB is our friend, we are free to use several kernels. OT:
GRUB is a little bit more user-friendly than GRUB2 is ;).

 Hard RT kernel, should be the only one to be supported, since it is
 the kernel that brings more benefits to audio/video production, If we
 spread attention with 2 more kernel flavours, no one can support it,
 and lets face it, abogani makes a hell of a good job, so we should
 simplify is life :D

Hm, on my Ubuntu Studio, neither Abogani's, anyone else or my own build
kernel-rt are ok :(. I can't boot any kernel-rt.

I'm able to run Suse with my self build kernel-rt, but not with the
repositories once and I'm able to run 64 Studio (Hardy, Karmic) with
kernel-rt from the repositories and self build kernels.

Live CDs, e.g. AV Linux are ok with the kernel-rt.

Anyway, the rt-patch could be a PITA, while the PREEMPT only kernel for
Ubuntu Studio is ok on my machine, as far as a PREEMPT only kernel is
able to do some jobs, but I'm able to boot the kernel.

IMO we only should take care of the kernel-rt and no other kernel.
Hard disk drives today are less expensive so everybody should be able to
install a distro for audio-video usage and if needed other distros for
other usages, because not only the kernel makes a different. IMO a DAW
e.g. don't need the security that's needed for some other usages.

I'm running several Linux, no Windows, on my 2 core AMD 64-bit PC, for
everyday usage and audio-MIDI productions, all Linux with kernel-rt
only, excepted Ubuntu Studio, because I didn't had the time to
troubleshoot why I'm unable to boot a kernel-rt for Ubuntu Studio.

I prefer 64 Studio, but I really like Suse and Ubuntu Studio too, of
course there are some other good distros, but those three are my
favourites, even if Ubuntu Studio until today isn't ready for
production.
I like the concept of Ubuntu Studio, excepted of the default PREEMPT
kernel, without rt-patch.

This are just my personal 2 cents, the advantage of Linux, that we do
have a lot of different paths we could go, even if it sometimes seems to
be a disadvantage.

 
 Hard RT  kernel (Ingo Molnar Patch) and an alternative (generic) for
 everyday usage if wanted. 
 
 I reinforce the idea, that maintaining 3 different kernels is a very
 difficult task to acomplish, and more with the scarce resources
 available (humman and finacial) let alone the spinout distros that are
 popping out on top of the project
 
 2010/9/30 Ralf Mardorf ralf.mard...@alice-dsl.net
 
 On Thu, 2010-09-30 at 17:45 +0200, Ralf Mardorf wrote:
  Hi Ricardo :)
 
  sorry for my broken English, especially at the moment,
 because I do have
  an influenza.
 
  On Thu, 2010-09-30 at 16:18 +0100, Ricardo Lameiro wrote:
   Hi Ralf,
  
   I didn't understood what did you meant with:
For what do multimedia users (producers, but consumers)
 need more,
   but
vanilla + rt-patch? Does somebody run a multi-user data
 server on
   the
same machine, as he is using in his audio or audio-video
 studio?
   This
would be nonsense.
  
   What would be nonsense? audio producers using hard RT
 preemption on
   the kernel?
   Do you think that a webserver needs more Realtime
 preemption than
   audio work?
 
  No, I guess for audio and audio-video productions we only
 need a vanilla
  + rt-patch kernel and nothing more.
 
  Nobody should run a web-server or anything else on a DAW, so
 there are
  no other kernel patches needed.
 
  I'm pro PREEMPT RT and against PREEMPT only ;) or any kernel
 patches
  that don't make sense for audio, audio-video productions.
 
  I was asking for reasons to patch a kernel with something
 like a
  'generic'-patch. A DAW, resp. audio-video-MIDI workstation
 don't need a
  special server-kernel, or desktop-kernel etc., just a
 vanilla kernel +
  rt-patch.
 
  Why does Ubuntu Studio comes without PREEMPT RT, but just
 PREEMPT

Re: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 12:58 -0400, Ronan Jouchet wrote:
 On Thu, Sep 30, 2010 at 11:45 AM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
  Why does Ubuntu Studio comes without PREEMPT RT, but just PREEMPT?!
  This is my intension.
 
  FWIW, I'm a professional audio and video engineer and did program oldish
  computers and I'm missing hard real-time for modern PCs. Even the
  kernel-rt isn't able to do hard real-time, so I don't understand why
  Ubuntu Studio does prefer a kernel without rt-patch. Today the rt-patch
  isn't good enough and any kernel without this patch is useless for
  multimedia production.
 
  So a misunderstanding ;)!
 
 Hello Ralf,
 
 You keep coming back to -rt/-realtime, but nobody ever questioned
 their greatness. I trust you when you mention -rt is the ideal
 solution in your heavy MIDI use case, and I would also *love* a
 properly maintained -rt kernel in Studio.
 
 Now, whether we want it or not, the facts are:
 - Preparing -realtime (vanilla+rtpatch) or -rt
 (vanilla+ubuntusauce+rtpatch) is a lot of work and there are no
 resources for this
 - On the contrary, -lowlatency (generic with some config tweaks) means
 performance tradeoff, _but_ could happen in a PPA (maybe even in the
 archives in Natty) because it is less of a maintenance hell
 
 You mention you have some custom built kernels, so if you feel like
 helping maintaining -realtime/-rt, by all means step in, talk to
 Alessio and make it happen. But insisting again and again on -rt and
 -realtime without considering the possibilities is only going to
 discourage him from working on the feasible options.
 
 He tries to propose sustainable options and the only echoes are
 negative, without much questioning. What are the results of your own
 tests with -lowlatency? What kind of performance drop have you met on
 one of your heavy setups? How much latency lost, on which kind of
 machine / firewire card?
 
 Ronan

Hi Ronan :)

I marked your email and will come back to it ASAP. At the moment the
influenza gained the upper hand.

I guess it's not that important what issues I had when using the PREEMPT
kernel, there were issues and I didn't noticed that it was a PREEMPT,
but a PREEMPT RT kernel, when I posted something, including uname -a at
LAD or JACK mailing list. Somebody else noticed it. I might do another
test, or search the archives, but I would prefer trying to compile and
build a package for a kernel-rt again on my Ubuntu Studio and post the
package for 64-bit or ask because of trouble, if the compiling should
fail, resp. the startup when booting the kernel should fail.

Perhaps I could try to compile a kernel-rt at the weekend. I suspect
issues for the startup regarding to X, but I'm not sure.

To be continued ... probably this weekend ... if I don't answer until
the week after next, please remember me to compile a kernel-rt and to
post the messages I get when booting the kernel-rt from the
repositories.

Today I don't wish to test anything.

I've got two PCI Envy24 cards, Terratec EWX 24/96, a NVidia 7200 GS + an
onboard Radeon X1250-based graphics. The mobo is a M2A-VM HDMI and

suse11-2:/home/spinymouse11.2 # hwinfo --cpu
01: None 00.0: 10103 CPU
  [Created at cpu.301]
  Unique ID: rdCR.j8NaKXDZtZ6
  Hardware Class: cpu
  Arch: X86-64
  Vendor: AuthenticAMD
  Model: 15.107.2 AMD Athlon(tm) X2 Dual Core Processor BE-2350
  Features:
fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,rdtscp,lm,3dnowext,3dnow,rep_good,extd_apicid,pni,cx16,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,3dnowprefetch
  Clock: 1000 MHz
  BogoMips: 1999.85
  Cache: 512 kb
  Units/Processor: 2
  Config Status: cfg=new, avail=yes, need=no, active=unknown

02: None 01.0: 10103 CPU
  [Created at cpu.301]
  Unique ID: wkFv.j8NaKXDZtZ6
  Hardware Class: cpu
  Arch: X86-64
  Vendor: AuthenticAMD
  Model: 15.107.2 AMD Athlon(tm) X2 Dual Core Processor BE-2350
  Features:
fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,rdtscp,lm,3dnowext,3dnow,rep_good,extd_apicid,pni,cx16,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,3dnowprefetch
  Clock: 1000 MHz
  BogoMips: 1999.85
  Cache: 512 kb
  Units/Processor: 2
  Config Status: cfg=new, avail=yes, need=no, active=unknown
suse11-2:/home/spinymouse11.2 # hwinfo --memory
01: None 00.0: 10102 Main Memory
  [Created at memory.61]
  Unique ID: rdCR.CxwsZFjVASF
  Hardware Class: memory
  Model: Main Memory
  Memory Range: 0x-0x7fed (rw)
  Memory Size: 2 GB
  Config Status: cfg=new, avail=yes, need=no, active=unknown

In addition I do have an USB swissonic MIDI device, but it's not
connected, because it's better to use the Envy24 PCI card MPU.

I try to get a better sound card, but at the moment this is my setup.
HDMI and on-board sound disabled.

Cheers!

Ralf


-- 
Ubuntu-Studio

Re: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 19:53 +0200, Ralf Mardorf wrote:
 On Thu, 2010-09-30 at 12:58 -0400, Ronan Jouchet wrote:
  On Thu, Sep 30, 2010 at 11:45 AM, Ralf Mardorf
  ralf.mard...@alice-dsl.net wrote:
   Why does Ubuntu Studio comes without PREEMPT RT, but just PREEMPT?!
   This is my intension.
  
   FWIW, I'm a professional audio and video engineer and did program oldish
   computers and I'm missing hard real-time for modern PCs. Even the
   kernel-rt isn't able to do hard real-time, so I don't understand why
   Ubuntu Studio does prefer a kernel without rt-patch. Today the rt-patch
   isn't good enough and any kernel without this patch is useless for
   multimedia production.
  
   So a misunderstanding ;)!
  
  Hello Ralf,
  
  You keep coming back to -rt/-realtime, but nobody ever questioned
  their greatness. I trust you when you mention -rt is the ideal
  solution in your heavy MIDI use case, and I would also *love* a
  properly maintained -rt kernel in Studio.
  
  Now, whether we want it or not, the facts are:
  - Preparing -realtime (vanilla+rtpatch) or -rt
  (vanilla+ubuntusauce+rtpatch) is a lot of work and there are no
  resources for this
  - On the contrary, -lowlatency (generic with some config tweaks) means
  performance tradeoff, _but_ could happen in a PPA (maybe even in the
  archives in Natty) because it is less of a maintenance hell
  
  You mention you have some custom built kernels, so if you feel like
  helping maintaining -realtime/-rt, by all means step in, talk to
  Alessio and make it happen. But insisting again and again on -rt and
  -realtime without considering the possibilities is only going to
  discourage him from working on the feasible options.
  
  He tries to propose sustainable options and the only echoes are
  negative, without much questioning. What are the results of your own
  tests with -lowlatency? What kind of performance drop have you met on
  one of your heavy setups? How much latency lost, on which kind of
  machine / firewire card?
  
  Ronan
 
 Hi Ronan :)
 
 I marked your email and will come back to it ASAP. At the moment the
 influenza gained the upper hand.
 
 I guess it's not that important what issues I had when using the PREEMPT
 kernel, there were issues and I didn't noticed that it was a PREEMPT,
 but a PREEMPT RT kernel, when I posted something, including uname -a at
 LAD or JACK mailing list. Somebody else noticed it. I might do another
 test, or search the archives, but I would prefer trying to compile and
 build a package for a kernel-rt again on my Ubuntu Studio and post the
 package for 64-bit or ask because of trouble, if the compiling should
 fail, resp. the startup when booting the kernel should fail.
 
 Perhaps I could try to compile a kernel-rt at the weekend. I suspect
 issues for the startup regarding to X, but I'm not sure.
 
 To be continued ... probably this weekend ... if I don't answer until
 the week after next, please remember me to compile a kernel-rt and to
 post the messages I get when booting the kernel-rt from the
 repositories.
 
 Today I don't wish to test anything.
 
 I've got two PCI Envy24 cards, Terratec EWX 24/96, a NVidia 7200 GS + an
 onboard Radeon X1250-based graphics. The mobo is a M2A-VM HDMI and
 
 suse11-2:/home/spinymouse11.2 # hwinfo --cpu
 01: None 00.0: 10103 CPU
   [Created at cpu.301]
   Unique ID: rdCR.j8NaKXDZtZ6
   Hardware Class: cpu
   Arch: X86-64
   Vendor: AuthenticAMD
   Model: 15.107.2 AMD Athlon(tm) X2 Dual Core Processor BE-2350
   Features:
 fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,rdtscp,lm,3dnowext,3dnow,rep_good,extd_apicid,pni,cx16,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,3dnowprefetch
   Clock: 1000 MHz

Oops, clock is higher ...

spinymouse1...@suse11-2:~ cpu-p
Password: 
spinymouse1...@suse11-2:~ su -c hwinfo --cpu
Password: 
01: None 00.0: 10103 CPU
  [Created at cpu.301]
  Unique ID: rdCR.j8NaKXDZtZ6
  Hardware Class: cpu
  Arch: X86-64
  Vendor: AuthenticAMD
  Model: 15.107.2 AMD Athlon(tm) X2 Dual Core Processor BE-2350
  Features:
fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,rdtscp,lm,3dnowext,3dnow,rep_good,extd_apicid,pni,cx16,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,3dnowprefetch
  Clock: 2100 MHz
[snip]

Frequency scaling was ondemand, but performance.


-- 
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: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 14:08 -0400, Ronan Jouchet wrote:
 On Thu, Sep 30, 2010 at 1:53 PM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
  Hi Ronan :)
 
  I marked your email and will come back to it ASAP. At the moment the
  influenza gained the upper hand.
 
  I guess it's not that important what issues I had when using the PREEMPT
  kernel, there were issues and I didn't noticed that it was a PREEMPT,
  but a PREEMPT RT kernel, when I posted something, including uname -a at
  LAD or JACK mailing list. Somebody else noticed it. I might do another
  test, or search the archives, but I would prefer trying to compile and
  build a package for a kernel-rt again on my Ubuntu Studio and post the
  package for 64-bit or ask because of trouble, if the compiling should
  fail, resp. the startup when booting the kernel should fail.
 
  Perhaps I could try to compile a kernel-rt at the weekend. I suspect
  issues for the startup regarding to X, but I'm not sure.
 
  To be continued ... probably this weekend ... if I don't answer until
  the week after next, please remember me to compile a kernel-rt and to
  post the messages I get when booting the kernel-rt from the
  repositories.
 
  Today I don't wish to test anything.
 
 Great to read this.
 The tone of my previous email might have sounded a bit harsh but it
 definitely wasn't, I just want us to stay focused. I'm glad you took
 it well and understood my request for testing.
 I wish you a prompt recovery and hope to see the results of your tests soon!
 Good day,
 Ronan

:D

Thank you :)

don't worry, I'm nagging and I don't feel that your mail was harsh :).

We wish to have PCs able for professional audio and video usage, so we
need to be candid and straight.

We don't sell Windows ;).

Cheers!

Ralf



-- 
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: The different realtime kernels

2010-09-30 Thread Ralf Mardorf
On Thu, 2010-09-30 at 13:25 -0500, Scott Lavender wrote:
 
 On Thu, Sep 30, 2010 at 11:44 AM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
 On Thu, 2010-09-30 at 17:15 +0100, Ricardo Lameiro wrote:
  I agree with you. I think the best compromise is to use the
 Hard RT
  kernel patch on top of vanilla kernel, and have the Generic
 kernel for
  everyday usage.
  You can choose which kernel to boot from at the beginning,
 
 
 I only use vanilla + rt-patched kernels for audio-video and
 everyday
 usage. The only difference is the CPU frequency scaling. For
 everyday
 usage I set it to ondemand and for audio-video work to
 performance and
 sometimes I manually enable hr timer when doing MIDI work.
 
 IMO just a kernl-rt is needed, but as I mentioned before,
 people running
 32-bit architecture might need a patch to enable usage of
 large RAM.
 
 But indeed, GRUB is our friend, we are free to use several
 kernels. OT:
 GRUB is a little bit more user-friendly than GRUB2 is ;).
 
  Hard RT kernel, should be the only one to be supported,
 since it is
  the kernel that brings more benefits to audio/video
 production, If we
  spread attention with 2 more kernel flavours, no one can
 support it,
  and lets face it, abogani makes a hell of a good job, so we
 should
  simplify is life :D
 
 
 Hm, on my Ubuntu Studio, neither Abogani's, anyone else or my
 own build
 kernel-rt are ok :(. I can't boot any kernel-rt.
 
 I'm able to run Suse with my self build kernel-rt, but not
 with the
 repositories once and I'm able to run 64 Studio (Hardy,
 Karmic) with
 kernel-rt from the repositories and self build kernels.
 
 Live CDs, e.g. AV Linux are ok with the kernel-rt.
 
 Anyway, the rt-patch could be a PITA, while the PREEMPT only
 kernel for
 Ubuntu Studio is ok on my machine, as far as a PREEMPT only
 kernel is
 able to do some jobs, but I'm able to boot the kernel.
 
 IMO we only should take care of the kernel-rt and no other
 kernel.
 Hard disk drives today are less expensive so everybody should
 be able to
 install a distro for audio-video usage and if needed other
 distros for
 other usages, because not only the kernel makes a different.
 IMO a DAW
 e.g. don't need the security that's needed for some other
 usages.
 
 I'm running several Linux, no Windows, on my 2 core AMD 64-bit
 PC, for
 everyday usage and audio-MIDI productions, all Linux with
 kernel-rt
 only, excepted Ubuntu Studio, because I didn't had the time to
 troubleshoot why I'm unable to boot a kernel-rt for Ubuntu
 Studio.
 
 I prefer 64 Studio, but I really like Suse and Ubuntu Studio
 too, of
 course there are some other good distros, but those three are
 my
 favourites, even if Ubuntu Studio until today isn't ready for
 production.
 I like the concept of Ubuntu Studio, excepted of the default
 PREEMPT
 kernel, without rt-patch.
 
 This are just my personal 2 cents, the advantage of Linux,
 that we do
 have a lot of different paths we could go, even if it
 sometimes seems to
 be a disadvantage.
 
 
 
 
 --
 
 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
 
 
 This isn't necessarily addressed to Ralf, but it ties in with the
 comments in his email.
 
 Ubuntu Studio as a project makes far fewer decisions that people
 probably expect.  The kernel is a good example.
 
 The Ubuntu Studio team did not decide to remove the -rt kernel from
 the ISO image because we think it is inferior or that another kernel
 performs better.  We would like to still be able to provide it to our
 users because we understand that it yields performance that other
 kernels cannot provide.  We can no longer provide the -rt kernel in
 the ISO image because it is no longer in the official archives.
 
 Ubuntu Studio exists and must maneuver within Canonical/Ubuntu
 ecosphere.  And sometimes decisions are made by Canonical or Ubuntu
 that grossly affect Ubuntu Studio.  Some of those can be mitigated
 (e.g. ubuntustudio-menu vs. ubuntu menu with social integration) and
 others cannot.
 
 By the way, mitigating such things is a very good reason to keep
 building ISOs instead

Re: The different realtime kernels

2010-10-01 Thread Ralf Mardorf
On Fri, 2010-10-01 at 11:23 -0500, Scott Lavender wrote:
 
 
 On Fri, Oct 1, 2010 at 7:38 AM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
 On Thu, 2010-09-30 at 14:10 -0500, Scott Lavender wrote:
 
  [snip]
  This is not a rhetorical question.  I, as Ubuntu Studio
 project lead,
  would like to include it.  If you can provide a tenable
 method to
  include the -rt kernel in the Ubuntu Studio ISO image I
 would like to
  implement it.
 
  [snip]
 
 Hi Scott :)
 
 I'm not sure, if I do understand the problem.
 
 Does Ubuntu need the same vanilla kernel version for different
 kind of
 kernels, e.g. to provide packages for proprietary graphic
 modules?
 If so, IMO it's not needed to make the multimedia distro full
 compatible
 with a regular Ubuntu.
 
 * snip *
 
 I think you are missing the point.
 
 It does not matter _why_ certain kernels are maintained and available
 in the repositories.  It only matters _that_ the decision was made.
 
 The only kernels I can include within a Ubuntu Studio ISO image are
 the kernels available from the official Ubuntu archives.
 
 Furthermore, I do not decide which kernels may be included in the
 archives.  That ultimate decision is made by others, although I may
 provide some small influence on it.  This is an example of when I
 mentioned working within the Ubuntu framework.
 
 To summarize:  Others control which kernels are available and
 maintained in the archives and I get to select from the available
 kernels which one to include in the Ubuntu Studio ISO image.
 
 To state what is needed or required or worthless without for
 multimedia production is irrelevant.  I say again, to build a Ubuntu
 Studio ISO image within the Ubuntu framework I must choose from the
 available kernels in the repositories, of which I wield extremely
 limited influence in deciding which are to be available.
 
  
 
 Multimedia producer just need a kernel-rt and a package
 including the
 headers to compile e.g. drivers for graphics.
 
 For my needs the kernel-rt doesn't provide hard enough
 real-time, but
 the kernel-rt is a compromise that might enable some audio
 productions.
 
 You might wish to compare a C64, Atari ST or stand alone
 sequencer from
 the eighties with a kernel-rt and a kernel without rt-patch
 used by a
 good classical or jazz musician. There still is too much
 jitter, but the
 kernel-rt for sure will be the first kernel, that might be
 able to get
 the knack of it.
 
 The kernel-rt is the best we do have for Linux, hence it's
 invalid to
 use a less good kernel, as long as even the kernel-rt isn't
 able to do
 hard real-time.
 
 So, if there should be a rule for Ubuntu, that all patched
 kernels has
 to base on the same vanilla version, which is a good thought,
 it's not
 good for multimedia productions.
 
 There are coders who program the rt-patch, to make Linux
 better and
 better, it's not smart if a multimedia distro tries to be
 smarter by not
 using a kernel-rt, because it shouldn't be needed.
 
 The kernel-rt is needed and there should be no rule not to use
 it.
 
 Btw. to make the issue harder. It's not only that there isn't
 a rt-patch
 for every vanilla kernel, sometimes a current
 rt-patch-kernel-combination can be bad, so that we need to
 keep older
 rt-patched kernels. Sometimes it's not possible to keep
 'things' that
 are available by a generic kernel of the same vanilla version,
 when
 using the rt-patch, but there's no need to keep all kernel
 features for
 real-time audio productions.
 
 
 * snip *
 
 No one is suggesting that the -rt kernel is not a good thing or that
 is not to be preferred over other kernels.  However, stating that the
 -rt kernel is needed or multimedia production is worthless without it
 is not going to change the fact that the -rt kernel will not be
 included in an Ubuntu Studio ISO image for the reasons stated above.
 
 Furthermore, no one is stating that you should not use the -rt kernel.
 Quite the contrary, it is almost required for laptop users with
 firewire audio interfaces and we have made it very clear that we will
 make the -rt kernel available via a PPA.
 
 Again, this is not our choice to include a kernel other than the -rt
 kernel released in Ubuntu Studio.  It is a necessity dictated by what
 is available in the repositories.
 
 Lastly, I am curious to which hardware you are using if you find

Re: Real-time kernels from the Ubuntu Studio Lucid repositories

2010-10-02 Thread Ralf Mardorf
On Sat, 2010-10-02 at 09:40 -0400, Mike Holstein wrote:
 interesting ralf... i wonder if thats just too new to work with
 hardy/64studio... from what i remember, 64studio has an RT kernel
 already... good luck getting an answer to this question, but i would
 wonder what in the 64studio repos would or would not work with the
 modern kernels

No, Suse and 64 Studio are ok, but I can't boot a real-time kernel for
Ubuntu Studio Lucid.

 just to be clear ralf, you are having these boot issues with 64studio?
 you could try adding https://launchpad.net/~abogani/+archive/ppa to
 64studio i suppose, but when you look there, you can see there is an
 apt line for lucid and maverick... theres probably a good reason why
 there is not one for hardy...

Again, a misunderstanding, 64 Studio 3.0 = Hardy and 3.3 = Karmic are ok
on my machine (Suse too), but Ubuntu Studio fails.

Cheers!

Ralf
 
 
 On Sat, Oct 2, 2010 at 9:06 AM, Ralf ralf.mard...@alice-dsl.net
 wrote:
 Hi :)
 
 another trial to boot a kernel-rt on my machine.
 
 spinymo...@ubuntu:/boot$ ls vmlinuz*
 vmlinuz-2.6.31-10-rt
 vmlinuz-2.6.31-11-rt
 vmlinuz-2.6.32-23-preempt
 vmlinuz-2.6.32-24-preempt
 vmlinuz-2.6.32-25-preempt
 vmlinuz-2.6.33-23-realtime
 vmlinuz-2.6.33-29-realtime
 vmlinuz-2.6.33.5-rt23
 spinymo...@ubuntu:/boot$ ls initrd*
 initrd.img-2.6.31-10-rt
 initrd.img-2.6.31-11-rt
 initrd.img-2.6.32-23-preempt
 initrd.img-2.6.32-24-preempt
 initrd.img-2.6.32-25-preempt
 initrd.img-2.6.33-23-realtime
 initrd.img-2.6.33-29-realtime
 
 The kernel without initrd is a self build kernel-rt, build the
 same way
 I build DEB packages for kernel-rt for 64 Studio based on
 Hardy. I don't
 know why I didn't got the initrd for Ubuntu Studio Lucid.
 
 I can boot all the preempt kernels. When I try to boot
 2.6.31-10-rt I
 get the message 'No such device' on startup. The entry for
 grub.cfg is
 ok [1].
 
 It's the same for 2.6.31-11-rt.
 
 When I try to boot 2.6.23-realtime I get the message
 '[...] ACPI: Expecting a [Reference] package element, found
 type 0'
 only, followed by tty1.
 For 2.6.33-29-realtime I get the message
 '[...] ACPI: Expecting a [Reference] package element, found
 type 0
 [...] ata1: softreset failed (device not ready)
 [...] ata2: softreset failed (device not ready)
 [...] ata3: softreset failed (device not ready)',
 followed by tty1.
 
 I've got 1 SATA DVD drive and 2 SATA hard disk drives. Could
 it be an
 issue regarding to a PATA module, but a SATA module?
 
 The self-build kernel ends in a kernel panic.
 ASAP I'll build another kernel-rt myself and post all steps I
 do.
 
 Cheers!
 
 Ralf
 
 
 [1]
 I've got the influenza, so I might had a blackout and missed
 something,
 because of this I attached my grub.cfg, a manually edited one:
 
 spinymo...@ubuntu:~$ cat /usr/sbin/update-grub
 #!/bin/sh -e
 exec grub-mkconfig -o /boot/grub/grub.cfg_$(date +%b-%d-%Y_%
 H-%M-%S)
 $@
 spinymo...@ubuntu:~$ ls /boot/grub/grub.cfg*
 /boot/grub/grub.cfg  /boot/grub/grub.cfg_Oct-02-2010_12-22-37
 
 I copied the entries for all Ubuntu Studio real-time kernels
 and
 2.6.32-25-preempt from the latest auto-generated
 grub.cfg_Oct-02-2010_12-22-37.
 
 FWIW all kernel-rt for 64 Studio and Suse are self-build, the
 kernel-multimedia are also kernel-rt, but from the 64 Studio
 repositories. I can boot all those kernels, but I'm also
 unable to boot
 kernel-rt from the Suse repositories and the self-build Suse
 needs a
 Ctrl+Alt+Double-Backspace after startup, before it's ok.
 
 --
 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
 http://www.myspace.com/mikeholstein
 
 http://opensourcemusician.libsyn.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


Re: Real-time kernels from the Ubuntu Studio Lucid repositories

2010-10-02 Thread Ralf Mardorf
On Sat, 2010-10-02 at 16:10 +0200, Jeremy Jongepier wrote:
 On 10/02/2010 03:06 PM, Ralf wrote:
  When I try to boot 2.6.31-10-rt I
  get the message 'No such device' on startup. The entry for grub.cfg is
  ok [1].
 
  It's the same for 2.6.31-11-rt.
 
 But does it continue booting? Regarding the 'No such device' warning: 
 https://bugs.launchpad.net/ubuntu/+source/linux-rt/+bug/599396
 
 Best,
 
 Jeremy

No, as I've posted before, after the message it ends in tty1, asking me
to log in.

On Sat, 2010-10-02 at 09:57 -0400, Mike Holstein wrote:
 that is totally interesting... i have about 4 machines that boot the
 -rt kernel, and the -realtime kernel without issue... also, a 64bit
 install with the same results... i cant help much with the self
 builds, but go ahead and spit out some more logs here, and lets try
 and figure out why your not able to boot...

What logs from /var/log or anywhere else might give useful information?
Any hints are welcome! I'll post those logs.

- Ralf


-- 
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: Real-time kernels from the Ubuntu Studio Lucid repositories

2010-10-02 Thread Ralf Mardorf
On Sat, 2010-10-02 at 16:18 +0200, Ralf Mardorf wrote:
 On Sat, 2010-10-02 at 16:10 +0200, Jeremy Jongepier wrote:
  On 10/02/2010 03:06 PM, Ralf wrote:
   When I try to boot 2.6.31-10-rt I
   get the message 'No such device' on startup. The entry for grub.cfg is
   ok [1].
  
   It's the same for 2.6.31-11-rt.
  
  But does it continue booting? Regarding the 'No such device' warning: 
  https://bugs.launchpad.net/ubuntu/+source/linux-rt/+bug/599396
  
  Best,
  
  Jeremy
 
 No, as I've posted before, after the message it ends in tty1, asking me
 to log in.

No, sorry, I'll try again and write to the list later today.

 
 On Sat, 2010-10-02 at 09:57 -0400, Mike Holstein wrote:
  that is totally interesting... i have about 4 machines that boot the
  -rt kernel, and the -realtime kernel without issue... also, a 64bit
  install with the same results... i cant help much with the self
  builds, but go ahead and spit out some more logs here, and lets try
  and figure out why your not able to boot...
 
 What logs from /var/log or anywhere else might give useful information?
 Any hints are welcome! I'll post those logs.
 
 - Ralf



-- 
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: Real-time kernels from the Ubuntu Studio Lucid repositories

2010-10-02 Thread Ralf Mardorf
On Sat, 2010-10-02 at 16:23 +0200, Jeremy Jongepier wrote:
 On 10/02/2010 04:18 PM, Ralf Mardorf wrote:
  No, as I've posted before, after the message it ends in tty1, asking me
  to log in.
 
 So it does continu booting, except that it cannot start X. What kind of 
 GPU do you have?
 
 Best,
 
 Jeremy

The graphics is a NVidia GeForce 7200 GS, resp. for the drivers it's
equal to a GeForce 7300 SE. It's mounted to a PCI express slot,
alternatively I do have a disabled integrated ATI Radeon X1250-based
graphics, but I don't wish to use it.

I'll reboot later, but I'm short in time now.

- Ralf



-- 
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: Real-time kernels from the Ubuntu Studio Lucid repositories

2010-10-02 Thread Ralf Mardorf
On Sat, 2010-10-02 at 16:23 +0200, Jeremy Jongepier wrote:
 On 10/02/2010 04:18 PM, Ralf Mardorf wrote:
  No, as I've posted before, after the message it ends in tty1, asking me
  to log in.
 
 So it does continu booting, except that it cannot start X. What kind of 
 GPU do you have?
 
 Best,
 
 Jeremy

2.6.31-11-rt ends in tty1
2.6.31-10-rt ends also in tty1, for this kernel I logged in and run

startx
gdm start
sudo startx
sudo gdm start

I just had a brief look at Xorg.0.log. Note that there isn't a long boot
process.


X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-27-server x86_64 Ubuntu
Current Operating System: Linux ubuntu 2.6.31-10-rt #153-Ubuntu SMP PREEMPT RT Tue Jan 12 11:01:03 UTC 2010 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.31-10-rt root=UUID=54b5bb8c-356a-4268-8592-e76aac7941a8 ro quiet splash
Build Date: 21 July 2010  01:03:39PM
xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sat Oct  2 17:02:36 2010
(==) Using config directory: /usr/lib/X11/xorg.conf.d
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |--Screen Default Screen Section (0)
(**) |   |--Monitor default monitor
(==) No monitor specified for screen Default Screen Section.
	Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
	Entry deleted from font path.
(==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	built-ins
(==) ModulePath set to /usr/lib/xorg/extra-modules,/usr/lib/xorg/modules
(II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
(II) Loader magic: 0x7ca300
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.4
	X.Org Video Driver: 6.0
	X.Org XInput driver : 7.0
	X.Org Server Extension : 2.0
(--) using VT number 8

(--) PCI:*(0:1:0:0) 10de:01d3:10b0:0401 nVidia Corporation G72 [GeForce 7300 SE/7200 GS] rev 161, Mem @ 0xfa00/16777216, 0xd000/268435456, 0xfb00/16777216, BIOS @ 0x/131072
(II) Open ACPI successful (/var/run/acpid.socket)
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor=X.Org Foundation
	compiled for 1.7.6, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: dbe
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor=X.Org Foundation
	compiled for 1.7.6, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: glx
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor=X.Org Foundation
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: record
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor=X.Org Foundation
	compiled for 1.7.6, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: dri
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor=X.Org Foundation
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: dri2
(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
(II) Module dri2: vendor=X.Org Foundation
	compiled for 1.7.6, module version = 1.1.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(==) Matched nouveau as autoconfigured driver 0
(==) Matched nv as autoconfigured driver 1
(==) Matched vesa as autoconfigured driver 2
(==) Matched fbdev as autoconfigured driver 3
(==) Assigned the driver to the xf86ConfigLayout
(II) LoadModule: nouveau
(II) Loading /usr/lib/xorg/modules

Re: Real-time kernels from the Ubuntu Studio Lucid repositories

2010-10-03 Thread Ralf Mardorf
On Sat, 2010-10-02 at 18:04 +0200, Jeremy Jongepier wrote:
 On 10/02/2010 05:13 PM, Ralf Mardorf wrote:
  2.6.31-11-rt ends in tty1
  2.6.31-10-rt ends also in tty1, for this kernel I logged in and run
 
 Did you try the proprietary nvidia driver?
 
 Best,
 
 Jeremy

IIRC the proprietary driver wasn't ok. Anyway, I'll test it.

To be continued later this day.

- Ralf



-- 
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: The different realtime kernels

2010-10-03 Thread Ralf Mardorf
On Sat, 2010-10-02 at 23:13 -0500, Brian David wrote:
 On Sat, Oct 2, 2010 at 12:12 AM, Ralf Mardorf
 ralf.mard...@alice-dsl.net wrote:
 
 On Fri, 2010-10-01 at 11:23 -0500, Scott Lavender wrote:
 
 
 
 Indamixx is using 64 Studio, the distro I'm using to produce
 music.
 
 
 
 
 This is not entirely correct.  It is using Transmission, as Scott
 said.  I believe Transmission itself is a derivative of 64 Studio.

Pardon, I guess you're right. At least some Indamixx products do use an
OEM version build by the 64 Studio crew.

- Ralf


-- 
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: Missing initrd when building a kernel-rt

2010-10-03 Thread Ralf Mardorf
On Sun, 2010-10-03 at 11:53 -0400, Mike Holstein wrote:
 ralf, if it is a simple procedure to enable the ATI graphics chip, i
 think that would be a helpful troubleshooting step... as far as i
 know, in this PPA https://launchpad.net/~falk-t-j/+archive/lucid ,
 falktx has patched abogani's realtime kernel with the patches
 necessary to utilize the proprietary nvidia drivers... i use the PPA
 purge feature in ubuntutweak when testing a PPA with so many different
 packages in it... another easy trouble-shooting step would be to
 download KXstudio, run it live, and see if you can get to the desktop,
 and see if you can boot the -realtime kernel, see what graphics driver
 is being used, and what kernel version...

Hi Mike,

downloading KXstudio is started. The ATI graphics on Linux is a PITA,
that's why I switched to the NVidia card and I don't wish to switch back
again. For the ATI I never got 3D support working on Linux, for the
NVidia it depends to the used Linux, but even if I don't need 3D, since
some years X is PITA regarding to set up frequencies and resolution for
the monitors I used, resp. for the one I'm using now. For each Linux
install I need to set up X by trial and error.

Anyway, searching the web, I didn't find any information about the
reason, that I don't get an initrd when building a kernel.
Doing it the way I tried to do it for Ubuntu Studio does work for 64
Studio Hardy. I wonder what's different for Ubuntu Studio Lucid.

Maybe I'll switch to Arch or Gentoo, because Ubuntu and Suse become more
and more inscrutable for me.

*waiting for the download, still 16 minutes to wait*

Ralf


 
 On Sun, Oct 3, 2010 at 1:41 AM, Ralf ralf.mard...@alice-dsl.net
 wrote:
 Hi all :)
 
 building a kernel-rt failed. This are the steps I did:
 
 ### Downloading the kernel sources
 spinymo...@ubuntu:/usr/src$ wget
 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.33.7.tar.bz2 
 http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.33.7-rt29.bz2
 
 ### Extracting the sources and patching the kernel
 spinymo...@ubuntu:/usr/src$ tar xvjf linux-2.6.33.7.tar.bz2
 spinymo...@ubuntu:/usr/src$ rm linux-2.6.33.7.tar.bz2
 spinymo...@ubuntu:/usr/src$ mv linux-2.6.33.7
 linux-2.6.33.7-rt29
 spinymo...@ubuntu:/usr/src$ ln -s linux-2.6.33.7-rt29 linux
 spinymo...@ubuntu:/usr/src$ cd linux
 spinymo...@ubuntu:/usr/src/linux$
 mv ../patch-2.6.33.7-rt29.bz2 ../linux
 spinymo...@ubuntu:/usr/src/linux$ bunzip2
 patch-2.6.33.7-rt29.bz2
 spinymo...@ubuntu:/usr/src/linux$ patch -p1 
 patch-2.6.33.7-rt29
 spinymo...@ubuntu:/usr/src/linux$ rm patch-2.6.33.7-rt29
 
 ### Editing a configuration
 spinymo...@ubuntu:/usr/src/linux$ uname -r
 2.6.32-25-preempt
 spinymo...@ubuntu:/usr/src/linux$ cp /boot/config-$(uname
 -r) .config
 spinymo...@ubuntu:/usr/src/linux$ make oldconfig
 Pushing enter only.
 
 ### Disable staging
 spinymo...@ubuntu:/usr/src/linux$ gedit .config
 Editing
 CONFIG_STAGING=y
 to
 # CONFIG_STAGING is not set
 
 spinymo...@ubuntu:/usr/src/linux$ make oldconfig
 Nothing to do.
 
 ### Tidying up
 spinymo...@ubuntu:/usr/src/linux$ make-kpkg clean
 
 ### Building the kernel
 spinymo...@ubuntu:/usr/src/linux$ export CONCURRENCY_LEVEL=2
 spinymo...@ubuntu:/usr/src/linux$ make-kpkg --rootcmd fakeroot
 --initrd kernel-image kernel-headers kernel-source 
 
 ### First trial failed because of two kinds of errors I got
 several times
 tar: [...]: Cannot open: No such file or directory
 tar: vmlinux: Cannot write: No space left on device
 
 ### Creating space
 spinymo...@ubuntu:/usr/src/linux$ sudo -i
 r...@ubuntu:~# synaptic
 Completely removed the following packages:
 linux-headers-2.6.32-23
 linux-headers-2.6.32-23-preempt
 linux-image-2.6.31-10-rt
 linux-image-2.6.31-11-rt
 linux-image-2.6.32-23-preempt
 linux-image-2.6.32-24-preempt
 linux-image-2.6.33-23-realtime
 linux-image-2.6.33-29-realtime
 linux-image-2.6.33.5-rt23
 linux-image-rt
 r...@ubuntu:~# rm -r /usr/src/linux-2.6.33.5-rt23
 r...@ubuntu:~#
 rm 
 /usr/src/linux-headers-2.6.33.5-rt23_2.6.33.5-rt23-10.00.Custom_amd64.deb
 r...@ubuntu:~#
 rm 
 /usr/src/linux-headers-2.6.33.7-rt29_2.6.33.7-rt29-10.00.Custom_amd64.deb
 r...@ubuntu:~#
 rm 
 /usr/src/linux-image-2.6.33.5-rt23_2.6.33.5-rt23-10.00.Custom_amd64.deb
 r...@ubuntu:~#
 rm 
 /usr/src/linux-image-2.6.33.7-rt29_2.6.33.7-rt29-10.00.Custom_amd64.deb
 r...@ubuntu:~#
 rm 
 

Re: Missing initrd when building a kernel-rt

2010-10-03 Thread Ralf Mardorf
On Sun, 2010-10-03 at 11:53 -0400, Mike Holstein wrote:
 another easy trouble-shooting step would be to download KXstudio, run
 it live, and see if you can get to the desktop, and see if you can
 boot the -realtime kernel, see what graphics driver is being used, and
 what kernel version...

I've seen no option to choose a kernel for live usage of
KXStudio_10.04.2-LiveDVD_64bit.
The default kernel is a generic kernel.

ubu...@ubuntu:/etc/X11$ uname -a
Linux ubuntu 2.6.32-21-generic #32-Ubuntu SMP Fri Apr 16 08:09:38 UTC
2010 x86_64 GNU/Linux

Apart from that, which file gives information about the used driver?

TIA Ralf


-- 
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: Missing initrd when building a kernel-rt

2010-10-04 Thread Ralf Mardorf
On Mon, 2010-10-04 at 11:07 +0200, Jeremy Jongepier wrote:

 On 10/04/2010 10:40 AM, Alessio Igor Bogani wrote:
  2010/10/4 Jeremy Jongepier jer...@autostatic.com:
  On 10/03/2010 07:41 AM, Ralf wrote:
  spinymo...@ubuntu:/usr/src/linux$ make-kpkg --rootcmd fakeroot --initrd
 
  Hmm, and what if you try fakeroot make-kpg --initrd kernel-image
  kernel-headers kernel-source ? Shouldn't make a difference though I think.
  
  Ubuntu don't support make-pkg.
  
  Ciao,
  Alessio
  
 
 Hello Alessio,
 
 As of which release? I've built several kernels with make-kpkg for 9.04
 and 9.10 (to include dsdt tables for my netbook). Haven't tried with
 10.04 though.
 
 Best,
 
 Jeremy


Jeremy, I did compile with make-kpkg for Hardy 8.04, resp. 64 Studio 3.0
- beta, based on Hardy and it did work.

If you should have got the time to do it, would you please try to test,
if there won't be an initrd for you too, building on Lucid or later
version of Ubuntu?

Copy and paste should be ok, if you allow HTML for received messages ;).

wget ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.33.7.tar.bz2
http://www.kernel.org/pub/linux/kernel/projects/rt/patch-2.6.33.7-rt29.bz2
tar xvjf linux-2.6.33.7.tar.bz2
mv linux-2.6.33.7 linux-2.6.33.7-rt29
ln -s linux-2.6.33.7-rt29 linux
cd linux
mv ../patch-2.6.33.7-rt29.bz2 ../linux
bunzip2 patch-2.6.33.7-rt29.bz2
patch -p1  patch-2.6.33.7-rt29

If uname -r is 2.6.32-25-preempt, than ...
cp /boot/config-$(uname -r) .config
make oldconfig
... should need to push enter all the times only.

I guess it's needed to disable staging on any machine, so ...
gedit .config
Editing
CONFIG_STAGING=y
to
# CONFIG_STAGING is not set
... and then
make oldconfig
There should be nothing to do when running make oldconfig.

make-kpkg clean
make-kpkg --rootcmd fakeroot --initrd kernel-image kernel-headers
kernel-source

or perhaps

fakeroot first.
-- 
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: Missing initrd when building a kernel-rt

2010-10-04 Thread Ralf Mardorf
On Mon, 2010-10-04 at 11:07 +0200, Jeremy Jongepier wrote:
 On 10/04/2010 10:40 AM, Alessio Igor Bogani wrote:
  2010/10/4 Jeremy Jongepier jer...@autostatic.com:
  On 10/03/2010 07:41 AM, Ralf wrote:
  spinymo...@ubuntu:/usr/src/linux$ make-kpkg --rootcmd fakeroot --initrd
 
  Hmm, and what if you try fakeroot make-kpg --initrd kernel-image
  kernel-headers kernel-source ? Shouldn't make a difference though I think.
  
  Ubuntu don't support make-pkg.
  
  Ciao,
  Alessio
  
 
 Hello Alessio,
 
 As of which release? I've built several kernels with make-kpkg for 9.04
 and 9.10 (to include dsdt tables for my netbook). Haven't tried with
 10.04 though.
 
 Best,
 
 Jeremy

I did read all emails and will reply later this day or tomorrow, the flu
I've got is a PITA, I can't stay long on the computer ;).

But this is very important. 'make-kpkg' did build:

spinymouse1...@suse11-2:~ ls /media/ubuntu_studio/usr/src/linux*
/media/ubuntu_studio/usr/src/linux-headers-2.6.33.7-rt29_2.6.33.7-rt29-10.00.Custom_amd64.deb
/media/ubuntu_studio/usr/src/linux-image-2.6.33.7-rt29_2.6.33.7-rt29-10.00.Custom_amd64.deb
/media/ubuntu_studio/usr/src/linux-source-2.6.33.7-rt29_2.6.33.7-rt29-10.00.Custom_all.deb

It's just that initrd isn't included to
linux-image-2.6.33.7-rt29_2.6.33.7-rt29-10.00.Custom_amd64.deb.

How should a kernel be build for Ubuntu today?

Cheers!

Ralf


-- 
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


make-kpkg for Squeeze and maybe Lucid too - was: Re: [64studio-users] Why can't I install listed packages [snip]

2010-10-08 Thread Ralf Mardorf
I didn't read the latest mails on Ubuntu Studio Users Mailing List, I'll
do it ASAP. Sorry for the cross-posting.

I didn't test this ...

http://forums.debian.net/viewtopic.php?p=243740

... but there might be a solution for compiling a kernel using
make-kpkg.

- Ralf


-- 
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: kernels in Studio

2010-10-08 Thread Ralf Mardorf
On Wed, 2010-10-06 at 10:28 +0200, Alessio Igor Bogani wrote:
 Hi All,
 
 For your information all discussions about kernels in Studio are moved
 to ubuntu-studio-devel mailing-list. Please join us if you are
 interested!
 
 Ciao,
 Alessio

Oops, ok, sorry for my post about make-kpkg.

Cheers!

Ralf



-- 
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: Vacation reply

2010-11-04 Thread Ralf Mardorf
On Thu, 2010-11-04 at 01:57 -0700, m...@socopro.com wrote:
 This is an autmatic generated reply.  We will be in touch within 24
 hours.
  
 Thank you

Mike :) please remember us to remove you from the mail client's spam
filter, when you're back from your holiday ;) or add something similar
to '[Ubuntu Studio]' at front of the subject.

Cheers!
Ralf

PS: Arg, pardon if I still should need to reply to some emails, I've
got a new job and had no time.



-- 
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: Vacation reply

2010-11-04 Thread Ralf Mardorf
On Thu, 2010-11-04 at 19:26 +0100, Ralf Mardorf wrote:
 On Thu, 2010-11-04 at 01:57 -0700, m...@socopro.com wrote:
  This is an autmatic generated reply.  We will be in touch within 24
  hours.
   
  Thank you
 
 Mike :) please remember us to remove you from the mail client's spam
 filter, when you're back from your holiday ;)

I'm an idiot, you can't do this ...

 or add something similar
 to '[Ubuntu Studio]' at front of the subject.

... but please, add [Ubuntu Studio] to the subject, so you mails will be
'visible' in the spam folder and can easily be marked as 'no spam'.

 
 Cheers!
 Ralf
 
 PS: Arg, pardon if I still should need to reply to some emails, I've
 got a new job and had no time.


-- 
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: Dual Boot Problem

2010-11-05 Thread Ralf Mardorf
On Fri, 2010-11-05 at 20:16 -0400, Ronan Jouchet wrote:

 Hello Mischa,
 
 The menu may be hidden. Try hitting/holding shift during the boot 
 process, this could make the GRUB menu appear.
 
 Then, to solve the problem and change which system booted by default,
   1. Have a look at https://help.ubuntu.com/community/GrubHowto and 
 https://help.ubuntu.com/community/Grub2 . From your description, you 
 should have Grub1, but be sure of it.
   2. Then depending on your Grub version you'll have to adjust a 
 menu.lst or a grub.cfg and run some grub-update like commands. Again, 
 see the wiki which has detailed instructions.
 
 Tell us whether this helped and if you have additional questions. Also 
 for such issues, IRC can be a great place for more interactive help, in 
 #ubuntu or #ubuntustudio on irc.freenode.net . Good luck!
 
 Ronan


IOW take a look at the path '/boot/grub/'. There should be a menu.lst or
a grub.cfg.


If you're using GRUB2, as I unfortunately do, you should change 
/usr/sbin/update-grub to (something similar) as ...


#!/bin/sh -e
exec grub-mkconfig -o /boot/grub/grub.cfg_$(date +%b-%d-%Y_%H-%M-%S)
$@

... if you don't do it, resp. you try to follow the idea of GRUB2 to use
all those 'special' files, you won't be able to configure and keep your
personal, customised menu.

Please post your /boot/grub/menu.lst or your /boot/grub/grub.cfg.

2 Cents,

Ralf


 
 On 10-11-05 08:27 AM, mischa falkenburg wrote:
  Hello All,
 
  I had a cobbled together box that has been running Xubuntu 8.04.1 just
  fine.
  The hard drive is large enough that I tried to install UbuStu 10.04
  .iso...install went flawlessly, meaning that 10.04 detected the 8.04
  system and that there should be no problem with the MBR.
  Upon reboot Grub initializes but goes directly to the 8.04 instead of
  showing my a choice between the two.
  Is there some file I need to modify, or what?
 
  Thanks-in-advance,
 
  Mischa
 
 


-- 
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: Dual Boot Problem

2010-11-06 Thread Ralf Mardorf
PS:

For GRUB there should be a line

timeout 8

and for GRUB2 there should be the lines

if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi

or similar.

AFAIK the numbers for the timeouts are seconds.

Hth,

Ralf


-- 
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: Dual Boot Problem

2010-11-06 Thread Ralf Mardorf
On Fri, 2010-11-05 at 20:16 -0400, Ronan Jouchet wrote:
 and run some grub-update

PPS: Oops, of cause, you also need the correct entries to boot the
kernels, but I'm not fine with this automation, because it will add
outdated menus too, resp. it will add backups too.


-- 
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: Dual Boot Problem

2010-11-06 Thread Ralf Mardorf
On Sat, 2010-11-06 at 09:06 +0100, Ralf Mardorf wrote:
 PS:
 
 For GRUB there should be a line
 
 timeout 8
 
 and for GRUB2 there should be the lines
 
 if [ ${recordfail} = 1 ]; then
   set timeout=-1
 else
   set timeout=10
 fi
 
 or similar.
 
 AFAIK the numbers for the timeouts are seconds.
 
 Hth,
 
 Ralf

PS, pardon:

You might use GRUB2 and you perhaps has got an issue regarding to a
recordfail.



-- 
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: Vacation reply

2010-11-07 Thread Ralf Mardorf
On Sun, 2010-11-07 at 20:07 +, Ricardo Lameiro wrote:
 Hi, I don't think he made it in porpuse. this kind of things happens.

Full ACK. IMO most Linux mailing lists and Linux forums are much too
pedantic. 

 There are a lot of people on the list, and sometimes someone can
 forget to unsubscribe before put up an auto-response message.

Resp. just to turn of receiving mails from the list.

 That hard words can be a little to much for the situation. You can
 filter it out if you really want.

A good idea is to use a filter just for the subject 'Vacation reply' or
if being to lazy to add a filter, simply to mark the mails as junk, as I
did, unfortunately I risk to miss emails with wanted subjects from the
same address.

- Ralf


-- 
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: Dual Boot Problem

2010-11-07 Thread Ralf Mardorf
On Sun, 2010-11-07 at 07:28 -0500, mischa falkenburg wrote:
 Ralf Mardorf wrote:
  On Sat, 2010-11-06 at 09:06 +0100, Ralf Mardorf wrote:

  PS:
 
  For GRUB there should be a line
 
  timeout 8
 
  and for GRUB2 there should be the lines
 
  if [ ${recordfail} = 1 ]; then
set timeout=-1
  else
set timeout=10
  fi
 
  or similar.
 
  AFAIK the numbers for the timeouts are seconds.
 
  Hth,
 
  Ralf
  
 
  PS, pardon:
 
  You might use GRUB2 and you perhaps has got an issue regarding to a
  recordfail.
 
 
 

 HI Ralf, thanks for your many responses.
 
 As you can see from what I've written Ronan, there may be more going on 
 here rather than not seeing anything (initially).
 Did the install of UbuStu 10.04 happen or not?
 
 Thoughts?
 
 Mischa

With a live cd or from the Linux that can be booted copy

/boot/grub/menu.lst

or

/boot/grub/menu.cfg

to an email to the list. I guess just the menu entries are missing.

Take a look at all partitions. If there are folders /boot on some
partitions there should be the kernels. For any kernel there has to be
an entry in /boot/grub/menu.lst, for /boot/grub/menu.cfg it can be a
little bit complicated.



-- 
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: Dual Boot Problem

2010-11-08 Thread Ralf Mardorf
On Mon, 2010-11-08 at 09:53 -0500, Mike Holstein wrote:
 
 
 On Mon, Nov 8, 2010 at 9:37 AM, mischa falkenburg
 because_producti...@myfairpoint.net wrote:
 
 Ralf Mardorf wrote:
  On Sun, 2010-11-07 at 07:28 -0500, mischa falkenburg wrote:
 
  Ralf Mardorf wrote:
 
  On Sat, 2010-11-06 at 09:06 +0100, Ralf Mardorf wrote:
 
 
  PS:
 
  For GRUB there should be a line
 
  timeout 8
 
  and for GRUB2 there should be the lines
 
  if [ ${recordfail} = 1 ]; then
set timeout=-1
  else
set timeout=10
  fi
 
  or similar.
 
  AFAIK the numbers for the timeouts are seconds.
 
  Hth,
 
  Ralf
 
 
  PS, pardon:
 
  You might use GRUB2 and you perhaps has got an issue
 regarding to a
  recordfail.
 
 
 
 
 
  HI Ralf, thanks for your many responses.
 
  As you can see from what I've written Ronan, there may be
 more going on
  here rather than not seeing anything (initially).
  Did the install of UbuStu 10.04 happen or not?
 
  Thoughts?
 
  Mischa
 
 
  With a live cd or from the Linux that can be booted copy
 
  /boot/grub/menu.lst
 
  or
 
  /boot/grub/menu.cfg
 
  to an email to the list. I guess just the menu entries are
 missing.
 
  Take a look at all partitions. If there are folders /boot on
 some
  partitions there should be the kernels. For any kernel there
 has to be
  an entry in /boot/grub/menu.lst, for /boot/grub/menu.cfg it
 can be a
  little bit complicated.
 
 
 
 
 
 (copying the info from ...grub isn't behaving, but just from
 my
 looking at .../menu.lst, all that's listed are two different
 8.04 LTS
 kernels:
 
 2.6.24-28-generic
 
 2.6.24-19-generic
 
 Nothing in the file about 10.04...,
 
 I also don't see a file for .../menu.cfg , is that supposed to
 be in the
 Grub folder?
 
 Mischa
 
 
 
 --
 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 think it would have been a good idea to get the older install (8.04)
 up to GRUB2, then install the 10.04 (with GRUB2). i would try reading
 over the GRUB2 wiki page https://help.ubuntu.com/community/Grub2 ,
 also maybe
 this https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows 
 
 
 i have used http://gag.sourceforge.net/ in the past, you could try it
 or another 3rd party bootloader and see if you can find your OS's...
 good luck

Hm? I guess we could help him with GRUB too, anyway, GRUB2 isn't that
bad for such a situation.

After installing GRUB2 it's always possible to
run /usr/sbin/update-grub, which will execute grub-mkconfig, hence a
menu list with every possible kernel will be generated, if wanted or
unwanted ;). It's still possible that some entries are bad, but at least
everything is added.

Maybe a good idea to switch to GRUB2, because it's the default
bootloader for newer Ubuntu.

- Ralf



-- 
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: Dual Boot Problem

2010-11-08 Thread Ralf Mardorf

[snip]
  (copying the info from ...grub isn't behaving, but
 just from
  my
  looking at .../menu.lst, all that's listed are two
 different
  8.04 LTS
  kernels:
 
  2.6.24-28-generic
  
  2.6.24-19-generic
 
  Nothing in the file about 10.04...,
 
  I also don't see a file for .../menu.cfg , is that
 supposed to
  be in the
  Grub folder?
 
  Mischa
[snip]
  grub1 was installed with the 8.04 version... then, GRUB2 is installed
 with the 10.04 version.. SO basically what i am assuming is currently
 installed on the computer is this configuration, a 10.04 GRUB2 install
 that is not finding the 8.04 version and booting it... is this
 correct??

IIUC he just looked at the /boot/grub/menu.lst of his outdated GRUB, he
might or might not have a /boot/grub/menu.cfg on another partition, but 
obviously he gets those Xubuntu 8.04 kernels when pressing Esc.

@ Mischa, usually there is just a menu.lst or just a menu.cfg in the
path /boot/grub. You might have more, but one partition ;).



-- 
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: Dual Boot Problem

2010-11-09 Thread Ralf Mardorf
On Mon, 2010-11-08 at 11:06 -0500, mischa falkenburg wrote:
 I've gone ahead and installed Grub2, did a reboot and still no sign of 
 10.04.

Hi Mischa :)

open a terminal emulation and run

sudo update-grub

then reboot. Are there any new entries?

Hth,

Ralf



-- 
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: Dual Boot Problem

2010-11-09 Thread Ralf Mardorf
On Tue, 2010-11-09 at 15:19 +0100, Ralf Mardorf wrote:
 On Mon, 2010-11-08 at 11:06 -0500, mischa falkenburg wrote:
  I've gone ahead and installed Grub2, did a reboot and still no sign of 
  10.04.
 
 Hi Mischa :)
 
 open a terminal emulation and run
 
 sudo update-grub
 
 then reboot. Are there any new entries?
 
 Hth,
 
 Ralf

PS:

Oops, for hardy you might need to compile GRUB2, the package GRUB2 seem
not to include GRUB2.

http://packages.ubuntu.com/hardy/amd64/grub2/filelist

But if you reinstall GRUB(1) there seem to be a script update-grub for
it too.

http://packages.ubuntu.com/hardy/amd64/grub/filelist



-- 
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: Dual Boot Problem SOLVED

2010-11-11 Thread Ralf Mardorf
On Thu, 2010-11-11 at 20:40 -0500, mischa falkenburg wrote:
 On 11/09/2010 11:24 AM, mischa falkenburg wrote:
  Ralf Mardorf wrote:
 
  On Tue, 2010-11-09 at 15:19 +0100, Ralf Mardorf wrote:
 
   
  On Mon, 2010-11-08 at 11:06 -0500, mischa falkenburg wrote:
 
 
  I've gone ahead and installed Grub2, did a reboot and still no sign of
  10.04.
 
   
  Hi Mischa :)
 
  open a terminal emulation and run
 
  sudo update-grub
 
  then reboot. Are there any new entries?
 
  Hth,
 
  Ralf
 
 
  PS:
 
  Oops, for hardy you might need to compile GRUB2, the package GRUB2 seem
  not to include GRUB2.
 
  http://packages.ubuntu.com/hardy/amd64/grub2/filelist
 
  But if you reinstall GRUB(1) there seem to be a script update-grub for
  it too.
 
  http://packages.ubuntu.com/hardy/amd64/grub/filelist
 
 
 
 
   
  I could be misunderstanding, but if I've installed GRUB2, why would I
  need to compile it?

Because GRUB2 isn't in the file list. Perhaps a dummy package for the
name GRUB2, while GRUB2 for Hardy might be in another package, that I
couldn't find with the package search.

 
  M.
 
 
 What I ended up doing was to update/grade the Xubuntu, then apt-get 
 install ubuntustudio-audio/video. Works like it should...
 
 Mischa
 

This are good news. I guess some package did run update-grub.

Cheers!

Ralf



-- 
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: wifi problem !! somebody solve this plzzz..

2010-11-30 Thread Ralf Mardorf
On Tue, 2010-11-30 at 23:05 +0530, MiRcHiS wrote:
 
 somebody solve my problem.. please .. my wifi is not working as int
 mine is  HP pavilion laptop and i have a button to switch the wifi and
 blue tooth but unfortunately 
 it is showing only red light either it is on or off. But it is working
 good in Windows. Don't know what's the problem with Ubuntu 10.10.
 updated it many times but update could not solve my problem.. :(  
 -- 
 PHANI SARMA N
 BITS-PILANI Goa

Can't help myself, but I often read about wifi and firewire issues on
Linux.

Perhaps the German Google search, for results on English ;), could help,
by http://www.google.de/search?hl=deq=wifi
+linuxaq=faqi=g10aql=oq=gs_rfai= among other sides, this one might
be a help:

http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/

Note that the site itself was updated on 25 July 07 :S, but maybe the
links are state of the art :).

On German, but understandable even if you can't understand German:

'Linux wireless LAN support http://linux-wless.passys.nl
1 Nov 2010 ... Now available: Wireless on Linux with full iee802.11a and
ieee802.11n support on a PCI-express 1x card. Go to: Passys
wireless. ...'

Hm? '1 Nov 2010' vs '17. April 2006' ... anyway, the 'Komplette Liste',
on English 'complete list':

http://linux-wless.passys.nl/query_alles.php?

Hth,

Ralf


-- 
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: Terratec 6 DMX Fire USB

2010-12-01 Thread Ralf Mardorf
On Wed, 2010-12-01 at 10:30 -0500, Mike Holstein wrote:
 On Wed, Dec 1, 2010 at 6:12 AM, Ephyra Blues sagua...@hotmail.com
 wrote:
 Hello, this is my first post to this mailing list and my
 english is very poor. My question is:
  
 In the alsaproject site
 http://www.alsa-project.org/main/index.php/Matrix:Vendor-Terratec , 
 the audio interface Terratec DMX 6 Fire USB is unsupported.
  
 Is it possible in the future that interface could be supported
 on Ubuntu? Have anyone a way to solve this problem?
  
 Thank's from Italy 
 
 
 --
 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
 
 
 have you asked terratec? that would be ideal since they know the
 hardware...

Hm? I did ask TerraTec regarding to other issues and never get an answer
by TerraTec ;). Linux is the best choice regarding to ethics, but bad
regarding to vendors supporting hardware.

IMO you better get in contact with the FFADO folks, join
ffado-u...@lists.sourceforge.net, resp. subscribe by using this link:
http://www.ffado.org/?q=contact

Hth,

Ralf


-- 
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: firepod midi support

2010-12-01 Thread Ralf Mardorf
On Wed, 2010-12-01 at 20:11 +0100, martin wrote:
 Am 01.12.2010 00:51, schrieb Ronan Jouchet:
  I think it should.
  What does the MIDI tab of qjackctl report?
 
  Ronan
 
  On 10-11-30 06:35 PM, mentoj dija wrote:
 
  so thank you guys for your help to start my firepod running. a brilliant
  device. there is only one futher question: does the midi-interface built
  in the pod work out of the box? well, it doesn't in my case... what do?
 
  cheers
 
   
 
 ah, sry. i forgot. yea, there is no device listet in the midi-tab. which 
 is strange, because i just got another cheap midi-usb-interface which 
 worked out of the box with linux (not with windows xp, but thats another 
 storry).


USB and MIDI are a no-go! USB MIDInterfaces do work with Linux and they
should work with Windows too, but you should notice unbearable jitter.
On Linux you should enable the high resolution timer, when using an USB
interface.



-- 
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: firepod midi support

2010-12-01 Thread Ralf Mardorf
On Wed, 2010-12-01 at 20:21 +0100, Ralf Mardorf wrote:
 On Wed, 2010-12-01 at 20:11 +0100, martin wrote:
  Am 01.12.2010 00:51, schrieb Ronan Jouchet:
   I think it should.
   What does the MIDI tab of qjackctl report?
  
   Ronan
  
   On 10-11-30 06:35 PM, mentoj dija wrote:
  
   so thank you guys for your help to start my firepod running. a brilliant
   device. there is only one futher question: does the midi-interface built
   in the pod work out of the box? well, it doesn't in my case... what do?
  
   cheers
  

  
  ah, sry. i forgot. yea, there is no device listet in the midi-tab. which 
  is strange, because i just got another cheap midi-usb-interface which 
  worked out of the box with linux (not with windows xp, but thats another 
  storry).
 
 
 USB and MIDI are a no-go! USB MIDInterfaces do work with Linux and they
 should work with Windows too, but you should notice unbearable jitter.
 On Linux you should enable the high resolution timer, when using an USB
 interface.

PS:

Oops, JACK MIDI vs ALSA MIDI, of course there's no MIDI device listed as
a JACK MIDI device ;).


-- 
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: firepod midi support

2010-12-02 Thread Ralf Mardorf
On Thu, 2010-12-02 at 17:06 +0100, mentoj dija wrote:
 lol. i mean the jack-midi-tab of course! ;-)
 
 
 On 02.12.2010 16:50, mentoj dija wrote:
  ah damn it. i completely forgott about the fack-midi-tab. cheers for that!!!
  but how to connect the (now listed) firepod midi in in the jack tab
  with something (in my case ams) in the alsa-midi-tab?

jackd -Rdalsa -dhw:0 -r[snip] -p[snip] -n2 -Xseq, resp. run QjackCtl and
then for 'Setup...', by the option 'MIDI driver' select seq,
spinymouse1...@suse11-2:~ cat .jackdrc
/usr/bin/jackd -R -dalsa -r44100 -p512 -n2 -D -Chw:0 -Phw:0 -Xseq ...
btw. the up to date version of jackd doesn't need the '-R' switch for
real-time anymore. Anyway, the '-Xseq' switch should provide a bridge
between JACK MIDI and ALSA MIDI. IIRC a little bit annoying are the
'names', resp. aliases in the JACK MIDI tab.


-- 
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: firepod midi support

2010-12-02 Thread Ralf Mardorf
On Thu, 2010-12-02 at 20:06 +0100, Hartmut Noack wrote:
 try a2jmidi_bridge.
 This little app creates MIDI-Ports that can build bridges between
 ALSA-only apps like AMS and JACK-MIDI.

Yes ... pardon ... IIRC a2jmidid does cause less MIDI jitter, than the
-X option does, or there was another issue, but I might be mistaken.


-- 
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: Lightworks

2010-12-02 Thread Ralf Mardorf
On Thu, 2010-12-02 at 14:06 -0700, Daniel Worth wrote:
 The developers are planning an OSX and a Linux port of it.
 
 http://lightworksbeta.com

What's bad with http://cinelerra.org/ ;)? And btw., I don't have the
time to search for it now, there're Linux folks who re-program
Cinelerra.

I never did video editing at home, but I worked as a professional and
had a brief look to Cinelerra and my impression was/is, that Cinelerra
is an amazing piece of software ... btw. regarding to the codecs, a
little bit problematic for official Linux repositories ;).

2 Cents,

Ralf


-- 
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: Lightworks

2010-12-02 Thread Ralf Mardorf
On Thu, 2010-12-02 at 17:24 -0600, Scott Lavender wrote:
 Lumiera

Yes, I guess you're right. IIRC I had contact to Ichthyostega, resp.
Hermann a long time ago.

Hm? Blender is good software too, but IMO it's 'just' animation
software, but 'ordinary' video editing.


-- 
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: Lightworks

2010-12-02 Thread Ralf Mardorf
On Thu, 2010-12-02 at 21:40 -0200, Stefano Vettorazzi Campos wrote:
 I have contacted to Lightworks, and they said that are going to port
 it to linux.
 We have to wait.

I don't know Lighteworks, but I still like to recommend Cinelerra and
perhaps Lumiera AND for my private needs, lowbrow editing, I'm using
much more simple apps.

Reflecting on video apps might be very helpful. What are your needs? I
don't know Lightworks, but Cinelerra 'is some kind of (nearly)
professional' ...

+ 2 Cents


-- 
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: Lightworks

2010-12-02 Thread Ralf Mardorf
On Thu, 2010-12-02 at 21:56 -0200, Stefano Vettorazzi Campos wrote:
 I agree.
 But is good add other application to the linux software list.

Full ACK.

OTOH, I never read a flame-war about Cinelerra ;) ... it's very good
software pleasing everyone, just repository/ codec issues are an
issue :D.

 
 2010/12/2 Ralf Mardorf ralf.mard...@alice-dsl.net
 On Thu, 2010-12-02 at 21:40 -0200, Stefano Vettorazzi Campos
 wrote:
  I have contacted to Lightworks, and they said that are going
 to port
  it to linux.
  We have to wait.
 
 
 I don't know Lighteworks, but I still like to recommend
 Cinelerra and
 perhaps Lumiera AND for my private needs, lowbrow editing, I'm
 using
 much more simple apps.
 
 Reflecting on video apps might be very helpful. What are your
 needs? I
 don't know Lightworks, but Cinelerra 'is some kind of (nearly)
 professional' ...
 
 + 2 Cents
 
 
 --
 
 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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sat, 2010-12-04 at 19:18 +0200, Asmo Koskinen wrote:
 https://launchpad.net/~cinelerra-ppa
 
 Use it ;-)
 
 Best Regards Asmo Koskinen.

My experiences with ppa are good, e.g. for Shutter by launchpad, anyway,
this kind of third party packages 'does not have to', but 'would be able
to' cause issues, especially if there are dependencies to codecs, as
there are for Cinelerra.

For what versions of Ubuntu Studio is Cinelerra by this repository
proved?

I do have got may issues, just running a 'regular' Ubuntu Studio.

My 2 Cents:

We should use such repositories, but just after doing a backup of the
hopefully stable Ubuntu Studio and then all the times we're doing an
upgrade, we should verify the sources of e.g. codecs, that are perhaps
upgraded too.

Cheers!

Ralf

-- 
I'm not interested in WikiLeaks, but IMO it's much more, but just
suspect how PayPal does behave against WikiLeaks. I never used PayPal,
because I never trusted them. Anyway, people donated money for
WikiLeaks, but this money didn't reach WikiLeaks.


-- 
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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sun, 2010-12-05 at 18:06 +0100, Ralf Mardorf wrote:
 On Sun, 2010-12-05 at 17:56 +0100, Tommy Hjalmarsson wrote:
  On 2010-12-05 17:40, Ralf Mardorf wrote:
   On Sat, 2010-12-04 at 19:18 +0200, Asmo Koskinen wrote:
   https://launchpad.net/~cinelerra-ppa
  
   Use it ;-)
  
   Best Regards Asmo Koskinen.
   My experiences with ppa are good, e.g. for Shutter by launchpad, anyway,
   this kind of third party packages 'does not have to', but 'would be able
   to' cause issues, especially if there are dependencies to codecs, as
   there are for Cinelerra.
  
   For what versions of Ubuntu Studio is Cinelerra by this repository
   proved?
  
   I do have got may issues, just running a 'regular' Ubuntu Studio.
  
   My 2 Cents:
  
   We should use such repositories, but just after doing a backup of the
   hopefully stable Ubuntu Studio and then all the times we're doing an
   upgrade, we should verify the sources of e.g. codecs, that are perhaps
   upgraded too.
  
   Cheers!
  
   Ralf
  
  
  Ubuntu 8.04-10.10
  
  https://launchpad.net/~cinelerra-ppa/+archive/ppa
  https://launchpad.net/%7Ecinelerra-ppa/+archive/ppa
  
  Click on  Technical details about this PPA , select your Ubuntu
  version and follow the instruction.
 
 Is it proved by the Ubuntu Studio Community? E.g. with a memlock for rt
 audio? Etc, pp.?
 
 Again, I never had issues when installing a package by launchpad, but a
 'studio' Linux isn't a regular Linux ;).
 
 Can't any of the packages by
 http://ppa.launchpad.net/cinelerra-ppa/ppa/ubuntu/pool/main/c/cinelerra/
 cause an inconsistency?
 
 If I should need Cinelerra, I maybe would install it by this repository,
 but I also would do a backup of Ubuntu Studio before installing it.
 
 :)
 
 Ralf

PS:

For example, when using another repository, for another Ubuntu based
audio distro, there is an issue.

'How to setup Cinelerra in 64 Studio

Cinelerra CV is an open-source non-linear video editor and is one of
those incredible pieces of software that you just cannot believe is
free... but that is part of the problem. 64 Studio cannot include it as
part of the distribution because it has too many patent encumbered
dependencies. But not to worry, if you install it yourself from other
sources it is yours to use as you please! And this is that story...

64 Studio 3.0
8.04 Hardy Heron

1) Add repository
deb http://akirad.cinelerra.org akirad-hardy main

2) Install package: akirad-keyring-and-mirrors

3) Reload synaptic

4) Select package cinelerra, and dependencies and install
- These packages set shmmax to 0x7fff and add non-English language
support for Cinelerra.' (http://www.64studio.com/howto_cinelerra)

And I guess everybody does no codec inconsistencies between apps
provided by Suse or by Packman for Suse.

Take care ;)!

Ralf

-- 
I'm not interested in WikiLeaks, but IMO it's much more, but just
suspect how PayPal does behave against WikiLeaks. I never used PayPal,
because I never trusted them. Anyway, people donated money for
WikiLeaks, but this money didn't reach WikiLeaks.


-- 
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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sun, 2010-12-05 at 18:19 +0100, Ralf Mardorf wrote:
 On Sun, 2010-12-05 at 18:06 +0100, Ralf Mardorf wrote:
  On Sun, 2010-12-05 at 17:56 +0100, Tommy Hjalmarsson wrote:
   On 2010-12-05 17:40, Ralf Mardorf wrote:
On Sat, 2010-12-04 at 19:18 +0200, Asmo Koskinen wrote:
https://launchpad.net/~cinelerra-ppa
   
Use it ;-)
   
Best Regards Asmo Koskinen.
My experiences with ppa are good, e.g. for Shutter by launchpad, anyway,
this kind of third party packages 'does not have to', but 'would be able
to' cause issues, especially if there are dependencies to codecs, as
there are for Cinelerra.
   
For what versions of Ubuntu Studio is Cinelerra by this repository
proved?
   
I do have got may issues, just running a 'regular' Ubuntu Studio.
   
My 2 Cents:
   
We should use such repositories, but just after doing a backup of the
hopefully stable Ubuntu Studio and then all the times we're doing an
upgrade, we should verify the sources of e.g. codecs, that are perhaps
upgraded too.
   
Cheers!
   
Ralf
   
   
   Ubuntu 8.04-10.10
   
   https://launchpad.net/~cinelerra-ppa/+archive/ppa
   https://launchpad.net/%7Ecinelerra-ppa/+archive/ppa
   
   Click on  Technical details about this PPA , select your Ubuntu
   version and follow the instruction.
  
  Is it proved by the Ubuntu Studio Community? E.g. with a memlock for rt
  audio? Etc, pp.?
  
  Again, I never had issues when installing a package by launchpad, but a
  'studio' Linux isn't a regular Linux ;).
  
  Can't any of the packages by
  http://ppa.launchpad.net/cinelerra-ppa/ppa/ubuntu/pool/main/c/cinelerra/
  cause an inconsistency?
  
  If I should need Cinelerra, I maybe would install it by this repository,
  but I also would do a backup of Ubuntu Studio before installing it.
  
  :)
  
  Ralf
 
 PS:
 
 For example, when using another repository, for another Ubuntu based
 audio distro, there is an issue.
 
 'How to setup Cinelerra in 64 Studio
 
 Cinelerra CV is an open-source non-linear video editor and is one of
 those incredible pieces of software that you just cannot believe is
 free... but that is part of the problem. 64 Studio cannot include it as
 part of the distribution because it has too many patent encumbered
 dependencies. But not to worry, if you install it yourself from other
 sources it is yours to use as you please! And this is that story...
 
 64 Studio 3.0
 8.04 Hardy Heron
 
 1) Add repository
 deb http://akirad.cinelerra.org akirad-hardy main
 
 2) Install package: akirad-keyring-and-mirrors
 
 3) Reload synaptic
 
 4) Select package cinelerra, and dependencies and install
 - These packages set shmmax to 0x7fff and add non-English language
 support for Cinelerra.' (http://www.64studio.com/howto_cinelerra)
 
 And I guess everybody does no
KNOW not NO ... pardon, not the first super-broken English mistake I
made today :S.
 codec inconsistencies between apps
 provided by Suse or by Packman for Suse.
 
 Take care ;)!
 
 Ralf
 

-- 
I'm not interested in WikiLeaks, but IMO it's much more, but just
suspect how PayPal does behave against WikiLeaks. I never used PayPal,
because I never trusted them. Anyway, people donated money for
WikiLeaks, but this money didn't reach WikiLeaks.


-- 
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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sun, 2010-12-05 at 11:32 -0600, Kenneth Koym wrote:
 Asmo: I went to cinellerra and do not understand how to Use it.
 Regrets. Kenneth
 
 On Sat, Dec 4, 2010 at 11:18 AM, Asmo Koskinen
 asmo.koski...@arkki.info wrote:
 
 https://launchpad.net/~cinelerra-ppa
 
 Use it ;-)
 
 Best Regards Asmo Koskinen.
 
 --
 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

At https://launchpad.net/~cinelerra-ppa go to the 
'Personal package archives' it does link to
https://launchpad.net/~cinelerra-ppa/+archive/ppa and there go to
'Technical details about this PPA' and use your version of Ubuntu.

If you prefer a GUI, launch Synaptic and add the line
deb http://ppa.launchpad.net/cinelerra-ppa/ppa/ubuntu lucid main, if
e.g. Lucid is your version of Ubuntu.

There also is an instruction how to add the signing key, see deb
http://ppa.launchpad.net/cinelerra-ppa/ppa/ubuntu lucid main.

BUT NOTE! I still wonder if it's proved to be ok for usage with an audio
workstation. Does the package change any settings?

Hth,

Ralf

-- 
I'm not interested in WikiLeaks, but IMO it's much more, but just
suspect how PayPal does behave against WikiLeaks. I never used PayPal,
because I never trusted them. Anyway, people donated money for
WikiLeaks, but this money didn't reach WikiLeaks.


-- 
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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sun, 2010-12-05 at 18:44 +0100, Ralf Mardorf wrote:
 On Sun, 2010-12-05 at 11:32 -0600, Kenneth Koym wrote:
  Asmo: I went to cinellerra and do not understand how to Use it.
  Regrets. Kenneth
  
  On Sat, Dec 4, 2010 at 11:18 AM, Asmo Koskinen
  asmo.koski...@arkki.info wrote:
  
  https://launchpad.net/~cinelerra-ppa
  
  Use it ;-)
  
  Best Regards Asmo Koskinen.
  
  --
  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
 
 At https://launchpad.net/~cinelerra-ppa go to the 
 'Personal package archives' it does link to
 https://launchpad.net/~cinelerra-ppa/+archive/ppa and there go to
 'Technical details about this PPA' and use your version of Ubuntu.
 
 If you prefer a GUI, launch Synaptic and add the line

TO THE REPOSITORIES, you'll find the menu yourself ;).

 deb http://ppa.launchpad.net/cinelerra-ppa/ppa/ubuntu lucid main, if
 e.g. Lucid is your version of Ubuntu.
 
 There also is an instruction how to add the signing key, see deb
 http://ppa.launchpad.net/cinelerra-ppa/ppa/ubuntu lucid main.

Oops, sorry, wrong link, it's

https://launchpad.net/+help/soyuz/ppa-sources-list.html

 
 BUT NOTE! I still wonder if it's proved to be ok for usage with an audio
 workstation. Does the package change any settings?
 
 Hth,
 
 Ralf
 

-- 
I'm not interested in WikiLeaks, but IMO it's much more, but just
suspect how PayPal does behave against WikiLeaks. I never used PayPal,
because I never trusted them. Anyway, people donated money for
WikiLeaks, but this money didn't reach WikiLeaks.


-- 
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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sun, 2010-12-05 at 19:59 +0200, Asmo Koskinen wrote:
 05.12.2010 19:32, Kenneth Koym kirjoitti:
 
  Asmo: I went to cinellerra and do not understand how to Use it. Regrets.
  Kenneth
 
 Here is howto.
 
 http://www.g-raffa.eu/Cinelerra/HOWTO/
 
 Best Regards Asmo Koskinen.


Wow, seems to be a good howto.

IMO it's better to compile Cinelerra yourself, but to use a repository.
http://www.g-raffa.eu/Cinelerra/HOWTO/compilation.html#_how_to_compile_cinelerracv_from_source_code_on_ubuntu
 , just run

sudo apt-get update, resp. use Synaptic's option to refresh the
repositories first ;).

-- 
I'm not interested in WikiLeaks, but IMO it's much more, but just
suspect how PayPal does behave against WikiLeaks. I never used PayPal,
because I never trusted them. Anyway, people donated money for
WikiLeaks, but this money didn't reach WikiLeaks.


-- 
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: Good news about Cinelerra

2010-12-05 Thread Ralf Mardorf
On Sun, 2010-12-05 at 19:08 +0100, Ralf Mardorf wrote:
 On Sun, 2010-12-05 at 19:59 +0200, Asmo Koskinen wrote:
  05.12.2010 19:32, Kenneth Koym kirjoitti:
  
   Asmo: I went to cinellerra and do not understand how to Use it. 
   Regrets.
   Kenneth
  
  Here is howto.
  
  http://www.g-raffa.eu/Cinelerra/HOWTO/
  
  Best Regards Asmo Koskinen.
 
 
 Wow, seems to be a good howto.
 
 IMO it's better to compile Cinelerra yourself, but to use a repository.
 http://www.g-raffa.eu/Cinelerra/HOWTO/compilation.html#_how_to_compile_cinelerracv_from_source_code_on_ubuntu
  , just run
 
 sudo apt-get update, resp. use Synaptic's option to refresh the
 repositories first ;).

PS:

'sudo make install'

No, install 'checkinstall' and then first try to use 'sudo
checkinstall', but (instead of) 'sudo make install' ... btw. here might
be a way to use make-dpkg or what ever it's called, to build a package
too, dunno.


-- 
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: Shifting pitch in a MIDI file?

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 12:59 +, Angel de Vicente wrote:
 Hi all,
 
 yesterday I was trying to find a way to shift the pitch in a MIDI file 
 but couldn't figure out a way to do it, so I'm looking for advice here...
 
 My situation is as follows. I have a MIDI file of a piece (for four 
 guitars), and I just want to mute one of the tracks and play along with 
 my real guitar (a sort of virtual quartet...). But the problem is that 
 the tuning of my computer is wrong (I read somewhere that DELL laptops 
 had this problem. I'm not sure, but in any case the standard A at 440Hz 
 sounds actually like a C).
 
 I could tune up my guitar, but that is quite inconvenient, specially if 
 later I want to play with more instruments, so I was hoping that I could 
 find a way to tune up or down the whole MIDI output. The Virtual 
 Keyboard has a pitch wheel, which it would be exactly what I'm looking 
 for if it could be applied to the whole MIDI output... In Rosegarden I 
 didn't find anything... In Qtractor I could load up plugins that seemed 
 promising (if I remember correctly I could find four plugins with names 
 like pitchshift, but I couldn't make them to work, plus they applied to 
 individual tracks, and not to the whole MIDI output).
 
 Any pointers?
 
 Thanks,
 Ángel de Vicente

Add a track and send Pitch to all channels, but note, that the steps for
the Pitch Wheel are defined by the synth e.g. 0 or 2 or 12 semi
steps ;). MIDI does also know a master tune, but this isn't supported by
every synth. You might have not an issue for the sample rates, regarding
to the bad tuning, I once had this too. I did a new install and the
tuning was ok.

Perhaps you can record the MIDI instruments to audio tracks and fix it
with rubberband or a pitch shift effect, if it's not to extremely out of
tune.

Hth,

Ralf


-- 
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: Shifting pitch in a MIDI file?

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 13:36 +, Angel de Vicente wrote:
 Hi,
 
 On 13/12/10 13:13, Ralf Mardorf wrote:
  Add a track and send Pitch to all channels, but note, that the steps for
  the Pitch Wheel are defined by the synth e.g. 0 or 2 or 12 semi
  steps ;). MIDI does also know a master tune, but this isn't supported by
  every synth. You might have not an issue for the sample rates, regarding
  to the bad tuning, I once had this too. I did a new install and the
  tuning was ok.
 
 You mean add a track and send the pitch (from the virtual keyboard) to 
 it? I've never done anything like this, so if you have pointers to 
 documentation that I can read in order to do this sort of thing I would 
 be grateful.
 
 
  Perhaps you can record the MIDI instruments to audio tracks and fix it
  with rubberband or a pitch shift effect, if it's not to extremely out of
  tune.
 
 This is for practice with my guitar, so I like the ability from 
 Rosegarden to change the tempo, play it slowly, and increase the speed 
 as I get better at it, so I would prefer a way to do it from the MIDI 
 sequencer.
 
 Cheers,
 Ángel de Vicente

You can add pitch shifting FX for 'virtual' synth without recording the
synth to audio tracks.


-- 
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: Shifting pitch in a MIDI file?

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 14:54 +, Ricardo Lameiro wrote:
 Nice that you found a solution, but it seems to me that you could have
 some problem with sample rates. maybe you are playing a 44.1ks/s in
 48kS/s this could pitch up or the reverse pitchdown. This is often
 overlook. maybe someone more experienced on this matter can contribute
 some ideas in here.
 
 Bye

A long time ago I had the same issue, but there were no issues regarding
to the sample rate.


-- 
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: Shifting pitch in a MIDI file?

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 17:21 -0500, Neil Jensen wrote:
 Just a thought, but maybe try a different virtual keyboard.

The keyboard has nothing to do with this issue, just the sound sources,
e.g. a virtual synth could be relevant.

If there isn't an issue regarding to sample rate conversion, I would
recommend to do an additional install, for the whole distribution, resp.
to test another distro.

 
 
 On 12/13/2010 10:06 AM, Angel de Vicente wrote:
  Hi,
 
  On 13/12/10 14:54, Ricardo Lameiro wrote:
  Nice that you found a solution, but it seems to me that you could have
  some problem with sample rates. maybe you are playing a 44.1ks/s in
  48kS/s this could pitch up or the reverse pitchdown. This is often
  overlook. maybe someone more experienced on this matter can contribute
  some ideas in here.
  I'm a complete newbie on these matters, so I might be completely wrong,
  but I thought that sample rates were relevant to audio files, but not to
  MIDI files? Well, I think the problem is not even related to the MIDI
  file: If I just play A in the Virtual Keyboard, it does not play a 440Hz
  A, it is somewhere around C.
 
  Any ideas where to look for what could be wrong with my software/computer?
 
  Thanks,
  Ángel de Vicente
 
 



-- 
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: Shifting pitch in a MIDI file?

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 22:49 +, Angel de Vicente wrote:
 Hi,
 
 On 13/12/10 17:59, Lars-Erik Helander wrote:
  I have had similar problems in the past with Qsynth and the remedy was
  - as indicated by others in this thread - to make sure that the
  sampling setting in Qsynth matches that of Jack (44100 or 48000). In
  case you are unsure how to set it up properly, press the Setup
  button of Qsynth, then select the Audio tab and try the various
  options available for Sample Rate. The ones most likely to work
  would be 44100 or 48000.
 
 yes, that was the problem. Jack was set to 48000 while Qsynth was set at 
 44100. When both are at 48000 the Free Music Instrument Tuner reports 
 a nice 440Hz Concert A with the Virtual Keyboard. But this doesn't seem 
 to affect the other synth that I tried: ZynAddSubFX: with this one, 
 either 44100 or 48000 sample rate produce a concert A in tune...
 
 In any case, I think the problem can be considered solved now. Thanks a lot,

Yep, IMO the issue is solved and a report to Rui, the coder of the
'Q'thingies  (or to the folks who program FluidSynth) might be useful.
There should be no need for musicians without technical knowledge, to
run into this trouble. Sample rate conversion should be done
automatically.

 
 Ángel de Vicente
 -- 
 http://www.iac.es/galeria/angelv/
 
 High Performance Computing Support PostDoc
 Instituto de Astrofísica de Canarias
 -
 ADVERTENCIA: Sobre la privacidad y cumplimiento de la Ley de Protección de 
 Datos, acceda a http://www.iac.es/disclaimer.php
 WARNING: For more information on privacy and fulfilment of the Law concerning 
 the Protection of Data, consult http://www.iac.es/disclaimer.php?lang=en
 
 



-- 
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: Shifting pitch in a MIDI file?

2010-12-13 Thread Ralf Mardorf
On Tue, 2010-12-14 at 01:20 +0100, Hartmut Noack wrote:
 Am 14.12.2010 00:50, schrieb Ralf Mardorf:
 
  Yep, IMO the issue is solved and a report to Rui, the coder of the
  'Q'thingies  (or to the folks who program FluidSynth) might be useful.
  There should be no need for musicians without technical knowledge, to
  run into this trouble. Sample rate conversion should be done
  automatically.
 
 No, it should not.
 
 While it is perfectly OK for a mediaplayer do handle samplerate-issues, 
   productive audio software can suffer a decrease of performance, if it 
 handles such conversions. So samplerate-conversion is clearly *not* a 
 must-have.

Full ACK, perhaps I did use the wrong words. I guess an auto-detection
about the sample rate, that is used by JACK + an automatic selection for
the used sample rate, by a virtual synth should do the trick, resp. for
soundfonts using a wrong sample rate, there might be the need to convert
it.


-- 
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: off and on sound problem

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 21:18 -0500, Douglas Pollard wrote:
 On 12/13/2010 08:25 PM, Mike Holstein wrote: 
  On Mon, Dec 13, 2010 at 8:22 PM, Douglas Pollard
  dougp...@verizon.net wrote:
  I am using Ubuntu studio 10.04.   I get sound for a while
  after start up
  but then loose it. I typed pavucontrol into the terminal.
  The volume
  control panel comes up and I get an error message
  ( connection failed:
  connection terminated).  The little speaker thingies in the
  Volume
  control are showing and X as if muted. If I restart I have
  sound for a
  while but then loose it.  If I play VLC media player sound
  stops and
  starts and beaks up and after a while it shuts down
  altogether. I would
  appreciate any help with this.  Thanks  Doug
  
  --
  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
  
  let us know what hardware your using... are you using JACK? is this
  an internal card? or a USB device? 
  
  
  you can run 
  lspci 
  in a terminal and paste that here, or
  lsusb
  
  
  i have a VIA sound device that just dies sometimes... what kernel
  are you using?
  
  
  uname -a
  
  
  have you tried other kernels?
  
  -- 
  MH
  http://www.myspace.com/mikeholstein
  
  http://opensourcemusician.libsyn.com/
  
 
 Ok here it is.  That's a good trick :-) Thanks Doug 
 
 
 lspci 
 00:00.0 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
 00:00.1 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
 00:00.2 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
 00:00.3 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
 00:00.4 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
 00:00.5 PIC: VIA Technologies, Inc. K8M890CE I/O APIC Interrupt
 Controller
 00:00.7 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
 00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI bridge
 [K8T800/K8T890 South]
 00:02.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge
 Controller
 00:03.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge
 Controller
 00:0f.0 IDE interface: VIA Technologies, Inc. Device 5372
 00:0f.1 IDE interface: VIA Technologies, Inc.
 VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 07)
 00:10.0 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
 Controller (rev b0)
 00:10.1 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
 Controller (rev b0)
 00:10.2 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
 Controller (rev b0)
 00:10.3 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1
 Controller (rev b0)
 00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 90)
 00:11.0 ISA bridge: VIA Technologies, Inc. VT8237S PCI to ISA Bridge
 00:11.7 Host bridge: VIA Technologies, Inc. VT8251 Ultra VLINK
 Controller
 00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II]
 (rev 7c)
 00:13.0 Host bridge: VIA Technologies, Inc. VT8237A Host Bridge
 00:13.1 PCI bridge: VIA Technologies, Inc. VT8237A PCI to PCI Bridge
 00:18.0 Host bridge: Advanced Micro Devices [AMD] K8
 [Athlon64/Opteron] HyperTransport Technology Configuration
 00:18.1 Host bridge: Advanced Micro Devices [AMD] K8
 [Athlon64/Opteron] Address Map
 00:18.2 Host bridge: Advanced Micro Devices [AMD] K8
 [Athlon64/Opteron] DRAM Controller
 00:18.3 Host bridge: Advanced Micro Devices [AMD] K8
 [Athlon64/Opteron] Miscellaneous Control
 01:00.0 VGA compatible controller: VIA Technologies, Inc.
 K8M890CE/K8N890CE [Chrome 9] (rev 11)
 04:06.0 FireWire (IEEE 1394): Texas Instruments TSB12LV26 IEEE-1394
 Controller (Link)
 04:07.0 Ethernet controller: Belkin Device 700f (rev 20)
 20:01.0 Audio device: VIA Technologies, Inc. VT1708/A [Azalia HDAC]
 (VIA High Definition Audio Controller) (rev 10)

Test what happens if you have
linux-backports-modules-alsa-lucid-generic installed, taken from a
German forum:
http://forum.ubuntuusers.de/topic/soundkarte-vt1708-a-funktioniert-nach-update-a/#post-2710978

Hth,

Ralf


-- 
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: off and on sound problem

2010-12-13 Thread Ralf Mardorf
On Mon, 2010-12-13 at 21:59 -0500, Douglas Pollard wrote:
 Linux ubuntu 2.6.32-27-preempt #49-Ubuntu SMP PREEMPT Thu Dec 2 03:21:34
 UTC 2010 x86_64 GNU/Linux

linux-backports-modules-alsa-lucid-generic [security] 'allows people to
keep their alsa-driver snapshot up-to-date when upgrading their Linux
kernel'

You've got a chance that this package will solve your issues by over
50% ;), because at least the kernel-preempt isn't an Ubuntu default
kernel ;).



-- 
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


  1   2   3   4   5   6   7   8   9   >