<?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>Autarchy of the Private Cave &#187; package</title> <atom:link href="https://bogdan.org.ua/tags/package/feed" rel="self" type="application/rss+xml" /><link>https://bogdan.org.ua</link> <description>Tiny bits of bioinformatics, [web-]programming etc</description> <lastBuildDate>Wed, 28 Dec 2022 16:09:04 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>https://wordpress.org/?v=3.8.27</generator> <item><title>Saving and restoring the list of packages installed on a Debian system using aptitude or deborphan</title><link>https://bogdan.org.ua/2013/10/18/saving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html</link> <comments>https://bogdan.org.ua/2013/10/18/saving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html#comments</comments> <pubDate>Fri, 18 Oct 2013 00:08:13 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[how-to]]></category> <category><![CDATA[Notepad]]></category> <category><![CDATA[aptitude]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[deborphan]]></category> <category><![CDATA[dpkg]]></category> <category><![CDATA[package]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/?p=2011</guid> <description><![CDATA[The usual, or even classical way is to create the list of installed packages with sudo dpkg --get-selections > package_list, and then restore when/if necessary with cat package_list &#124; xargs sudo apt-get -y install. As VihangD points out in his serverfault answer, the same can be achieved with aptitude, while also excluding dependent, automatically installed [&#8230;]]]></description> <content:encoded><![CDATA[<p>The usual, or even <em>classical</em> way is to create the list of installed packages with <strong><code>sudo dpkg --get-selections > package_list</code></strong>, and then restore when/if necessary with <strong><code>cat package_list | xargs sudo apt-get -y install</code></strong>.</p><p>As VihangD points out in his <a
href="http://serverfault.com/a/61472/25852">serverfault answer</a>, the same can be achieved with aptitude, while also excluding dependent, automatically installed packages (which are included by the <em>classical</em> method). To create the list of packages, run <strong><code>aptitude search -F '%p' '~i!~M' > package_list</code></strong>. Here, <strong><code>-F '%p'</code></strong> asks aptitude to only print package names (instead of the default output, which also contains package state and description); search term <strong>&#8216;~i!~M&#8217;</strong> asks for all non-automatically installed packages.</p><p>To install packages using the created list, run <strong><code>xargs aptitude --schedule-only install < package_list; aptitude install</code></strong>. The first of these two commands instructs aptitude to mark all the packages from the list as scheduled for installation. The second command actually performs the installation.</p><p>Hamish Downer <a
href="http://serverfault.com/a/1333/25852">suggests</a> an alternative way of getting the initial package_list: using the deborphan utility, <strong><code>deborphan -a --no-show-section > package_list</code></strong>. This command asks deborphan to show a list of packages, which have no dependencies on them. Sounds very similar to what we did with aptitude above, but using deborphan will most likely result in a much shorter list of packages (on my system, deborphan printed 291 package names, aptitude printed 847, and dpkg printed 3650 package names). One more potentially important difference between aptitude- and deborphan-produced package lists is that aptitude only specifies package architecture when it is different from native (e.g. 'googleearth:i386' on a 64-bit system), while deborphan specifies architectures for all the packages (resulting in e.g. 'google-talkplugin:amd64' and 'googleearth-package:all' on a 64-bit system).</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2013%2F10%2F18%2Fsaving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html&amp;linkname=Saving%20and%20restoring%20the%20list%20of%20packages%20installed%20on%20a%20Debian%20system%20using%20aptitude%20or%20deborphan" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2013%2F10%2F18%2Fsaving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html&amp;linkname=Saving%20and%20restoring%20the%20list%20of%20packages%20installed%20on%20a%20Debian%20system%20using%20aptitude%20or%20deborphan" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2013%2F10%2F18%2Fsaving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html&amp;linkname=Saving%20and%20restoring%20the%20list%20of%20packages%20installed%20on%20a%20Debian%20system%20using%20aptitude%20or%20deborphan" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2013%2F10%2F18%2Fsaving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html&amp;linkname=Saving%20and%20restoring%20the%20list%20of%20packages%20installed%20on%20a%20Debian%20system%20using%20aptitude%20or%20deborphan" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2013%2F10%2F18%2Fsaving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html&amp;linkname=Saving%20and%20restoring%20the%20list%20of%20packages%20installed%20on%20a%20Debian%20system%20using%20aptitude%20or%20deborphan" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2013%2F10%2F18%2Fsaving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html&#038;title=Saving%20and%20restoring%20the%20list%20of%20packages%20installed%20on%20a%20Debian%20system%20using%20aptitude%20or%20deborphan" data-a2a-url="https://bogdan.org.ua/2013/10/18/saving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html" data-a2a-title="Saving and restoring the list of packages installed on a Debian system using aptitude or deborphan"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2013/10/18/saving-restoring-list-of-packages-installed-on-debian-using-aptitude-deborphan.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>rtorrent-enhanced with ipfilter and GeoIP: Debian Squeeze amd64 package</title><link>https://bogdan.org.ua/2011/04/01/rtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html</link> <comments>https://bogdan.org.ua/2011/04/01/rtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html#comments</comments> <pubDate>Thu, 31 Mar 2011 23:15:49 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[amd64]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[geoip]]></category> <category><![CDATA[ipfilter]]></category> <category><![CDATA[package]]></category> <category><![CDATA[rtorrent]]></category> <category><![CDATA[squeeze]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/?p=1530</guid> <description><![CDATA[rtorrent is an excellent ncurses rtorrent client. There are a few highly-popular patches, which haven&#8217;t yet made it into the Squeeze&#8217;s rtorrent version 0.8.6. Note: ArchLinux already has an rtorrent-extended package, so you may want to look at that one (instead of my Debian package below). I might use Arch&#8217;s patchset next time to generate [&#8230;]]]></description> <content:encoded><![CDATA[<p><img
src="http://bogdan.org.ua/wp-content/uploads/2011/03/shot.png" alt="rtorrent-eyecandy" title="rtorrent-eyecandy (from http://karabaja.pondi.hr/packages/rtorrent-mod/shot.png)" width="698" height="380" class="alignnone size-full wp-image-1533" /><br
/> rtorrent is an excellent ncurses <del
datetime="2011-03-31T21:25:09+00:00">r</del>torrent client.</p><p>There are a few highly-popular patches, which haven&#8217;t yet made it into the Squeeze&#8217;s rtorrent version 0.8.6.</p><p><strong>Note</strong>: ArchLinux already has an <a
href="http://aur.archlinux.org/packages.php?ID=33756">rtorrent-extended package</a>, so you may want to look at that one (instead of my Debian package below). I might use Arch&#8217;s patchset next time to generate a truly extended rtorrent package.</p><p>I&#8217;ve incorporated 3 of such patches (<a
href="http://libtorrent.rakshasa.no/ticket/239" class="broken_link" rel="nofollow">#239</a> ipfilter, <a
href="http://libtorrent.rakshasa.no/ticket/2064" class="broken_link" rel="nofollow">#2064</a> GeoIP support, and <a
href="http://libtorrent.rakshasa.no/ticket/2171" class="broken_link" rel="nofollow">#2171</a> colours/eyecandy), and built a <a
href="/wp-content/uploads/2011/04/rtorrent_0.8.6-1_amd64.deb">squeeze amd64 rtorrent-enhanced package</a>.</p><p><img
src="http://bogdan.org.ua/wp-content/uploads/2011/04/rtorrent-features.png" alt="" title="rtorrent-features" width="675" height="107" class="alignnone size-full wp-image-1537" /></p><p>A few excerpts to explain how these extra features are to be configured and used (all come from the above-mentioned trac tickets, some were edited/extended).</p><p><strong>ipfilter</strong></p><blockquote><p>ipfilter allows to selectively blacklist/whitelist peers &#8211; based on IP address range files (so-called ipfilter files). The ipfilter files may, for example, come from bluetack.co.uk. Each line of the file contains a record in this format: <strong>range_description:start_IP-end_IP</strong>, where <em>start_IP</em> should be less than or equal to <em>end_IP</em>. Multiple files can be used. Overlapping ranges are merged automatically. Both incoming and outgoing connections are checked against the filter. Exclusions are not supported, so connection to/from IPs in all the loaded ranges will be disallowed and dropped.</p></blockquote><blockquote><p>Include &#8220;ip_filter=<file,...>&#8221; directive in .rtorrent.rc. For example (paths are specified relative to user&#8217;s home directory):<br
/> <strong>ip_filter=ipfilter/level1,ipfilter/level2</strong></p></blockquote><blockquote><p>It is probably a good idea to reload ipfilter files once in a while, so you can also include &#8220;reload_ip_filter&#8221; directive on schedule to refresh the filter. The same files named in &#8220;ip_filter&#8221; will be reloaded.</p><p><strong>schedule = filter,18:30:00,24:00:00,reload_ip_filter=</strong></p></blockquote><blockquote><p>To support the feature you may want to setup cron job to reload and unzip files from bluetack. Examples <a
href="http://libtorrent.rakshasa.no/ticket/239#comment:26" class="broken_link" rel="nofollow">here</a> and <a
href="http://pastebin.com/jLqT3qxL">here</a>.</p></blockquote><p><strong>GeoIP</strong></p><blockquote><p>In the Peers view of each torrent a new column &#8211; CC, country code &#8211; is added, which shows peer&#8217;s country code. When examining each peer, you will see more data from the GeoIP database (if you have the relevant files installed): AS num and city. At the very least, you need to have <strong>geoip-database</strong> installed. You can get free &#8220;lite&#8221; versions of <a
href="http://www.maxmind.com/app/geolitecity">city</a>/<a
href="http://geolite.maxmind.com/download/geoip/database/asnum/" class="broken_link" rel="nofollow">AS</a>-databases, rename them (removing &#8220;lite&#8221;) and put into an appropriate location to make rtorrent+geoip use them as well. Geop-isp data support isn&#8217;t integrated into this rtorrent package.</p></blockquote><p><strong>Colours</strong></p><blockquote><p>This patch somewhat changes the way rtorrent shows torrents. Seeding torrents have bold titles, there are no half-displayed torrents at the top/bottom when scrolling, and you can configure colours for active/done torrents (ticket libtorrent.rakshasa.no/ticket/1382, which seems to be gone now). Source code and testing hint at these configurable colours: <em>done_fg_color, done_bg_color, active_fg_color, active_bg_color</em>, and at these possible values: 1 (red), 2 (green), 3 (yellow).</p></blockquote><p><strong>Geek&#8217;s cellar</strong><br
/> A related (though not used in any way for the preparation of the package) resource is <a
href="https://calomel.org/rtorrent_mods.html">rtorrent mods page</a>.</p><p>Relatively schematically, applying patches and building the package was performed in these steps (starting within some newly-created directory):</p><ol><li>sudo aptitude install cdbs devscripts [and whatever else you find you're missing]</li><li>apt-get source rtorrent</li><li>dpkg-source -x rtorrent_0.8.6-1.dsc</li><li>cd rtorrent-0.8.6</li><li>cdbs-edit-patch 01-ipfilter.patch</li><li>patch -p1 < /path/to/patch/239</li><li>exit 0</li><li>cdbs-edit-patch 02-geoip.patch</li><li>patch -p1 < /path/to/patch/2064-after-ipfilter</li><li>exit 0</li><li>cdbs-edit-patch 03-eyecandy.patch</li><li>patch -p1 < /path/to/patch/2171-mod-with-canvas</li><li>exit 0 [you could do all 3 patches together, but I prefer cleaner and manageable approaches]</li><li>[some weird operation to be explained below]</li><li>dpkg-buildpackage</li></ol><p>Weird operation: I didn&#8217;t know how to make dpkg-buildpackage run autorun.sh (which is required for one of the patches I&#8217;ve used) before configure (could someone enlighten me how to do that?), so I started a new patch with cdbs-edit-patch, then ran one by one `autoreconf -if`, `./autorun.sh`, `./configure`, exited with zero status and was done with that problem. The resulting &#8220;patch&#8221; was 2MB large <img
src="https://bogdan.org.ua/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2011%2F04%2F01%2Frtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html&amp;linkname=rtorrent-enhanced%20with%20ipfilter%20and%20GeoIP%3A%20Debian%20Squeeze%20amd64%20package" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2011%2F04%2F01%2Frtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html&amp;linkname=rtorrent-enhanced%20with%20ipfilter%20and%20GeoIP%3A%20Debian%20Squeeze%20amd64%20package" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2011%2F04%2F01%2Frtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html&amp;linkname=rtorrent-enhanced%20with%20ipfilter%20and%20GeoIP%3A%20Debian%20Squeeze%20amd64%20package" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2011%2F04%2F01%2Frtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html&amp;linkname=rtorrent-enhanced%20with%20ipfilter%20and%20GeoIP%3A%20Debian%20Squeeze%20amd64%20package" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2011%2F04%2F01%2Frtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html&amp;linkname=rtorrent-enhanced%20with%20ipfilter%20and%20GeoIP%3A%20Debian%20Squeeze%20amd64%20package" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2011%2F04%2F01%2Frtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html&#038;title=rtorrent-enhanced%20with%20ipfilter%20and%20GeoIP%3A%20Debian%20Squeeze%20amd64%20package" data-a2a-url="https://bogdan.org.ua/2011/04/01/rtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html" data-a2a-title="rtorrent-enhanced with ipfilter and GeoIP: Debian Squeeze amd64 package"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2011/04/01/rtorrent-enhanced-with-ipfilter-and-geoip-debian-squeeze-amd64-package.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Chandler 1.0.3 package for Debian testing amd64</title><link>https://bogdan.org.ua/2010/01/25/chandler-1-0-3-package-for-debian-testing-amd64.html</link> <comments>https://bogdan.org.ua/2010/01/25/chandler-1-0-3-package-for-debian-testing-amd64.html#comments</comments> <pubDate>Mon, 25 Jan 2010 08:52:26 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[amd64]]></category> <category><![CDATA[Chandler]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[package]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/?p=976</guid> <description><![CDATA[Recently, I have come across the Chandler project. Chandler is a sophisticated organizer, including tasks, calendar, appointments, invitations, and many more. The project does provide a 64-bit package for Ubuntu 8.10 &#8220;Intrepid Ibex&#8221;, but it has a dependency on python-zope-interface &#8211; which in Debian testing is a virtual package, currently provided by python-zope.interface. That single [&#8230;]]]></description> <content:encoded><![CDATA[<p><a
href="http://chandlerproject.org/"><img
src="http://bogdan.org.ua/wp-content/uploads/2010/01/chandler-project-logo.png" alt="" title="chandler-project-logo" width="192" height="39" class="alignleft size-full wp-image-979" /></a>Recently, I have come across the <a
href="http://chandlerproject.org/">Chandler project</a>. Chandler is a sophisticated organizer, including tasks, calendar, appointments, invitations, and many more.</p><p>The project does provide a <a
href="http://downloads.osafoundation.org/chandler/releases/1.0.3/#enduserlinux" class="broken_link" rel="nofollow">64-bit package</a> for Ubuntu 8.10 &#8220;Intrepid Ibex&#8221;, but it has a dependency on python-zope-interface &#8211; which in Debian testing is a virtual package, currently provided by python-zope.interface. That single dependency made my aptitude complain all the time, so I edited the .deb-file, renaming depends/python-zope-interface to depends/python-zope.interface (following <a
href="http://thedarkmaster.wordpress.com/2008/05/24/how-to-create-manipulate-a-deb-file-of-a-compiled-application/">nice and simple instructions</a>). After that &#8211; no more aptitude complaints, and Chandler works fine.</p><p>Download the <a
href="http://bogdan.org.ua/wp-content/uploads/2010/01/chandler-1.0.3-amd64-Debian-testing.deb">modified Chandler 1.0.3 Debian testing amd64 package</a> (md5: 239071715977bea2eb75f3bb54491a02).</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2010%2F01%2F25%2Fchandler-1-0-3-package-for-debian-testing-amd64.html&amp;linkname=Chandler%201.0.3%20package%20for%20Debian%20testing%20amd64" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2010%2F01%2F25%2Fchandler-1-0-3-package-for-debian-testing-amd64.html&amp;linkname=Chandler%201.0.3%20package%20for%20Debian%20testing%20amd64" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2010%2F01%2F25%2Fchandler-1-0-3-package-for-debian-testing-amd64.html&amp;linkname=Chandler%201.0.3%20package%20for%20Debian%20testing%20amd64" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2010%2F01%2F25%2Fchandler-1-0-3-package-for-debian-testing-amd64.html&amp;linkname=Chandler%201.0.3%20package%20for%20Debian%20testing%20amd64" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2010%2F01%2F25%2Fchandler-1-0-3-package-for-debian-testing-amd64.html&amp;linkname=Chandler%201.0.3%20package%20for%20Debian%20testing%20amd64" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2010%2F01%2F25%2Fchandler-1-0-3-package-for-debian-testing-amd64.html&#038;title=Chandler%201.0.3%20package%20for%20Debian%20testing%20amd64" data-a2a-url="https://bogdan.org.ua/2010/01/25/chandler-1-0-3-package-for-debian-testing-amd64.html" data-a2a-title="Chandler 1.0.3 package for Debian testing amd64"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2010/01/25/chandler-1-0-3-package-for-debian-testing-amd64.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Debian-Med Project</title><link>https://bogdan.org.ua/2008/09/03/debian-med-project.html</link> <comments>https://bogdan.org.ua/2008/09/03/debian-med-project.html#comments</comments> <pubDate>Tue, 02 Sep 2008 22:34:56 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[Links]]></category> <category><![CDATA[Science]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[biology]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[debian-med]]></category> <category><![CDATA[development]]></category> <category><![CDATA[medicine]]></category> <category><![CDATA[package]]></category> <category><![CDATA[practice]]></category> <category><![CDATA[project]]></category> <category><![CDATA[research]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/?p=356</guid> <description><![CDATA[There&#8217;s a Debian-Med project, aiming to develop Debian into an operating system that is particularly well fit for the requirements for medical practice and research Debian-Med has several web sites/pages: one at Debian.org (descriptive), and the actual project&#8217;s website at debian-med.alioth.debian.org. There&#8217;s also debian-med wiki (for developers). As of nowadays, Debian-Med has released a number [&#8230;]]]></description> <content:encoded><![CDATA[<p>There&#8217;s a <a
href="http://alioth.debian.org/projects/debian-med" class="broken_link" rel="nofollow">Debian-Med project</a>, aiming to</p><blockquote><p>develop Debian into an operating system that is particularly well fit for the requirements for medical practice and research</p></blockquote><p>Debian-Med has several web sites/pages: one at <a
href="http://www.debian.org/devel/debian-med/">Debian.org</a> (descriptive), and the actual project&#8217;s website at <a
href="http://debian-med.alioth.debian.org/" class="broken_link" rel="nofollow">debian-med.alioth.debian.org</a>. There&#8217;s also <a
href="http://wiki.debian.org/DebianMed">debian-med wiki</a> (for developers).</p><p>As of nowadays, Debian-Med has released a number of Debian packages, which are grouped into respective <a
href="http://debian-med.alioth.debian.org/tasks/" class="broken_link" rel="nofollow">Debian Med Tasks</a>. The Biology-dev task, for example, contains <abbr
title="Markov cluster algorithm">MCL</abbr> and libsbml packages (among many others).</p><p>Check this project out &#8211; you might find that the software you need is already available as Debian package.</p><p><em>This post was stimulated by <a
href="http://bogdan.org.ua/2008/08/30/installing-libsbml-on-debian-to-make-ibiosim-start.html#comment-81021">Steffen&#8217;s comment</a>.</em></p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F09%2F03%2Fdebian-med-project.html&amp;linkname=Debian-Med%20Project" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F09%2F03%2Fdebian-med-project.html&amp;linkname=Debian-Med%20Project" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F09%2F03%2Fdebian-med-project.html&amp;linkname=Debian-Med%20Project" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F09%2F03%2Fdebian-med-project.html&amp;linkname=Debian-Med%20Project" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2008%2F09%2F03%2Fdebian-med-project.html&amp;linkname=Debian-Med%20Project" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2008%2F09%2F03%2Fdebian-med-project.html&#038;title=Debian-Med%20Project" data-a2a-url="https://bogdan.org.ua/2008/09/03/debian-med-project.html" data-a2a-title="Debian-Med Project"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2008/09/03/debian-med-project.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>