3

I am trying to install the video editor cinelerra but the install file is (.txz). I've been looking and I can only find things that explain how to install .tgz or .tar.xz files and such. Could anyone help me with this?

Edit: I now have it installed, when I try to run it, it doesn't do anything. I'm going to try rebooting then I'll add another edit.

tactic
  • 31

2 Answers2

4

.txz is short for .tar.xz, just as .tgz is short for .tar.gz. You can unpack it like a .tar.xz archive:

Run tar xf *archive*.txz, since tar will automatically figure out how an archive is compressed and decompress accordingly.

Assuming you downloaded this file (or that one), linked to from here and listed under "Ubuntu 14," there are a few points to keep in mind:

  1. Most archives for software kindly keep everything in a top-level folder, but this one doesn't! Therefore, I suggest creating a cinelerra folder, putting the archive in the folder (or downloading it to there in the first place, if you haven't already), and unpacking it there:

    mkdir cinelerra
    cd cinelerra
    wget http://cinelerra.org/2015/downloads/cinelerra-4.6.mod-ubuntu-14.04.1-x86_64.txz
    tar xf cinelerra-4.6.mod-ubuntu-14.04.1-x86_64.txz
    
  2. Generic instructions for installing software from compressed tar archives are often instructions for installing from source, as source code is commonly packaged this way. However, Cinelerra is distributed for Ubuntu as a precompiled binary in a compressed tar archive. Thus, as the README file says:

    Run `./cinelerra` from this directory.  That's it.
    
grooveplex
  • 2,506
  • 3
  • 27
  • 35
Eliah Kagan
  • 119,640
2

A .tgz or a .tar.xz file is not an installer, but a compressed tar archive. You need to decompress and to extract the archive to access the files inside it:

  1. Open a Terminal by hitting Ctrl+Alt+t
  2. Create a new folder to hold the extracted files, for example to create a folder in your Home named extracted_files run the following command: mkdir ~/extracted_files
  3. Decompress and extract the archive by running the following command: tar xf <.tgz_.tar.xz_file_path> -C ~/extracted_files, where <.tgz_.tar.xz_file_path> is the path of the .tgz or .tar.xz file
kos
  • 41,268