个人工具

“UbuntuHelp:CinelerraOnFeistyAMD64”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/CinelerraOnFeistyAMD64}} {{Languages|UbuntuHelp:CinelerraOnFeistyAMD64}} == Introduction == This howto will show how to install Cinelerra on Ubun...)
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/CinelerraOnFeistyAMD64}}
 
{{From|https://help.ubuntu.com/community/CinelerraOnFeistyAMD64}}
 
{{Languages|UbuntuHelp:CinelerraOnFeistyAMD64}}
 
{{Languages|UbuntuHelp:CinelerraOnFeistyAMD64}}
 
 
== Introduction ==
 
== Introduction ==
 
This howto will show how to install Cinelerra on Ubuntu Feisty 64-bit from additional repositories without compiling from source. Currently, there is no repository for Cinelerra on Feisty 64-bit, however it installs fine using a third-party repository for Edgy 64-bit. I am assuming a default Ubuntu Desktop installation.
 
This howto will show how to install Cinelerra on Ubuntu Feisty 64-bit from additional repositories without compiling from source. Currently, there is no repository for Cinelerra on Feisty 64-bit, however it installs fine using a third-party repository for Edgy 64-bit. I am assuming a default Ubuntu Desktop installation.
 
 
== Pre-installation ==
 
== Pre-installation ==
 
=== Add the universe and multiverse repositories for Ubuntu ===
 
=== Add the universe and multiverse repositories for Ubuntu ===
 
=== Add the Cinelerra repository ===
 
=== Add the Cinelerra repository ===
 
Type the following to edit your sources.list file:
 
Type the following to edit your sources.list file:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$sudo nano /etc/apt/sources.list
 
$sudo nano /etc/apt/sources.list
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Enter your password. Add the following line at the bottom of the file:
 
Enter your password. Add the following line at the bottom of the file:
 
 
deb http://giss.tv/~vale/ubuntu64 ./
 
deb http://giss.tv/~vale/ubuntu64 ./
 
 
This adds Valentina Messeri's repository for Ubuntu Edgy 64-bit. It works fine for me with Feisty 64-bit.
 
This adds Valentina Messeri's repository for Ubuntu Edgy 64-bit. It works fine for me with Feisty 64-bit.
 
 
== Installation ==
 
== Installation ==
 
Open up Synaptic Package Manager from System->Administration. Click the Reload button to include the new repositories you added. Next, do a search for 'cinelerra', click the checkbox for cinelerra, and apply it.
 
Open up Synaptic Package Manager from System->Administration. Click the Reload button to include the new repositories you added. Next, do a search for 'cinelerra', click the checkbox for cinelerra, and apply it.
 
 
== Post-installation ==
 
== Post-installation ==
 
The first time Cinelerra is run it pops up with a message to run a command before Cinelerra starts. We will create a script that runs on startup so it does not need to be typed each time before Cinelerra is run. First, create the file to be used for the script.
 
The first time Cinelerra is run it pops up with a message to run a command before Cinelerra starts. We will create a script that runs on startup so it does not need to be typed each time before Cinelerra is run. First, create the file to be used for the script.
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$sudo nano /etc/init.d/local
 
$sudo nano /etc/init.d/local
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Copy and paste the following into the file:
 
Copy and paste the following into the file:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
#!/bin/sh
 
#!/bin/sh
第38行: 第27行:
 
echo "0x7fffffff" > /proc/sys/kernel/shmmax
 
echo "0x7fffffff" > /proc/sys/kernel/shmmax
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Now we need to make the script we created executable. Run the following command:
 
Now we need to make the script we created executable. Run the following command:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$sudo chmod 755 /etc/init.d/local
 
$sudo chmod 755 /etc/init.d/local
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Next, we need to set it to start when your computer boots. We will set it to start on run levels 2 through 5. Run the following command:
 
Next, we need to set it to start when your computer boots. We will set it to start on run levels 2 through 5. Run the following command:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$sudo update-rc.d local start 99 2 3 4 5 .
 
$sudo update-rc.d local start 99 2 3 4 5 .
 
</nowiki></pre>
 
</nowiki></pre>
 
 
== Running Cinelerra ==
 
== Running Cinelerra ==
 
Go ahead and reboot your computer so the script you created will run. Cinelerra can be accessed from Applications->Sound & Video->Cinelerra
 
Go ahead and reboot your computer so the script you created will run. Cinelerra can be accessed from Applications->Sound & Video->Cinelerra
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年11月30日 (五) 16:28的版本

Introduction

This howto will show how to install Cinelerra on Ubuntu Feisty 64-bit from additional repositories without compiling from source. Currently, there is no repository for Cinelerra on Feisty 64-bit, however it installs fine using a third-party repository for Edgy 64-bit. I am assuming a default Ubuntu Desktop installation.

Pre-installation

Add the universe and multiverse repositories for Ubuntu

Add the Cinelerra repository

Type the following to edit your sources.list file:

$sudo nano /etc/apt/sources.list

Enter your password. Add the following line at the bottom of the file: deb http://giss.tv/~vale/ubuntu64 ./ This adds Valentina Messeri's repository for Ubuntu Edgy 64-bit. It works fine for me with Feisty 64-bit.

Installation

Open up Synaptic Package Manager from System->Administration. Click the Reload button to include the new repositories you added. Next, do a search for 'cinelerra', click the checkbox for cinelerra, and apply it.

Post-installation

The first time Cinelerra is run it pops up with a message to run a command before Cinelerra starts. We will create a script that runs on startup so it does not need to be typed each time before Cinelerra is run. First, create the file to be used for the script.

$sudo nano /etc/init.d/local

Copy and paste the following into the file:

#!/bin/sh
#local boot script
#Entry for Cinelerra
echo "0x7fffffff" > /proc/sys/kernel/shmmax

Now we need to make the script we created executable. Run the following command:

$sudo chmod 755 /etc/init.d/local

Next, we need to set it to start when your computer boots. We will set it to start on run levels 2 through 5. Run the following command:

$sudo update-rc.d local start 99 2 3 4 5 .

Running Cinelerra

Go ahead and reboot your computer so the script you created will run. Cinelerra can be accessed from Applications->Sound & Video->Cinelerra