Personal tools
The Open Lighting Project has moved!

We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.

Difference between revisions of "LLA, OpenDMX USB and Q Light Controller Tutorial"

From wiki.openlighting.org

Jump to: navigation, search
(Undo revision 2613 by 200.144.28.60 (Talk))
(Undo revision 2612 by 201.6.244.42 (Talk))
Line 16: Line 16:
 
magic story very thanks <a href=" http://iewumu.notlong.com ">sites like tube8</a>  8[[[ <a href=" http://ueghay.notlong.com ">free xmovies</a>  ktrak <a href=" http://aiwuhu.notlong.com ">free xrated</a>  440 <a href=" http://eimoos.notlong.com ">freexnxx bangedup</a>  607897 <a href=" http://mahghav.notlong.com ">xhamsters videos</a>  tgy
 
magic story very thanks <a href=" http://iewumu.notlong.com ">sites like tube8</a>  8[[[ <a href=" http://ueghay.notlong.com ">free xmovies</a>  ktrak <a href=" http://aiwuhu.notlong.com ">free xrated</a>  440 <a href=" http://eimoos.notlong.com ">freexnxx bangedup</a>  607897 <a href=" http://mahghav.notlong.com ">xhamsters videos</a>  tgy
  
Hello good day <a href=" http://www.justin.tv/trinitysa/profile ">ro89</a>  qibmk
+
==Download and install the latest build of QLC==
 +
====Ubuntu====
 +
Finally!  There are Ubuntu/Debian packages, but at the time of writing they're not the most up-to-date and don't include the LLA plugin.  You could compile from source, but the most recent RPM packages work fine and save time and hassle.
 +
 
 +
<code><pre>
 +
cd ~/dmx-software
 +
wget http://rpms.netmindz.net/FC6/i386/RPMS.netmindz/qlc-2.6.1-2.fc6.i386.rpm
 +
</pre></code>
 +
 
 +
'''Update:''' the above source is currently not working.  You will need to find a version of QLC with the LLA patches, try http://www.lpcollier.net/QLC_OpenDMX.html or contacting the QLC development mailing list https://lists.sourceforge.net/lists/listinfo/qlc-devel
 +
 
 +
'''Update update:''' the source above is back online, so if you prefer to download the rpm and use alien you can, or else download the deb file from Lee Collier's site http://www.lpcollier.net/QLC_OpenDMX.html and skip the next step.
 +
 
 +
<code><pre>
 +
sudo alien qlc-2.6.1-2.fc6.i386.rpm
 +
</pre></code>
 +
 
 +
wait a long time...  (don't worry about the warnings)... then:
 +
 
 +
<code><pre>
 +
sudo dpkg -i qlc-2.6.1-2.fc6.i386.deb
 +
sudo apt-get install libqt3-mt
 +
</pre></code>
 +
 
 +
====Centos/Fedora====
 +
 
 +
<code><pre>
 +
yum install qlc
 +
</pre></code>
 +
 
 +
 
 +
Now try it:
 +
 
 +
<code><pre>
 +
sudo qlc &
 +
</pre></code>
 +
 
 +
QLC should run OK. Don't get too excited yet, there's one more step...
  
 
==Put it all together==
 
==Put it all together==

Revision as of 23:50, 13 January 2009


It's serious <a href=" http://www.justin.tv/mariasa/profile ">lesbian tube porn video</a> 8-)

I'm happy very good site <a href=" http://ru.justin.tv/joseffxz/profile ">free yobt porn</a> 911

this is be cool 8) <a href=" http://www.justin.tv/nicolena/profile ">animal porn tubes</a> fljyv

Hi! its cool blya! http://eduzei.notlong.com http://giecia.notlong.com http://aloosa.notlong.com

Best Site good looking <a href=" http://www.justin.tv/makaylas/profile ">hard sex tube</a>  %[[[

magic story very thanks <a href=" http://iewumu.notlong.com ">sites like tube8</a> 8[[[ <a href=" http://ueghay.notlong.com ">free xmovies</a> ktrak <a href=" http://aiwuhu.notlong.com ">free xrated</a> 440 <a href=" http://eimoos.notlong.com ">freexnxx bangedup</a> 607897 <a href=" http://mahghav.notlong.com ">xhamsters videos</a> tgy

Download and install the latest build of QLC

Ubuntu

Finally! There are Ubuntu/Debian packages, but at the time of writing they're not the most up-to-date and don't include the LLA plugin. You could compile from source, but the most recent RPM packages work fine and save time and hassle.

cd ~/dmx-software
wget http://rpms.netmindz.net/FC6/i386/RPMS.netmindz/qlc-2.6.1-2.fc6.i386.rpm

Update: the above source is currently not working. You will need to find a version of QLC with the LLA patches, try http://www.lpcollier.net/QLC_OpenDMX.html or contacting the QLC development mailing list https://lists.sourceforge.net/lists/listinfo/qlc-devel

Update update: the source above is back online, so if you prefer to download the rpm and use alien you can, or else download the deb file from Lee Collier's site http://www.lpcollier.net/QLC_OpenDMX.html and skip the next step.

sudo alien qlc-2.6.1-2.fc6.i386.rpm

wait a long time... (don't worry about the warnings)... then:

sudo dpkg -i qlc-2.6.1-2.fc6.i386.deb
sudo apt-get install libqt3-mt

Centos/Fedora

yum install qlc


Now try it:

sudo qlc &

QLC should run OK. Don't get too excited yet, there's one more step...

Put it all together

We now need a script that will start the lla daemon, patch the adaptor to the DMX universe (QLC uses 1 by default, LLA uses 0) and start QLC. This should do it:

#!/bin/bash
gksudo killall llad
sleep 2s
sudo llad
sleep 5s
sudo lla_patch -d2 -p0 -u1
sleep 2s
sudo qlc &

save it as something memorable (I use qlc-start) and make sure it's executable:

chmod u+x qlc-start

and you're away!