<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://www.jbkempf.com/blog/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Yet another blog for JBKempf - Tag - debian</title>
  <link>http://www.jbkempf.com/blog/</link>
  <atom:link href="http://www.jbkempf.com/blog/feed/tag/debian/rss2" rel="self" type="application/rss+xml"/>
  <description>This is the blog of Jean-Baptiste Kempf. I will share some info about my life, my works and my VideoLAN work</description>
  <language>en</language>
  <pubDate>Wed, 01 Oct 2008 17:06:52 -0700</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Build vlc under a fresh sid</title>
    <link>http://www.jbkempf.com/blog/post/2007/10/04/Build-vlc-under-a-fresh-sid</link>
    <guid isPermaLink="false">urn:md5:42089f44f27be5275c6c0d4d6ff8008f</guid>
    <pubDate>Thu, 04 Oct 2007 13:39:00 +0200</pubDate>
    <dc:creator>JBK</dc:creator>
        <category>VideoLAN</category>
        <category>Building</category><category>compilation</category><category>debian</category><category>VLC media player</category>    
    <description>    &lt;h2&gt;Introduction&lt;/h2&gt;

&lt;p&gt;So we are going to build the latest &lt;a href=&quot;http://www.jbkempf.com/blog/tag/VLC&quot;&gt;VLC&lt;/a&gt; possible.&lt;/p&gt;


&lt;p&gt;I already did it for ubuntu feisty and it had a huge success. I am going to do the same for debian/sid, which is the distro I use in normal time.&lt;/p&gt;


&lt;p&gt;However, some steps did changed, and I compile more options here, because I can :D&lt;/p&gt;


&lt;p&gt;Everything will be done in a console/terminal and should be straight-forward. Every question should be asked on the forum, or in the comments here.&lt;/p&gt;


&lt;h3&gt;Conventions&lt;/h3&gt;

&lt;p&gt;Every line beginning with a &lt;q&gt;#&lt;/q&gt; should be done as root, or using the &lt;q&gt;sudo &lt;/q&gt; command.
Every line beginning witha &lt;q&gt;%&lt;/q&gt; is a normal line.&lt;/p&gt;


&lt;h2&gt;Building VLC&lt;/h2&gt;

&lt;h3&gt;Prepare your environment&lt;/h3&gt;

&lt;pre&gt;
# apt-get build-dep vlc
# apt-get install build-essential subversion tofrodos
# apt-get install portaudio-dev
&lt;/pre&gt;


&lt;h3&gt;Checkout it&lt;/h3&gt;
&lt;pre&gt;
% svn co svn://jb@svn.videolan.org/vlc/trunk vlc-trunk
% cd vlc-trunk;
&lt;/pre&gt;


&lt;h3&gt;Bootstrap it&lt;/h3&gt;
&lt;pre&gt;
% ./bootstrap
&lt;/pre&gt;

&lt;p&gt;It has to finish with:
Successfully bootstrapped&lt;/p&gt;


&lt;h3&gt;Build external libraries&lt;/h3&gt;


&lt;h4&gt;x264&lt;/h4&gt;

&lt;p&gt;x264 is a library to encode movies in H.264.&lt;/p&gt;
&lt;pre&gt;
% cd extras/
%
% svn co svn://svn.videolan.org/x264/trunk x264
% cd x264
% make
% cd ..
&lt;/pre&gt;


&lt;h4&gt;faac&lt;/h4&gt;

&lt;p&gt;faac is a library to encode audio in AAC/MP4A&lt;/p&gt;
&lt;pre&gt;
% wget http://surfnet.dl.sourceforge.net/sourceforge/faac/faac-1.25.tar.gz
% tar xvf faac-1.25.tar.gz
% cd faac
% dos2unix *
% ./bootstrap
% ./configure
% make
# make install
% cd..
&lt;/pre&gt;


&lt;h4&gt;Lame&lt;/h4&gt;

&lt;p&gt;Lame is a library to encode MP3&lt;/p&gt;
&lt;pre&gt;
% wget http://garr.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
% tar xvf lame-3.97.tar.gz
% cd lame-3.97
% ./configure;
% make
# make install
% cd..
&lt;/pre&gt;


&lt;h4&gt;ffmpeg&lt;/h4&gt;

&lt;p&gt;ffmpeg is a multi-codec library&lt;/p&gt;
&lt;pre&gt;
% svn co svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
% cd ffmpeg
% ./configure --enable-gpl --enable-pp \ 
               --enable-pthreads --enable-libmp3lame  \ 
               --enable-libfaac
% make
% cd ../..
&lt;/pre&gt;


&lt;h4&gt;live&lt;/h4&gt;

