April 9, 2008 · General · Email This Post

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Cinelerra is a free and open source software non-linear video editing system for the Linux operating system. (However, it has also been successfully ported to Mac OS X.) It is produced by Heroine Virtual, and is distributed under the GNU General Public License. Cinelerra also includes a video compositing engine, allowing the user to perform common compositing operations such as keying and mattes.

Install Cinelerra in Ubuntu Gutsy

First you need to edit the sources.list file using the following command

sudo gedit /etc/apt/sources.list

and enter the following lines

For 32 bit users

deb http://giss.tv/~vale/ubuntu32 ./
deb-src http://giss.tv/~vale/ubuntu32 ./

For 64 bit users

deb http://giss.tv/~vale/ubuntu64 ./

Save and exit the file.

Now you need to update the source list using the following command

sudo apt-get update

Install Cinelerra using the following command

sudo aptitude install cinelerra

This will complete the installation

Now open terminal and type

sudo gedit /etc/sysctl.conf

And add this line to the bottom of the file this adds the extra memory for Cinelerra to run properly

kernel/shmmax=0×7fffffff

Now save and close and run this command (instead of rebooting):

sudo sysctl -p

Using Cinelerra

If you want to open go to Applications—>Sound & Video—>Cinelerra

Cinelerra is loading

Once it opens you should see similar to the following screen

Cinelerra Screenshot

Common Problem

When you try to launch Cinelerra you have to fix this error:

“cinelerra: error while loading shared libraries: libGL.so.1.2: cannot open shared object file: No such file or directory”

Solution

sudo ln -s /usr/lib/libGL.so.1 /usr/lib/libGL.so.1.2

  • Share/Save/Bookmark

Related Articles

9 Comments to “Howto install Cinelerra in ubuntu gutsy gibbon”

  1. tubuntu says:

    sudo sysctl -p
    kernel.printk = 4 4 1 7
    kernel.maps_protect = 1

    error: “Invalid argument” setting key “kernel.shmmax”

    what wrong?

  2. talen says:

    Try inserting this line in /etc/sysctl.conf, in place of the one given in the article:

    kernel.shmmax = 2147483647

    It’s the same thing, actually .. only, the number has been converted from Hex to Dec ;)

  3. Jason says:

    I’m sure everyone can figure this out on their own, but just in case someone is having problems who is new, it’s actually sudo aptitude install cinelerra instead of Cinelerra.

  4. admin says:

    thanks jason.I have updated the article

  5. JohnC says:

    Still no joy on this.

    I’ve done the shmmax thing & the sudo ln -s thing but now I have a core dump, so…
    ———-
    john@JC-PC3:~$ cinelerra
    Cinelerra 2.1CV (C) 2006 Heroine Virtual Ltd.
    Compiled on vie feb 8 22:19:48 CET 2008

    Cinelerra is free software, covered by the GNU General Public License,
    and you are welcome to change it and/or distribute copies of it under
    certain conditions. There is absolutely no warranty for Cinelerra.

    Illegal instruction (core dumped) ****!!!
    ———–

    System is Kubuntu 7.10 on an Athlon XP 2200
    Linux 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686 GNU/Linux

    A fix, or any clues, gratefully reveived !

    Thanks

    JohnC

  6. David D says:

    Got it installed and working, but will not read MOV quicktime movies captured with my camera…any help?

  7. David D says:

    Error reading MOV file is:

    virtual int FileMOV::read_frame(VFrame*): quicktime_read_frame/quicktime_decode_video failed, result:

  8. Eric B says:

    I had the same problem as JohnC with core dumps.

    According to

    http://cinelerra.org/getting_cinelerra.php

    the version of Cinelerra from deb http://giss.tv/~vale/ubuntu32 ./ does not work with AMD systems. You need to uninstall and add the following repository and install from that instead:

    deb http://repository.akirad.net/ akirad-gutsy main

  9. Stupac says:

    I can’t seem to get cinelerra installed, here’s what I get:

    The following packages have unmet dependencies:
    cinelerra: Depends: libopenexr2c2a (>= 1.2.2) but it is not installable
    E: Broken packages

    Can’t seem to install libopenexr2c2a as it is replaced by libopenexr2ldbl which will break other important packages if uninstalled. Any ideas?

Leave a Reply