<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Arch User: Installation - suggest you use AUR - Welcome Area				            </title>
            <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/</link>
            <description>The artists\&#039; meeting place for creative exchange and discussion.</description>
            <language>fr-FR</language>
            <lastBuildDate>Thu, 05 Mar 2026 13:59:06 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1784</link>
                        <pubDate>Wed, 16 Jun 2021 18:50:33 +0000</pubDate>
                        <description><![CDATA[@DeLinuxCo
Of course, we and the users will be interested ! Thanks for the update.]]></description>
                        <content:encoded><![CDATA[<p>@DeLinuxCo</p>
<p>Of course, we and the users will be interested ! Thanks for the update.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>phylsmith2004</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1784</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1783</link>
                        <pubDate>Wed, 16 Jun 2021 18:11:17 +0000</pubDate>
                        <description><![CDATA[If anyone is interested, I have created an AUR package for Cinelerra as an AppImage, just search the AUR for cin-appimage.
I had to remove Cinelerra from my distro because the regular binar...]]></description>
                        <content:encoded><![CDATA[<p>If anyone is interested, I have created an AUR package for Cinelerra as an AppImage, just search the AUR for cin-appimage.</p>
<p>I had to remove Cinelerra from my distro because the regular binary missing dependencies in Arch. The AppImage as a package works really well, I include it in my little distro, the nice thing of installing an appimage as a package, is that to the user, the interaction is the same. I find appimages to be a great alternative to complex/larger applications.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>DeLinuxCo</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1783</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1358</link>
                        <pubDate>Thu, 01 Oct 2020 20:22:42 +0000</pubDate>
                        <description><![CDATA[@capslock
Thanks for sharing as this should prove useful to other Arch users.  The day before we do the builds on the last day of the month, we make it a point to upgrade our Arch O/S so th...]]></description>
                        <content:encoded><![CDATA[<p>@capslock</p>
<p>Thanks for sharing as this should prove useful to other Arch users.  The day before we do the builds on the last day of the month, we make it a point to upgrade our Arch O/S so that at least for 1 day! it is in synch.  Unfortunately, unless a user builds CinGG themselves on an as needed basic, when Arch updates certain libraries between the monthly builds it can break Cinelerra.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>PhyllisSmith</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1358</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1357</link>
                        <pubDate>Thu, 01 Oct 2020 19:29:25 +0000</pubDate>
                        <description><![CDATA[Hi there,
on Arch I faced the problem, that usually between two releases of cin-gg the one or another video or sound lib gets updated and cin-gg won&#039;t start.
Now I download the static sing...]]></description>
                        <content:encoded><![CDATA[<p>Hi there,</p>
<p>on Arch I faced the problem, that usually between two releases of cin-gg the one or another video or sound lib gets updated and cin-gg won't start.</p>
<p>Now I download the static single user build and leave the latest version in my download directory. I wrote a script that roughly does this:</p>
<p>1. checks if in my /tmp directory is already an extracted version of cin-gg<br />2. if so: start the cin-gg instance from /tmp<br />2. if not: extract cin-gg into /tmp and start it</p>
<p>So, I know there could be much more sophisticated features, because the script assumes that there is only one file starting with "cinelerra" in the download directory. But it does what it should and I keep the last running version and rename it to "old_cinelerra..." before downloading the new release.</p>
<p>If you find it helpful feel free to use the script and you may want to adjust the directory to copy cin-gg from and the directory where cin-gg is extracted. And make sure you have the programs installed to extract txz files and untar them.</p>
<p>Cheers<br />Achim</p>
<p>------------------------------------------------------</p>
<pre>#!/bin/bash<br /><br /># check if cin-gg is already extracted<br />if ; then<br />  # extract cinlerra<br />  mkdir /tmp/cinelerra<br />  cp ~/Downloads/cinelerra-*.txz /tmp<br />  xz --decompress /tmp/cinelerra-*.txz<br />  tar -xf /tmp/cinelerra*.tar -C /tmp/cinelerra<br />  rm /tmp/cinelerra-*.tar<br />fi<br /><br /># start cinelerra<br />/tmp/cinelerra/cin</pre>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>capslock</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1357</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1191</link>
                        <pubDate>Wed, 01 Jul 2020 08:10:10 +0000</pubDate>
                        <description><![CDATA[Old Cinelerra-CV was taken out of Arch&#039;s repositorysame goes for Cinelerra-GG.I do not recommend using cin-git from AUR, for the same reasons expressed in the email.It&#039;s better to compile ou...]]></description>
                        <content:encoded><![CDATA[<p>Old Cinelerra-CV was taken out of Arch's repository:<br />https://lists.cinelerra-cv.org/pipermail/cinelerra/2018q4/010726.html<br />The same goes for Cinelerra-GG.<br />I do not recommend using cin-git from AUR, for the same reasons expressed in the email.<br />It's better to compile ourselves by git or use the binaries prepared every month by GG.<br />Note that not using Arch's repositories doesn't lead to problems; we don't even have to be root for the installation!</p>
<p>About my ./config:</p>
<p>--prefix=/usr<br />This is from GG. Actually, it works for me without it.</p>
<p>--without-oss <br />Never used the OSS sound server; I take it out, but leaving it is the same. --with-single-user<br />Recommended by GG (and manual)</p>
<p>--with-booby<br />Serves GG: in case of problems provides additional info in the log.</p>
<p>Note: instead of using my steps, after downloading and entering the CinGG folder, you can run the GG script:</p>
<pre><br />$ bld.sh</pre>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>andreapaz</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1191</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1190</link>
                        <pubDate>Tue, 30 Jun 2020 22:21:18 +0000</pubDate>
                        <description><![CDATA[I still got errors compiling the AUR. I am going to create a new VM, install the dependencies from: 
and then try the git method you used, as I see you added some switches I did not know ab...]]></description>
                        <content:encoded><![CDATA[<p>I still got errors compiling the AUR. I am going to create a new VM, install the dependencies from: </p>
<p>https://cinelerra-gg.org/download/README.arch</p>
<p>and then try the git method you used, as I see you added some switches I did not know about.</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>Arch_Semi_Newb</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1190</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1189</link>
                        <pubDate>Mon, 29 Jun 2020 09:10:09 +0000</pubDate>
                        <description><![CDATA[For compilig from Git I use the follows steps:
$ git clone --depth 1 &quot;git://git.cinelerra-gg.org/goodguy/cinelerra.git&quot; cinelerra5
$ cd /home/USER/cinelerra5/cinelerra-5.1
$ ./autogen.sh...]]></description>
                        <content:encoded><![CDATA[<p>For compilig from Git I use the follows steps:</p>
<pre>$ git clone --depth 1 "git://git.cinelerra-gg.org/goodguy/cinelerra.git" cinelerra5
$ cd /home/USER/cinelerra5/cinelerra-5.1
$ ./autogen.sh
$ ./configure --prefix=/usr --without-oss --with-single-user --with-booby
$ make &amp;&amp; make install 2&gt;&amp;1 | tee cin5.log</pre>
<p>And starting from terminal:</p>
<pre>$ /home/UDER/cinelerra5/cinelerra-5.1/bin/./cin</pre>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>andreapaz</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1189</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1188</link>
                        <pubDate>Mon, 29 Jun 2020 08:52:10 +0000</pubDate>
                        <description><![CDATA[@andreapaz
Yes, I read the instructions for Arch and those are all installed, also ran across python2 missing and possibly openexr missing. Compiling. Again ;)]]></description>
                        <content:encoded><![CDATA[<p>@andreapaz</p>
<p>Yes, I read the instructions for Arch and those are all installed, also ran across python2 missing and possibly openexr missing. Compiling. Again ;)</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>Arch_Semi_Newb</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1188</guid>
                    </item>
				                    <item>
                        <title>RE: Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1187</link>
                        <pubDate>Mon, 29 Jun 2020 07:31:56 +0000</pubDate>
                        <description><![CDATA[Hi,for Arch there are dependencies that are not installed automatically. Their absence leads to installation errors. Check if you have all the dependencies on this file]]></description>
                        <content:encoded><![CDATA[<p>Hi,<br />for Arch there are dependencies that are not installed automatically. Their absence leads to installation errors. Check if you have all the dependencies on this file:<br />https://cinelerra-gg.org/download/README.arch</p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>andreapaz</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1187</guid>
                    </item>
				                    <item>
                        <title>Arch User: Installation - suggest you use AUR</title>
                        <link>https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1186</link>
                        <pubDate>Mon, 29 Jun 2020 05:15:05 +0000</pubDate>
                        <description><![CDATA[After trying the Arch User Install for Cinelerra where you modify the pacman.conf file, that failed with missing libraries. Then I tried git install using git clone. Failed to compile with e...]]></description>
                        <content:encoded><![CDATA[<p>After trying the Arch User Install for Cinelerra where you modify the pacman.conf file, that failed with missing libraries. Then I tried git install using git clone. Failed to compile with errors.<br />Troubleshooting either of the above is above my pay grade at the moment.</p>
<p>So, on to the AUR (Arch User Repository)<br />I installed yay, then did yay -S cin-git, which should install Cinelerra-GG.<br /><br /></p>
<p>Let's see how that goes.   </p>]]></content:encoded>
						                            <category domain="https://cinelerra-gg.org/fr/forum/welcome-area/">Welcome Area</category>                        <dc:creator>Arch_Semi_Newb</dc:creator>
                        <guid isPermaLink="true">https://cinelerra-gg.org/fr/forum/welcome-area/arch-user-installation-suggest-you-use-aur/#post-1186</guid>
                    </item>
							        </channel>
        </rss>
		