&lt;p&gt;Live is a streaming library. you'll need it to read some streams.&lt;/p&gt;
&lt;pre&gt;
% wget http://live555.com/liveMedia/public/live555-latest.tar.gz
% tar xvf live555-latest.tar.gz
% cd live555
% ./genMakefiles linux
% make
% cd..
&lt;/pre&gt;


&lt;h3&gt;VLC&lt;/h3&gt;

&lt;h4&gt;configure&lt;/h4&gt;
&lt;pre&gt;
% mkdir linux;
% cd linux
% ../configure --prefix=/usr --enable-snapshot \
--enable-debug --enable-dbus-control \
--enable-musicbrainz --enable-shared \
--enable-mozilla --enable-lirc \
--with-x509-ca-bundle=/etc/ssl/certs/ca-certificates.crt \
--with-live555-tree=../extras/live \
--with-ffmpeg-tree=../extras/ffmpeg \
--enable-shout --enable-taglib --enable-v4l \
--enable-cddax --enable-dvb --enable-vcdx \
--enable-realrtsp --enable-svg --enable-dvdread \
--enable-dv --enable-theora --enable-faad \
--enable-twolame --enable-real --enable-flac \
--enable-tremor --with-ffmpeg-mp3lame \
--with-ffmpeg-faac --enable-skins2 --enable-qt4 \
--enable-ncurses --enable-aa --enable-caca \
--enable-esd --enable-portaudio --enable-jack \
--enable-xosd --enable-galaktos --enable-goom \
--enable-ggi --disable-cddax --disable-vcdx \
--disable-dirac --enable-x264 \
--with-x264-tree=../extras/x264 \
--disable-xvmc --enable-wxwidgets \
--enable-lua --enable-pvr --enable-loader \
--enable-python-bindings --enable-audioscrobbler \
--enable-libcddb --enable-libcdio --enable-opencv  \
--enable-nls
&lt;/pre&gt;


&lt;h4&gt;build it&lt;/h4&gt;
&lt;pre&gt;
% make
&lt;/pre&gt;</description>
    
    
    
          <comments>http://www.jbkempf.com/blog/post/2007/10/04/Build-vlc-under-a-fresh-sid#comment-form</comments>
      <wfw:comment>http://www.jbkempf.com/blog/post/2007/10/04/Build-vlc-under-a-fresh-sid#comment-form</wfw:comment>
      <wfw:commentRss>http://www.jbkempf.com/blog/feed/rss2/comments/53</wfw:commentRss>
      </item>
    
  <item>
    <title>Bored with Debian - x264 patents</title>
    <link>http://www.jbkempf.com/blog/post/2007/05/25/Bored-with-Debian-x264-patents</link>
    <guid isPermaLink="false">urn:md5:555bfd10d2912a736ba8eaa3fee14296</guid>
    <pubDate>Fri, 25 May 2007 15:42:00 +0200</pubDate>
    <dc:creator>JBK</dc:creator>
        <category>VideoLAN</category>
        <category>debian</category><category>patents</category><category>x264</category>    
    <description>&lt;p&gt;Debian has removed the x264 package from debian...&lt;/p&gt;    &lt;p&gt;I am usually a strong supporter of debian, but I may change very quickly my mind...&lt;/p&gt;


&lt;h2&gt;x264&lt;/h2&gt;

&lt;p&gt;x264 was removed from debian unstable according to :
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=423250&lt;/p&gt;


&lt;p&gt;With the very best explanation ever:
&lt;q&gt;Now - it contains mpeg4 stuff, try googling for &amp;quot;mpeg4 patent&amp;quot; once and you know why it needs to go out.&lt;/q&gt;&lt;/p&gt;


&lt;p&gt;And with the very usefull link of http://petition.eurolinux.org/pr/pr18.html. That states:
&lt;q&gt;the patents that will constitute the MPEG-4 Visual Patent Portfolio License support the charging of royalties on the use of MPEG-4 Visual streams in Europe&amp;quot; and that a license should be available within several months.&lt;/q&gt;&lt;/p&gt;


&lt;p&gt;&amp;quot;Should&amp;quot; be ? I am not an englishman, but should does not mean is. Moreover the article is from 2002 and legislation about patents has changed in Europe since that date!&lt;/p&gt;


&lt;h2&gt;Patents&lt;/h2&gt;

&lt;h3&gt;Video&lt;/h3&gt;

&lt;p&gt;Video programming is filled with patents.&lt;/p&gt;


&lt;p&gt;This so stupid than ever... Hey, Joerg Jaspert, why don't you try &amp;quot;mpeg2 patent&amp;quot; in Google ? Oops, right ?&lt;/p&gt;


