<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Ubuntu Linux Help &#187; ffmpeg</title> <atom:link href="http://ubuntulinuxhelp.com/tag/ffmpeg/feed/" rel="self" type="application/rss+xml" /><link>http://ubuntulinuxhelp.com</link> <description>Tips, Tricks and How To&#039;s for the Ubuntu Linux User</description> <lastBuildDate>Thu, 19 Jan 2012 13:15:19 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=</generator> <item><title>Installing ffmpeg-php on an Ubuntu 9.04 LAMP Server</title><link>http://ubuntulinuxhelp.com/installing-ffmpeg-php-on-an-ubuntu-9-04-lamp-server/</link> <comments>http://ubuntulinuxhelp.com/installing-ffmpeg-php-on-an-ubuntu-9-04-lamp-server/#comments</comments> <pubDate>Wed, 09 Jun 2010 17:05:30 +0000</pubDate> <dc:creator>Roger Wheatley</dc:creator> <category><![CDATA[How To]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[ffmpeg]]></category> <category><![CDATA[flvtool]]></category> <category><![CDATA[how to]]></category> <category><![CDATA[install]]></category> <category><![CDATA[mysql]]></category> <category><![CDATA[phpmyadmin]]></category> <category><![CDATA[proftpd]]></category> <category><![CDATA[ruby]]></category> <category><![CDATA[webserver]]></category><guid
isPermaLink="false">http://ubuntulinuxhelp.com/?p=1835</guid> <description><![CDATA[&#8220;Chokri&#8221;  commented on the post &#8220;Installing an Ubuntu Linux Hardy 8.04 LAMP and FFMpeg Server With a GUI – LAMP installation with cgi-bin&#8220;, asking: &#8220;&#8230;I have trouble while installing ffmpeg-php, I downloaded the tar file but while executing the make command, I obtain stop, what to do?&#8230;&#8221; Well, it&#8217;s been a while since I played [...]]]></description> <content:encoded><![CDATA[<p>&#8220;Chokri&#8221;  commented on the post &#8220;<a
href="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/" title="Installing an Ubuntu Linux Hardy 8.04 LAMP and FFMpeg Server With a GUI – LAMP installation with cgi-bin"  target="_self">Installing an Ubuntu Linux Hardy 8.04 LAMP and FFMpeg Server With a GUI – LAMP installation with cgi-bin</a>&#8220;, asking:</p><p><em><span
style="color: #008000;">&#8220;&#8230;I have trouble while installing ffmpeg-php, I downloaded the tar file but while executing the make command, I obtain stop, what to do?&#8230;&#8221;</span></em></p><p>Well, it&#8217;s been a while since I played with fmpeg-php on Ubuntu 8.04, I&#8217;ve since (about a year ago, if I remember correctly) installed a 9.04 based Ubuntu LAMP server. I use that server as a local development server for WordPress based sites, video based sites (as well as traditional xhtml sites), etc.</p><p>Without too much further (verbose) discussion, here are the commands I used to get this server up and running (on Ubuntu 9.04). It&#8217;s still working today, and is a great WordPress and site development environment!</p><p>Install your base 9.04 server as is. DO NOT select LAMP server install.</p><p>Then start getting the tools and services you need installed&#8230;</p><p>Video sites will need the flvtool (Yamdi is a Meta Data injector for flv):</p><p><strong><span
style="color: #ff6600;">sudo aptitude install flvtool2 yamdi</span></strong></p><p>Of course we&#8217;ll need a database:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install mysql-server mysql-client libmysqlclient15-dev</span></strong></p><p>Now we need a web server:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install apache2 apache2-doc apache2-mpm-prefork apache2-utils libexpat1 ssl-cert</span></strong></p><p>Let&#8217;s get some of the plugins we&#8217;ll need (ffmpeg-php, for example):<span
id="more-1835"></span></p><p><strong><span
style="color: #ff6600;">sudo aptitude install libapache2-mod-php5 libapache2-mod-ruby libapache2-mod-python php5 php5-common php5-curl php5-dev php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-mysql php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-ffmpeg php5-json php5-ps</span></strong></p><p>Let&#8217;s make sure we enable some mods:</p><p><strong><span
style="color: #ff6600;">sudo gedit /etc/apache2/mods-available/dir.conf</span></strong></p><p><span
style="color: #0000ff;">sudo a2enmod ssl<br
/> sudo a2enmod rewrite<br
/> # sudo a2enmod suexec<br
/> a2enmod include<br
/> # sudo a2enmod dav_fs<br
/> # sudo a2enmod dav</span></p><p>Save and close dir.conf</p><p>Then restart apache2:</p><p><strong><span
style="color: #ff6600;">sudo /etc/init.d/apache2 restart</span></strong></p><p>FTP would be nice to install, that way I can work somewhere else and upload the files if I&#8217;m not local:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install proftpd ucf gproftpd</span></strong><br
/> (Install as inetd because we assume only a few connections a day, not high volume, in this scenario, running as inetd will save resources &#8211; Remember, this is just for dev work, it&#8217;s not a public production server!)</p><p>I want phpMyAdmin. Please give me a GUI to create databases and users / permissions, etc.:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install phpmyadmin</span></strong></p><p>Test server&#8230; Overrides are not working. Let&#8217;s edit the config:</p><p><strong><span
style="color: #ff6600;">sudo gedit /etc/apache2/sites-available/default</span></strong></p><p>Ah ha! Default for <strong><span
style="color: #0000ff;">AllowOverride</span></strong> is set as: <strong>none</strong>, should be set to: <strong><span
style="color: #ff0000;">all</span></strong></p><p>File now looks like this:</p><p><span
style="color: #0000ff;">&lt;VirtualHost *:80&gt;<br
/> ServerAdmin webmaster@localhost</span></p><p><span
style="color: #0000ff;">DocumentRoot /var/www<br
/> &lt;Directory /&gt;<br
/> Options FollowSymLinks<br
/> AllowOverride all<br
/> &lt;/Directory&gt;<br
/> &lt;Directory /var/www/&gt;<br
/> Options Indexes FollowSymLinks MultiViews<br
/> AllowOverride all<br
/> Order allow,deny<br
/> allow from all<br
/> &lt;/Directory&gt;</span></p><p><span
style="color: #0000ff;">ScriptAlias /cgi-bin/ /var/www/cgi-bin/<br
/> &lt;Directory &#8220;/var/www/cgi-bin&#8221;&gt;<br
/> AllowOverride all<br
/> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch<br
/> Order allow,deny<br
/> Allow from all<br
/> &lt;/Directory&gt;</span></p><p><span
style="color: #0000ff;">ErrorLog /var/log/apache2/error.log</span></p><p><span
style="color: #0000ff;"># Possible values include: debug, info, notice, warn, error, crit,<br
/> # alert, emerg.<br
/> LogLevel warn</span></p><p><span
style="color: #0000ff;">CustomLog /var/log/apache2/access.log combined</span></p><p><span
style="color: #0000ff;">Alias /doc/ &#8220;/usr/share/doc/&#8221;<br
/> &lt;Directory &#8220;/usr/share/doc/&#8221;&gt;<br
/> Options Indexes MultiViews FollowSymLinks<br
/> AllowOverride all<br
/> Order deny,allow<br
/> Deny from all<br
/> Allow from 127.0.0.0/255.0.0.0 ::1/128<br
/> &lt;/Directory&gt;</span></p><p><span
style="color: #0000ff;">&lt;/VirtualHost&gt;</span></p><p>Okay, we&#8217;ll have to reload Apache for the changes to take effect:</p><p><strong><span
style="color: #ff6600;">sudo /etc/init.d/apache2 restart</span></strong></p><p>I&#8217;m getting a prompt that there is mail in the root mailbox, is there an easy way (for me) to quickly read it:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install alpine</span></strong></p><p>I want to read the message(s), I need to be root to do this:</p><p><strong><span
style="color: #ff6600;">sudo su</span></strong></p><p>Start Apline and read messages:</p><p><strong><span
style="color: #ff6600;">alpine</span></strong></p><p>Drop out of &#8220;root&#8221; after I&#8217;ve read messages and closed Alpine:</p><p><strong><span
style="color: #ff6600;">exit</span></strong></p><p>Let&#8217;s get Ruby:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install ruby ri rdoc libmysql-ruby ruby1.8-dev irb1.8 libdbd-mysql-perl libdbi-perl libmysql-ruby1.8 libmysqlclient15off libnet-daemon-perl libplrpc-perl libreadline-ruby1.8 libruby1.8 rdoc1.8 ri1.8 ruby1.8 irb libopenssl-ruby libopenssl-ruby1.8 libhtml-template-perl</span></strong></p><p>&#8230;and do an upgrade&#8230;</p><p><strong><span
style="color: #ff6600;">sudo aptitude safe-upgrade</span></strong></p><p>Create needed links:</p><p>sudo ln -s /usr/bin/gem1.8 /usr/local/bin/gem<br
/> sudo ln -s /usr/bin/ruby1.8 /usr/local/bin/ruby<br
/> sudo ln -s /usr/bin/rdoc1.8 /usr/local/bin/rdoc<br
/> sudo ln -s /usr/bin/ri1.8 /usr/local/bin/ri<br
/> sudo ln -s /usr/bin/irb1.8 /usr/local/bin/irb</p><p>Time for a Rails:</p><p><strong><span
style="color: #ff6600;">sudo gem install rails</span></strong></p><p>Oops&#8230; access problems, maybe my default (I goofed in a couple edits)&#8230;</p><p><strong><span
style="color: #ff6600;">sudo gedit /etc/apache2/sites-enabled/000-default</span></strong></p><p>File now reads as:</p><p><span
style="color: #0000ff;">&lt;VirtualHost *:80&gt;<br
/> ServerAdmin webmaster@localhost</span></p><p><span
style="color: #0000ff;">DocumentRoot /var/www<br
/> &lt;Directory /&gt;<br
/> Options FollowSymLinks<br
/> AllowOverride all<br
/> &lt;/Directory&gt;<br
/> &lt;Directory /var/www/&gt;<br
/> Options Indexes FollowSymLinks MultiViews<br
/> AllowOverride all<br
/> Order allow,deny<br
/> allow from all<br
/> &lt;/Directory&gt;</span></p><p><span
style="color: #0000ff;">ScriptAlias /cgi-bin/ /var/www/cgi-bin/<br
/> &lt;Directory &#8220;/var/www/cgi-bin&#8221;&gt;<br
/> AllowOverride all<br
/> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch<br
/> Order allow,deny<br
/> Allow from all<br
/> &lt;/Directory&gt;</span></p><p><span
style="color: #0000ff;">ErrorLog /var/log/apache2/error.log</span></p><p><span
style="color: #0000ff;"># Possible values include: debug, info, notice, warn, error, crit,<br
/> # alert, emerg.<br
/> LogLevel warn</span></p><p><span
style="color: #0000ff;">CustomLog /var/log/apache2/access.log combined</span></p><p><span
style="color: #0000ff;">Alias /doc/ &#8220;/usr/share/doc/&#8221;<br
/> &lt;Directory &#8220;/usr/share/doc/&#8221;&gt;<br
/> Options Indexes MultiViews FollowSymLinks<br
/> AllowOverride all<br
/> Order deny,allow<br
/> Deny from all<br
/> Allow from 127.0.0.0/255.0.0.0 ::1/128<br
/> &lt;/Directory&gt;</span></p><p><span
style="color: #0000ff;">&lt;/VirtualHost&gt;</span></p><p>Reload httpd:</p><p><strong><span
style="color: #ff6600;">sudo /etc/init.d/apache2 restart</span></strong></p><p>Installed a WordPress site, and it&#8217;s working. nice!</p><p>Granted, the above is a fast rundown, I didn&#8217;t get into too much details (as this could easily extend to several pages worth of information). Above all, everyone&#8217;s server environment has different needs and tweaks &#8211; Experiment, have fun!</p> ]]></content:encoded> <wfw:commentRss>http://ubuntulinuxhelp.com/installing-ffmpeg-php-on-an-ubuntu-9-04-lamp-server/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Is There Any Good Screencasting in Ubuntu?</title><link>http://ubuntulinuxhelp.com/is-there-any-good-screencasting-in-ubuntu/</link> <comments>http://ubuntulinuxhelp.com/is-there-any-good-screencasting-in-ubuntu/#comments</comments> <pubDate>Wed, 09 Dec 2009 18:59:30 +0000</pubDate> <dc:creator>Roger Wheatley</dc:creator> <category><![CDATA[Applications]]></category> <category><![CDATA[application]]></category> <category><![CDATA[audio]]></category> <category><![CDATA[codec]]></category> <category><![CDATA[desktop]]></category> <category><![CDATA[ffmpeg]]></category> <category><![CDATA[flv]]></category> <category><![CDATA[istanbul]]></category> <category><![CDATA[python]]></category> <category><![CDATA[recordmydesktop]]></category> <category><![CDATA[screencast]]></category> <category><![CDATA[screenkast]]></category> <category><![CDATA[Videos]]></category> <category><![CDATA[vnc]]></category> <category><![CDATA[vnc2flv]]></category> <category><![CDATA[vnc2swf]]></category> <category><![CDATA[x11vnc]]></category> <category><![CDATA[xvidcap]]></category><guid
isPermaLink="false">http://ubuntulinuxhelp.com/?p=1805</guid> <description><![CDATA[One of the things I&#8217;ve personally found frustrating in Linux is the development status of screencasting applications, or lack thereof. Some projects remain in beta, never coming to fruition, and eventually being abandoned. Others have quirks that seem to cause different issues based on what system they&#8217;re installed on. Why am I posting about this? [...]]]></description> <content:encoded><![CDATA[<p>One of the things I&#8217;ve personally found <strong>frustrating in Linux is the development status of screencasting applications</strong>, or lack thereof. Some projects remain in beta, never coming to fruition, and eventually being abandoned. Others have <strong>quirks that seem to cause different issues based on what system they&#8217;re installed on</strong>.</p><p>Why am I posting about this? It&#8217;s very difficult (at times) when new Linux (Ubuntu) users ask me how to do something and I cannot show them. Sometimes I&#8217;m far away, at other times it&#8217;s difficult to talk them through the necessary activities on the phone, often I do not have remote access to their systems (so they can watch what I do), and at other times there would be too much to write. Often the person I&#8217;m trying to help might not be technically savvy enough to follow my direction, but they do know how to use a web browser.</p><p>That&#8217;s where screencasting comes in!</p><p>I think many of us are aware of some of the commonly mentioned packages:</p><p><a
href="http://live.gnome.org/Istanbul" title="Istanbul"  target="_blank">Istanbul</a> &#8211; Every time I&#8217;ve tried it, it&#8217;s <strong>broken</strong>. Is it even <strong>in development anymore?</strong> Last news post on the site is in 2007.</p><p><a
rel="nofollow" href="http://sourceforge.net/projects/xvidcap/" title="Xvidcap"  target="_blank">Xvidcap</a> &#8211; I often encounter <strong>problematic output</strong> (maybe a codec issue?). Is it <strong>in development anymore?</strong></p><p><a
href="http://www.debugmode.com/wink/" title="Wink"  target="_blank">Wink</a> &#8211; While Wink does work on the systems I&#8217;ve tried, I find it just <strong>looks horrid</strong>, especially the note explanation boxes you can add. They<strong> look cheap and tacky</strong>, not something I would use for a business (or personally). One issue that may effect Open Source enthusiasts, it that the source is closed.</p><p><a
rel="nofollow" href="http://recordmydesktop.sourceforge.net/" title="recordMyDesktop"  target="_blank">recordMyDesktop</a> &#8211; I often get <strong>sound problems</strong> with it. <strong>What is happening with development?</strong> It appears the developer bowed out in January 2009, and a new one took the reins in May 2009, but are there any changes, updates or fixes?</p><p><a
href="http://ffmpeg.org/" title="ffmpeg"  target="_blank">ffmpeg</a> &#8211; I did try the solution presented by <a
href="http://embraceubuntu.com/2006/06/08/how-to-create-a-screencast-in-ubuntu/" title="Hot to create a screencast in Ubuntu"  target="_blank">Embrace Ubuntu</a> (where ffmpeg was patched), and while it did work, I found that ffmpeg (in this case) did <strong>not provide as stable an output</strong> as I expected.</p><p><a
rel="nofollow" href="http://sourceforge.net/projects/screenkast/" title="Screenkast"  target="_blank">Screenkast</a> &#8211; I <strong>could not get it to work properly</strong>. Is it <strong>under development anymore?</strong> (Last update was in 2007).</p><p>As I mentioned, the above (I think) are the common tools that many of us may already be aware of. I also think the above tools are listed and discussed at length on several other sites, that&#8217;s why I chose to not go into any detail, discussing them &#8211; Been there, done that, we&#8217;ve seen them all before&#8230;</p><p>Suffice to say, I felt that I was at an impasse, I just <strong>wanted something that will work</strong>. Something that could <strong>save a screencast in FLV</strong> format for streaming across a web site. Granted the FLV format is proprietary, I wanted that because it&#8217;s a current web standard. Also, I did not want to have to manually convert the video file (as an extra step).</p><p>There are online tools such as <a
href="http://www.screentoaster.com/" title="ScreenToaster"  target="_blank">ScreenToaster</a> (which a reader suggested to me), but I prefer to do the work myself because the PCs I use sometimes don&#8217;t have a web connection. After asking around someone suggested vnc2swf, which I found has since moved on in development to <span
id="more-1805"></span>the newer <a
href="http://www.unixuser.org/~euske/python/vnc2flv/index.html" title="vnc2flv"  target="_blank">vnc2flv</a>. It <strong>seems to me to be much more promising</strong>. I&#8217;m not suggesting that this is the ultimate solution, but it does have some great merits (and it works too).</p><h2><span
style="text-decoration: underline;">vnc2flv</span></h2><p>Without reading the installation notes, I tried a quick sudo aptitude install &#8230; command, but it&#8217;s not in the repositories (8.04, Hardy), and the developer does not seem to host a repository either.</p><p>I found there are a couple of requirements:</p><p>1) <a
href="http://www.karlrunge.com/x11vnc/" title="x11vnc: a VNC server for real X displays "  target="_blank">x11vnc</a></p><p>2) <a
href="http://www.python.org/download/" title="Python download"  target="_blank">Python</a> (2.4+)</p><p>The install itself is not too difficult:</p><p><strong>Download</strong> the package from the developer at <a
href="http://www.unixuser.org/~euske/python/vnc2flv/index.html#install" title="Installing vnc2flv"  target="_blank">http://www.unixuser.org/~euske/python/vnc2flv/index.html#install</a> <strong>extract</strong> the archive and (as the developer explains on his site), use python to <strong>install</strong> the app as:</p><p><span
style="color: #ff6600;"><strong>python setup.py install</strong></span></p><p>After which the installation script will run.</p><p>Currently this application is <strong>run off the command line</strong>. I tried this on an older test box (it has an earlier version of Ubuntu on it) and it seemed to run quite well. I should add that the developer indicates (I think) that the sound aspects are handled by a different application, using a script that automatically joins the video and audio.  Here&#8217;s the original video from the developers site:</p><p><object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/DcijI6EagYI&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param
name="allowfullscreen" value="true" /><embed
type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/DcijI6EagYI&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p><p>While I&#8217;m mentioning the developer&#8217;s site, you&#8217;ll also get <strong>a lot more information</strong> (usage info) from it. I plan on installing this on my primary Ubuntu workstation after I&#8217;ve played a bit more with it on the test box. &#8211; Hopefully, this will result in some good screencasting&#8230;</p><p>Hopefully there&#8217;ll be a full GUI at some point? Either way, give it a try and tell us what you think.</p> ]]></content:encoded> <wfw:commentRss>http://ubuntulinuxhelp.com/is-there-any-good-screencasting-in-ubuntu/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Top 10 Linux Video Applications &#8211; NOT!</title><link>http://ubuntulinuxhelp.com/top-10-linux-video-applications-not/</link> <comments>http://ubuntulinuxhelp.com/top-10-linux-video-applications-not/#comments</comments> <pubDate>Thu, 21 May 2009 14:57:07 +0000</pubDate> <dc:creator>Roger Wheatley</dc:creator> <category><![CDATA[Applications]]></category> <category><![CDATA[Editorials]]></category> <category><![CDATA[audio]]></category> <category><![CDATA[avidemux]]></category> <category><![CDATA[cinelerra]]></category> <category><![CDATA[create]]></category> <category><![CDATA[editing]]></category> <category><![CDATA[ffmpeg]]></category> <category><![CDATA[kdelive]]></category> <category><![CDATA[kino]]></category> <category><![CDATA[mixing]]></category> <category><![CDATA[studio]]></category> <category><![CDATA[Videos]]></category><guid
isPermaLink="false">http://ubuntulinuxhelp.com/?p=1465</guid> <description><![CDATA[I recently read a Digg post &#8220;10 Free Apps that Turn your Ubuntu into a Video Studio&#8221; and it annoyed the heck out of me! Maybe I&#8217;m being too critical, but I don&#8217;t see 10 top video applications in Linux (I&#8217;m an Ubuntu user). In fact, I don&#8217;t even see ten productive, functional, Linux based [...]]]></description> <content:encoded><![CDATA[<p>I recently read a Digg post &#8220;<a
rel="nofollow" href="http://digg.com/linux_unix/10_Free_Apps_that_Turn_your_Ubuntu_into_a_Video_Studio" title="10 Free Apps that Turn your Ubuntu into a Video Studio"  target="_blank">10 Free Apps that Turn your Ubuntu into a Video Studio</a>&#8221; and it annoyed the heck out of me! Maybe I&#8217;m being too critical, but I don&#8217;t see 10 top video applications in Linux (I&#8217;m an Ubuntu user). In fact, I don&#8217;t even see ten <strong>productive, functiona</strong>l, Linux based video applications that I would use in a <strong>production environment</strong>. Maybe I&#8217;m a bit too outspoken, but in my opinion, the article that Digg post points to is not worth the pixels it&#8217;s displayed with. Based on the numerous comments from diggers, I&#8217;d have to agree that they rightfully consider that post lame. Okay&#8230; Personal <span
style="text-decoration: line-through;">opinion</span> rant over. :)</p><p>Criticism aside, I just <span
id="more-1465"></span>wrote a couple posts about turning your Linux (Ubuntu) computer into a multimedia system, which touched on the topic of videos:</p><p><a
href="http://ubuntulinuxhelp.com/build-a-web-developer-pc-and-enable-most-media-playback-using-ubuntu-linux/" title="Build a Web Developer PC and Enable Most Media Playback Using Ubuntu Linux"  target="_self">Build a Web Developer PC and Enable Most Media Playback Using Ubuntu Linux</a></p><p><a
href="http://ubuntulinuxhelp.com/building-a-web-developer-designer-pc-using-ubuntu-linux-revisited/" title="Building a Web Developer / Designer PC Using Ubuntu Linux - Revisited"  target="_self">Building a Web Developer / Designer PC Using Ubuntu Linux &#8211; Revisited</a></p><p>While the focus of the above posts leaned more towards <strong>playback and web development</strong>, I did mention at least a couple video applications. In my opinion the state of video application development in Ubuntu Linux &#8211; For that matter all Linux distributions has a long way to go. In most of the current video application, I&#8217;ve found that the functionality is lacking, or that the user interface (UI) is so complicated that it makes the application a labour to use. I&#8217;m more familiar with applications such as Adobe After Effects which is Mac and Windows based (where are the Linux versions of your products Adobe? ) and I use it in a production environment. Additionally smaller &#8220;quickie&#8221; applications such as &#8220;MPEG_Stream Clip&#8221; or quickie video converters are not available in Linux with the same ease of use and functionality.</p><p>I appreciate that some may argue that After Effects is complicated. In the beginning, when learning, it is. But after you&#8217;ve been using it for a few years, it&#8217;s not as complicated. In all honesty, I use applications (such as After Effects) as my guideline to compare. There are so few available, and in my opinion, not one of the truly provides an adequate, complete production grade video application.</p><h3>Video Conversion:</h3><p>I operate several video streaming sites. These are sites with similar functionality to Youtube. They allow users (my clients) to upload their videos and the videos are converted by the server to flv files for streaming across the web. To accomplish this, I install various codecs and other tools on the server, most importantly ffmpeg.</p><p>ffmpeg means &#8220;Fast Forward MPEG&#8221;. It&#8217;s a command line application that is built and uses open source libraries and software. It also uses the installed video (and audio) codecs, mux/demux library, etc. to convert video&#8217;s from one format to another. As such, I&#8217;d highly recommend installing this in a Linux PC, if you&#8217;re using that box for video work.</p><p>It&#8217;s easy to install via aptitude (or apt-get):</p><p><strong><span
style="color: #ff6600;">sudo aptitude install ffmpeg</span></strong></p><p>or: <a
href="apt:ffmpeg">apt:ffmpeg</a></p><p>PHP scripting on the server uses <span
style="text-decoration: line-through;">much the same</span> similar commands that we would use on our computers. Here&#8217;s a quick command (to get you going):</p><p><strong><span
style="color: #ff6600;">ffmpeg -i testvideo.mov -vcodec wmv2 -sameq -acodec wmav2 -f asf testvideo.asf</span></strong></p><p>The above command specifies:</p><ul><li>Take my &#8220;testvideo.mov&#8221; file  (The &#8220;i&#8221; switch means &#8220;input file&#8221;),</li><li>Convert it to the wmv2 video codec (&#8220;-vcodec&#8221;) and the wmv2 audio codec (&#8220;-acodec&#8221;),</li><li>Use the same quality as the original video file (&#8220;-sameq&#8221;),</li><li>Force the converted (output) file to asf (&#8220;-f asf&#8221;),</li><li>Name that converted file &#8220;testvideo.asf&#8221;</li></ul><p>The <a
href="http://linux.die.net/man/1/ffmpeg" title="ffmpeg Linux MAN"  target="_blank">MAN page for ffmpeg</a> allows you a more detailed explanation of the switches and other that are available for use.</p><p>I did a search on Youtube and found a great ffmpeg video (below):</p><p><object
width="425" height="344" data="http://www.youtube.com/v/iIalNEW-LQ8&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/iIalNEW-LQ8&amp;hl=en&amp;fs=1&amp;rel=0" /><param
name="allowfullscreen" value="true" /></object></p><h3>Video Applications:</h3><p><strong>AvideMux</strong> is okay for cutting existing videos, stripping audio or video, capturing video, etc. It does not provide the functionality that some of us are familiar with in applications such as After Effects or Final Cut Pro. More information can be found on the <a
href="http://avidemux.org/admWiki/index.php?title=Main_Page" title="AvideMux Wiki"  target="_blank">Avidemux wiki-documentation site</a>.</p><p><img
class="alignnone size-full wp-image-1466" title="Avidemux" src="http://ubuntulinuxhelp.com/wp-content/uploads/2009/05/avidemux.png?9d7bd4" alt="Avidemux" width="472" height="351" /></p><p>Installation:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install avidemux</span></strong></p><p>or: <a
href="apt:avidemux">apt:avidemux</a></p><p><strong>Cinelerra-CV</strong> is (the UI) closer to what we&#8217;d expect in a video production application.The functionality is much closer to those of the professional production environments, but in my opinion, it still needs work. I&#8217;ve tried Cinelerra three times now, and I don&#8217;t use it. Why?:</p><ol><li>It&#8217;s a pain in the rear to get installed and working properly (at least it was for me).</li><li>The interface, while it does have better functionality, is still horrid (VERY ugly and not intuitive) to try and work with (which takes more time).</li><li>When I last tried it, Cinelerra used the &#8220;floating windows&#8221; interface (like GIMP does), which was horrible to work with (as there was no locked parent window).</li></ol><p>However, it may work well for your environment (they way you work), so you should give it a try. To install it via aptitude, you&#8217;d need to add the appropriate repositories to your sources.list. For installing on Ubuntu Hardy (8.04) &#8211; The following is directly (Copy &amp; Paste) from their site:</p><p>For all x86 (full working on 32 and 64 bits), by Paolo Rampino:<br
/> <strong>deb http://akirad.cinelerra.org akirad-hardy main</strong></p><p>Installation notes:</p><ul><li>For your convenience you can install a package for detecting your version of Ubuntu, installing akirad repository and keeping it updated.</li><li>Just double click on the link http://akirad.cinelerra.org/pool/addakirad.deb and install it with GDebi Package Installer.</li></ul><p>Alternatively, use the following terminal command:</p><p><strong><span
style="color: #ff6600;">wget -c http://akirad.cinelerra.org/pool/addakirad.deb &amp;&amp; sudo dpkg -i addakirad.deb</span></strong></p><p>To update the repository information press Reload in Synaptic Package Manager (Adept for Kubuntu) or use the following terminal command:<br
/> <strong><span
style="color: #ff6600;">sudo apt-get update</span></strong></p><p>7 are the packages available in the akirad repository:</p><ul><li>cinelerra (x86 and x86_64 without opengl 2.0 video card)</li><li> cinelerra4-repack (Heroine Virtual version)</li><li>cinelerra-generic (all x86 and x86_64 with opengl 2.0 video card)</li><li>cinelerra-k7 (amd32 without opengl 2.0 video card)</li><li>cinelerra-k7gl (amd32 with opengl 2.0 video card)</li><li>cinelerra-k8 (amd k8 optimized with opengl 2.0 video card)</li><li>cinelerra-swtc (extra Shape Wipe Transitions)</li></ul><p>Ubuntu <strong>Hardy moved to Pulse Audio Sound drive</strong>r. Since it comes with a PulseAudio ESD compatibility layer, Cinelerra can be <strong>set to work with PulseAudio</strong>. Simply open Cinelerra and go to:</p><p><span
style="color: #0000ff;">Settings-&gt;Preferences-&gt;Playback-&gt;Audio Driver</span></p><p>Select <span
style="color: #0000ff;">ESound</span> and set the following parameters:</p><p>Server: Port: 7007</p><ul><li>These packages set shmmax to 0x7fffffff and add non-English language support for Cinelerra.</li><li> Please, report any package bug to akir4d at gmail dot com</li></ul><p>for i386 (not working on amd 32 bits), by Valentina Messeri:<br
/> <strong> deb http://giss.tv/~vale/ubuntu32/hardy ./</strong></p><p>Installation for other systems: <a
href="http://cinelerra.org/getting_cinelerra.php" title="Get Cinelerra"  target="_blank">http://cinelerra.org/getting_cinelerra.php</a><strong><br
/> </strong></p><p>Video editing in Ubuntu Linux using Cinelerra (below):</p><p><object
width="425" height="344" data="http://www.youtube.com/v/femJibBv_kE&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/femJibBv_kE&amp;hl=en&amp;fs=1&amp;rel=0" /><param
name="allowfullscreen" value="true" /></object></p><p>If you&#8217;d like to see the full series of the above video here is <a
rel="nofollow" href="http://www.youtube.com/watch?v=bcBxE6m7x8w" title="Video editing in Ubuntu Using Cinelerra PRT1"  target="_blank">Part 1</a> and <a
rel="nofollow" href="http://www.youtube.com/watch?v=HXW2CyL_peU" title="Video editing in Ubuntu Using Cinelerra PRT2"  target="_blank">Part 2</a>.</p><p>Side note: Speaking of PulseAudio (above), this is what caused my 5.1 surround sound not to work. But I posted a fix: <a
href="http://ubuntulinuxhelp.com/enable-51-surround-sound-on-linux-ubuntu-804-hardy/" title="Enable 5.1 Surround Sound on Linux - Ubuntu 8.04 Hardy"  target="_self">Enable 5.1 Surround Sound on Linux &#8211; Ubuntu 8.04 Hardy</a>.</p><p><strong>Kino</strong>, I use more for video capture than anything else. I wouldn&#8217;t really call it a video production application. It can export different formats and has some effects. You can stich video files together. You can use it to render a dv file as well as a few other features.</p><p><img
class="alignnone size-full wp-image-1467" title="Kino" src="http://ubuntulinuxhelp.com/wp-content/uploads/2009/05/kino.png?9d7bd4" alt="Kino" width="472" height="400" /></p><p>To install:</p><p><strong><span
style="color: #ff6600;">sudo aptitude install kino</span></strong></p><p>or: <a
href="apt:kino">apt:kino</a></p><p>I think Kino is great for putting together a medley of clips with nice transition effects between them. Check out the how to video below:<br
/> <object
width="480" height="295" data="http://www.youtube.com/v/vh3RZjLs4k8&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/vh3RZjLs4k8&amp;hl=en&amp;fs=1&amp;rel=0" /><param
name="allowfullscreen" value="true" /></object></p><p>The above video is using Kino in a KDE environment.</p><p><strong>KDEnlive, </strong>I think is another great potential (I&#8217;ve not used it as I&#8217;m in a Gnome environment). Don&#8217;t get me wrong, if you&#8217;re also using Gnome, you can still try KDEnlive as all the KDE dependencies will be installed &#8211; And quite frankly, if you&#8217;re going to do that, it may be better to simple use KDE (such as Kubuntu). If you already have tools like ffmpeg installed, this one can be a bit tricky to install. Either way, here a preview video below that shows some of the features:</p><p><object
width="480" height="295" data="http://www.youtube.com/v/U4ckfpxE66M&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/U4ckfpxE66M&amp;hl=en&amp;fs=1&amp;rel=0" /><param
name="allowfullscreen" value="true" /></object></p><p>Realistically, the state of video development (at least on our Linux desktops) is still in its infancy. We&#8217;ve got a long way to go before we have an open source application that rivals the likes of Final Cut or After Effects. For those interested in experimenting further, one promising distribution is worth looking at: <a
href="http://ubuntustudio.org/" title="Ubuntu Studio"  target="_blank">Ubuntu Studio</a>. From their site:</p><p>&#8220;<span
style="color: #0000ff;">&#8230;is aimed at the GNU/Linux audio, video and graphic enthusiast as well as professional. We provide a suite of the best open-source applications available for multimedia creation. Completely free to use, modify and redistribute. Your only limitation is your imagination&#8230;</span>&#8221;</p><p>I certainly hope that this multimedia type distro can spearhead and pave the way to better video editing applications in Linux. I&#8217;d love to write a post about the Top 10 Video Applications, but right now we don&#8217;t really have 10.</p><p>Feel free to include any video applications or solutions you use, in the comments. :)</p> ]]></content:encoded> <wfw:commentRss>http://ubuntulinuxhelp.com/top-10-linux-video-applications-not/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Installing an Ubuntu Linux Hardy 8.04 LAMP and FFMpeg Server With a GUI &#8211; Installation of OpenSSH.</title><link>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-installation-of-openssh/</link> <comments>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-installation-of-openssh/#comments</comments> <pubDate>Thu, 17 Jul 2008 14:50:26 +0000</pubDate> <dc:creator>Roger Wheatley</dc:creator> <category><![CDATA[Hands On]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[8.04]]></category> <category><![CDATA[cgi]]></category> <category><![CDATA[codecs]]></category> <category><![CDATA[configure]]></category> <category><![CDATA[dvd]]></category> <category><![CDATA[ffmpeg]]></category> <category><![CDATA[fonts]]></category> <category><![CDATA[ftp]]></category> <category><![CDATA[gui]]></category> <category><![CDATA[how to]]></category> <category><![CDATA[install]]></category> <category><![CDATA[ioncube]]></category> <category><![CDATA[lamp]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[opensource]]></category> <category><![CDATA[openssh]]></category> <category><![CDATA[phpmyadmin]]></category> <category><![CDATA[putty]]></category> <category><![CDATA[ssh]]></category> <category><![CDATA[ssh server]]></category> <category><![CDATA[ssi]]></category> <category><![CDATA[usermin]]></category> <category><![CDATA[webmin]]></category><guid
isPermaLink="false">http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-installation-of-openssh/</guid> <description><![CDATA[In the last installment, I covered what was done to install LAMP on the server. But remember that we did not install SSH. Why is SSH important? It allows us to remotely connect to the server using tools such as PuTTY, so that we can execute commands, install software, etc. The command is simple: sudo [...]]]></description> <content:encoded><![CDATA[<p>In the last installment, I covered what was done to <a
href="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/"  title="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/">install LAMP</a> on the server. But remember that we did not install SSH.  Why is SSH important? It allows us to remotely connect to the server using tools such as PuTTY,  so that we can execute commands, install software, etc.</p><p>The command is simple:</p><p><code>sudo aptitude install openssh-server</code></p><p>Installing an SSH client? PuTTY:<span
id="more-1301"></span></p><p><code>sudo aptitude install putty</code></p><p>I decided to install the SSH Server via aptitude after LAMP, because I found out (the first time I did this)  that  updating the SSH Server would cause me to have to update the certificates as well. Doing it this way, saves me extra steps.</p><p>Needless to say, this step was very simple, but very powerful in that it allows me to manage the server remotely, in comfort. :)</p> ]]></content:encoded> <wfw:commentRss>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-installation-of-openssh/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Installing an Ubuntu Linux Hardy 8.04 LAMP and FFMpeg Server With a GUI &#8211; LAMP installation with cgi-bin</title><link>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/</link> <comments>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/#comments</comments> <pubDate>Wed, 25 Jun 2008 19:03:58 +0000</pubDate> <dc:creator>Roger Wheatley</dc:creator> <category><![CDATA[Hands On]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[8.04]]></category> <category><![CDATA[cgi]]></category> <category><![CDATA[codecs]]></category> <category><![CDATA[configure]]></category> <category><![CDATA[dvd]]></category> <category><![CDATA[ffmpeg]]></category> <category><![CDATA[fonts]]></category> <category><![CDATA[ftp]]></category> <category><![CDATA[gui]]></category> <category><![CDATA[how to]]></category> <category><![CDATA[install]]></category> <category><![CDATA[ioncube]]></category> <category><![CDATA[lamp]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[opensource]]></category> <category><![CDATA[openssh]]></category> <category><![CDATA[phpmyadmin]]></category> <category><![CDATA[ssi]]></category> <category><![CDATA[usermin]]></category> <category><![CDATA[webmin]]></category><guid
isPermaLink="false">http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/</guid> <description><![CDATA[The last post I covered the hardware installation for this project. For this section, we&#8217;re going to use Ubuntu Linux (8.04 LTS Server Edition 64-bit) to install the LAMP (Linux, Apache, MySQL, PHP) server. If you don&#8217;t have that software available, you can get it using the following venues: 1. Download the iso image from: [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/06/ubuntu-server-64-cd.jpg?9d7bd4" alt="Ubuntu 8.04 LTS Server Edition (64-bit)" align="left" hspace="10" vspace="5" /> The last post I covered the <a
href="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-hardware-installation/"  title="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-hardware-installation/">hardware installation</a> for this project.  For this section, we&#8217;re going to use Ubuntu Linux (8.04 LTS Server Edition 64-bit) to install the LAMP (Linux, Apache, MySQL, PHP) server. If you don&#8217;t have that software available, you can get it using the following venues:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>1. Download the iso image from: <a
href="http://www.ubuntu.com/getubuntu/download"  title="http://www.ubuntu.com/getubuntu/download" target="_blank">http://www.ubuntu.com/getubuntu/download</a> and burn it to a CD.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>2. Order the CD from <a
href="https://shipit.ubuntu.com/login-server"  title="https://shipit.ubuntu.com/login-server" target="_blank">https://shipit.ubuntu.com/login-server</a>.</p><p>Once you have a copy, make sure the BIOS on the PC is set to boot off the CD drive. Put the CD in the drive and simply restart the unit. It should now boot off the CD and display the &#8220;select language&#8221; screen as seen below.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /><span
id="more-1294"></span></p><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/06/ubuntu-install-001.jpg?9d7bd4" alt="Select Language - Ubuntu Server 8.04 install" /><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>After you&#8217;ve selected the language, you&#8217;ll be presented with the installation menu. Simply select &#8220;Install Ubuntu Server&#8221;, as seen below.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/06/ubuntu-install-002.jpg?9d7bd4" alt="Installation menu" /><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Remember that this is a server, ideally we&#8217;d like to have a static IP address for this server. There is a selectable boot option called &#8220;F6 &#8211; Other Options&#8221; where you could enter the following command to disable DHCP:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><code>netcfg/disable_dhcp=true</code><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>At which point you will be required to manually configure the network settings. I am going to include that information below. However, for some reason I was not able to set up the network card after the installation (I could not see it) , so I used this work around instead&#8230;<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>I logged into the router and checked the logs so that I could get the MAC address of the network card. I then configured a DHCP reservation in the LAN/DHCP setting of the router so that the MAC address of the network card would always get the same IP address. Because I did not want to install a DNS server (my ISP made me take the DNS server down last time I set it up), I then, simply added the IP to hostname record, into the host file of each unit I wanted to connect to the web server.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>During the installation (just follow the prompts it gives you), you will need to provide the following (among other obvious questions/answers):<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><ol><li>A hostname for your web server (the hostname is independent of whatever domain name you&#8217;re going to use. For example, the hostname of this server is &#8220;webbox&#8221; and the domain I&#8217;ll use to access the web server on it is &#8220;local.ubuntulinuxhelp.com&#8221;).</li><li>I selected to use the &#8220;Guided &#8211; use entire disk&#8221; when prompted for the partitioning.</li><li>A username and password that you are going to remember.</li></ol><p>You&#8217;ll eventually come to a prompt for the type of server (Software Selection), select LAMP, like the image below.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/06/ubuntu-install-003.jpg?9d7bd4" alt="Ubuntu server install software selection" /><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>I chose to install the other components later, because I found out it will reduce some of the tweaking and updating later. During the software installation, you will be asked for a MySQL password. Write it down or don&#8217;t forget it! (You&#8217;ll need it later to use phpMyAdmin). The remainder is very straight forward, but as I mentioned earlier, here&#8217;s the static network configuration information. Remember, your network configuration addresses will probably be different from mine.<br
/> <img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /><br
/> Because there is no GUI yet, we&#8217;ll be using the command line to configure the network.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Login after rebooting.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>You can use a simple text editor like nano, vi, etc.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><code>sudo nano /etc/network/interfaces</code><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>For those who left DHCP enabled, look for this:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><blockquote><p>auto eth0<br
/> iface eth0 inet dhcp</p></blockquote><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>and change it to this:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><blockquote><p>auto eth0<br
/> iface eth0 inet static</p></blockquote><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Under the line that says &#8220;iface eth0 inet static&#8221;, you&#8217;ll enter your network information. An example of mine is:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><blockquote><p>address 72.138.51.130<br
/> netmask 255.255.255.0<br
/> network 72.138.51.0<br
/> broadcast 72.138.51.255<br
/> gateway 72.138.50.1</p></blockquote><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>So the file would look something like this:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><blockquote><p>auto eth0<br
/> iface eth0 inet static<br
/> address 72.138.51.130<br
/> netmask 255.255.255.0<br
/> network 72.138.51.0<br
/> broadcast 72.138.51.255<br
/> gateway 72.138.50.1</p></blockquote><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Additionally, I made sure the host file contained the following information:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><blockquote><p>127.0.0.1 localhost webbox<br
/> 172.138.51.130 local.ubuntulinuxhelp.com webbox</p></blockquote><p><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>After configuring the network interface, restart the network using the following command:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><code>sudo /etc/init.d/networking restart</code><img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>The basic LAMP installation should be complete. :)</p> ]]></content:encoded> <wfw:commentRss>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Installing an Ubuntu Linux Hardy 8.04 LAMP and FFMpeg Server With a GUI &#8211; Introduction.</title><link>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-introduction/</link> <comments>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-introduction/#comments</comments> <pubDate>Wed, 18 Jun 2008 13:02:29 +0000</pubDate> <dc:creator>Roger Wheatley</dc:creator> <category><![CDATA[Hands On]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[8.04]]></category> <category><![CDATA[cgi]]></category> <category><![CDATA[codecs]]></category> <category><![CDATA[configure]]></category> <category><![CDATA[dvd]]></category> <category><![CDATA[ffmpeg]]></category> <category><![CDATA[fonts]]></category> <category><![CDATA[ftp]]></category> <category><![CDATA[gui]]></category> <category><![CDATA[how to]]></category> <category><![CDATA[install]]></category> <category><![CDATA[ioncube]]></category> <category><![CDATA[lamp]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[opensource]]></category> <category><![CDATA[openssh]]></category> <category><![CDATA[phpmyadmin]]></category> <category><![CDATA[ssi]]></category> <category><![CDATA[usermin]]></category> <category><![CDATA[webmin]]></category><guid
isPermaLink="false">http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-introduction/</guid> <description><![CDATA[It&#8217;s been several day&#8217;s since I&#8217;ve had the chance to post (I&#8217;ve been super busy), so it&#8217;s good to have a moment to sit and put my thoughts to pixels (so to speak). Introduction: This is the introductory post to a full series where I&#8217;ll be posting how I installed an Ubuntu Linux LAMP (Apache, [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s been several day&#8217;s since I&#8217;ve had the chance to post (I&#8217;ve been super busy), so it&#8217;s good to have a moment to sit and put my thoughts to pixels (so to speak).<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><strong>Introduction:</strong></p><p>This is the introductory post to a full series where I&#8217;ll be posting how I installed an Ubuntu Linux LAMP (Apache, MySQL, PHP and cgi-bin)  server with a GUI (I needed to use it as a desktop PC at the same time), the appropriate media playback codecs (flash, DVD, MP3, Quicktime MOV, WMV, WMA, MP4, M4A),<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /> OpenSSH, PureFTP and FFMpeg (FFmpeg, FFmpeg-PHP, Mplayer, Mencoder, flv2tool, LAME MP3 Encoder, Libogg, Libvorbis).<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>This &#8220;hands-on&#8221; project is broken into topics:<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>1. <a
href="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-hardware-installation/"  title="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-hardware-installation/">Hardware Installation</a>.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>2. <a
href="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/"  title="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-lamp-installation-with-cgi-bin/">LAMP installation with cgi-bin</a>.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>3. <a
href="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-installation-of-openssh/"  title="http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-installation-of-openssh/">Installation of OpenSSH</a>.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>4. Configuration of the First Website.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>5. Installation of PHPMyAdmin.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>6. Configuration of cgi-bin and SSI.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>7. Installation of the Ubuntu Desktop and Media Codecs and MS fonts.</p><p>8. Installation of DVD Playback Capability.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>9. Installation of PureFTP.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>10. Installation of Webmin and Usermin.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>11. Installation of FFMpeg and Related Packages (and ionCube).<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>12. Troubleshooting.</p><p>Needless to say, this did take<span
id="more-1291"></span> me some time to do as I am not a Linux expert (rather self-taught).<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /> But&#8230; it&#8217;s works and I&#8217;ve all my rough notes to type here. That&#8217;s part of the reason why I&#8217;d not posted, here on the blog, in a few days! ;)</p><p>Why did I do this?<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /> I wanted a web server I could use for internal projects and to test Open Source web systems (CMS, billing, eComm, blog, etc.) I also wanted to have a more updated (hardware) system that could better work with the newer Ubuntu Hardy 8.04 OS.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p><strong>Hardware :</strong></p><p>Shuttle SN68SG2 Socket AM2 Barebone &#8211; NVIDIA 7025, Audio, Video, PCI Express, Gigabit LAN, USB 2.0, Firewire, Serial ATA, 250 Watt Power Supply.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>AMD Athlon 64 X2 4200+ Processor ADA4200CUBOX &#8211; 2.20GHz, 1MB Cache, 1000MHz (2000 MT/s) FSB, Windsor, Dual-Core, Retail, Socket AM2, Processor with Fan.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Kingston 1024MB PC5400 DDR2 667MHz Memory (2 of these for 2GB).<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Western Digital Caviar SE16 500GB Hard Drive &#8211; 7200, Browser Problems &#8211; Creating a Linux Based Virtual Box &#8211; Part 1 of 2 16MB, SATA-300, OEM.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>DVD burner: LG GSA H55N Super-Multi Disk Drive 20×20&#215;12<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>(More info about the hardware here: <a
href="http://ubuntulinuxhelp.com/browser-problems-creating-a-linux-based-virtual-box-part-2-of-2/"  title="http://ubuntulinuxhelp.com/browser-problems-creating-a-linux-based-virtual-box-part-2-of-2/">Browser Problems &#8211; Creating a Linux Based Virtual Box &#8211; Part 2 of 2</a>).</p><p><strong>Software:</strong></p><p>Ubuntu 8.04 LTS Server Edition (64-bit)<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>(You can download the software from here: <a
href="http://www.ubuntu.com/getubuntu/download"  title="http://www.ubuntu.com/getubuntu/download" target="_blank">http://www.ubuntu.com/getubuntu/download</a> or  order free Server CD&#8217;s from here: <a
href="https://shipit.ubuntu.com/login-server"  title="https://shipit.ubuntu.com/login-server" target="_blank">https://shipit.ubuntu.com/login-server</a>).<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Hopefully many of you will have a bit of fun with this (I did) and that you&#8217;ll be able to bookmark this and return when needed. As always, helpful comments are always welcome.<img
src="http://ubuntulinuxhelp.com/wp-content/uploads/2008/03/spacer_gif.gif?9d7bd4" /></p><p>Enjoy!<br
/> :)</p> ]]></content:encoded> <wfw:commentRss>http://ubuntulinuxhelp.com/installing-an-ubuntu-linux-hardy-804-lamp-and-ffmpeg-server-with-a-gui-introduction/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Served from: ubuntulinuxhelp.com @ 2012-02-10 16:47:40 by W3 Total Cache -->