&lt;p&gt;Then you should remove:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ffmpeg, libmpeg2,&lt;/li&gt;
&lt;li&gt;mplayer, vlc, xine, ogle, totem, gstreamer,&lt;/li&gt;
&lt;li&gt;cinelerra, avidemux...&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Come on!&lt;/p&gt;


&lt;h3&gt;Other patents&lt;/h3&gt;

&lt;p&gt;What about &amp;quot;double-click patents&amp;quot; and &amp;quot;linux patents&amp;quot; in google ? It gives more answers than MPEG-4 patents...
Maybe we should remove 'linux' from debian...&lt;/p&gt;</description>
    
    
    
          <comments>http://www.jbkempf.com/blog/post/2007/05/25/Bored-with-Debian-x264-patents#comment-form</comments>
      <wfw:comment>http://www.jbkempf.com/blog/post/2007/05/25/Bored-with-Debian-x264-patents#comment-form</wfw:comment>
      <wfw:commentRss>http://www.jbkempf.com/blog/feed/rss2/comments/32</wfw:commentRss>
      </item>
    
  <item>
    <title>Migration time - Ubuntu-debian</title>
    <link>http://www.jbkempf.com/blog/post/2007/05/13/Migration-time-Ubuntu-debian</link>
    <guid isPermaLink="false">urn:md5:e9d22ccb919fc00badbaf49da949d786</guid>
    <pubDate>Sun, 13 May 2007 17:43:00 +0200</pubDate>
    <dc:creator>JBK</dc:creator>
        <category>Geek &amp; Computer</category>
        <category>debian</category><category>migration</category><category>Ubuntu</category>    
    <description>&lt;p&gt;This is  just a post to tell the results of debian and ubuntu machines migrations.&lt;/p&gt;


&lt;p&gt;Debian's update are not so perfect, and Ubuntu's update are worse. &lt;img src=&quot;/blog/themes/jbkempf/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;    &lt;h2&gt;Debian and Ubuntu migrations&lt;/h2&gt;


&lt;p&gt;Spring has begun a few weeks ago and the big migration time started during april.&lt;/p&gt;


&lt;p&gt;GNU/Linux Debian etch 4.0 was out early April and Ubuntu (GNU/Linux too, even if they don't admit it :D) too with feisty 7.04 version.&lt;/p&gt;


&lt;p&gt;I had to migrate a few machines. I am not what you can call a n00b about linux ( and debian ) administration...&lt;/p&gt;


&lt;h3&gt;Ubuntu&lt;/h3&gt;

&lt;p&gt;I had four machines to migrate (mostly my family's computers). Three were running edgy (6.10), and the last one was still running dapper (6.06).&lt;/p&gt;


&lt;h4&gt;Edgy&lt;/h4&gt;

&lt;p&gt;Well, I tried to migrate those with the GUI thing. One achieved it. The two other failed to launch. So I migrate those with the terminal ( that was the most natural thing to do for me... ).&lt;/p&gt;


&lt;p&gt;&lt;strong&gt;Results&lt;/strong&gt;
Well, the one I migrated with the GUI just rebooted did not have any wifi. A bit of /etc/network/interfaces tweaking did the trick.&lt;/p&gt;


&lt;p&gt;The other one did not had any X. ATI drivers failure or something... It took a bit longer to make it work... But definitively, my sister wouldn't have been able to do it.&lt;/p&gt;


&lt;p&gt;The final one did not want to boot at all... grub tweaking, updates and kernel modules updates but finally it went correctly. Not so difficult after all.&lt;/p&gt;


&lt;h4&gt;Dapper&lt;/h4&gt;

&lt;p&gt;Come on! That was a complete failure. I know I shouldn't update from dapper to feisty but still... &lt;em&gt;Complete failure&lt;/em&gt;&lt;/p&gt;


&lt;h3&gt;Debian&lt;/h3&gt;

&lt;h4&gt;Sarge&lt;/h4&gt;


&lt;p&gt;I had three different machines to migrate.&lt;/p&gt;


&lt;p&gt;Nothing important to notice on the servers (mainly except postfix and nut).&lt;/p&gt;


&lt;p&gt;The desktop one was a bit trickier, especially, X.org configuration and GNOME setup. Grub was fun, as usual... But well, not so difficult.&lt;/p&gt;</description>
    
    
    
          <comments>http://www.jbkempf.com/blog/post/2007/05/13/Migration-time-Ubuntu-debian#comment-form</comments>
      <wfw:comment>http://www.jbkempf.com/blog/post/2007/05/13/Migration-time-Ubuntu-debian#comment-form</wfw:comment>
      <wfw:commentRss>http://www.jbkempf.com/blog/feed/rss2/comments/31</wfw:commentRss>
      </item>
    
</channel>
</rss>