<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Export on Michael’s Domain</title><link>https://jeltsch.org/en/tags/export/</link><description>Recent content in Export on Michael’s Domain</description><generator>Hugo</generator><language>en-us</language><copyright>Copyright © 2002 - 2026 Michael Jeltsch.</copyright><lastBuildDate>Fri, 24 Jul 2026 00:18:18 +0300</lastBuildDate><atom:link href="https://jeltsch.org/en/tags/export/index.xml" rel="self" type="application/rss+xml"/><item><title>Purifying Proteins with Äkta &amp; Unicorn</title><link>https://jeltsch.org/en/unicorn7/</link><pubDate>Sun, 19 Apr 2026 00:00:00 +0000</pubDate><guid>https://jeltsch.org/en/unicorn7/</guid><description>&lt;p&gt;Proteins (and other biomolecules) are mostly purified by chromatographic methods. There are a few vendors that have designed dedicated chromatography systems that are optimized for biomolecules such as proteins, nucleic acids, and viruses. The most well-known systems are BioRad&amp;rsquo;s NGC and Cytiva&amp;rsquo;s Äkta lines. Our faculty has recently acquired an Äkta Avant, and we are almost ready with setting it up. It&amp;rsquo;s already integrated into the reservation system. Only the automated backup system is still missing. I have been using Äkta devices since 1996, when Professor 
 &lt;a href="https://fi.wikipedia.org/wiki/Jorma_Keski-Oja" target="_blank" rel="noopener noreferrer nofollow"&gt;Jorma Keski-Oja&amp;nbsp;






 
 
 
 &lt;svg class="svg-inline--fa fas fa-up-right-from-square fa-2xs" fill="currentColor" aria-hidden="true" role="img" viewBox="0 0 512 512" overflow="visible"&gt;&lt;use href="#fas-up-right-from-square"&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/a&gt;
 bought one of the first Äkta Explorers for the Haartman Institute. The software was and still is Unicorn, but we are at version 7 now, which has a modern look when compared to the Unicorn versions from the last millennium: much less messy and cluttered. However, even after more than 10 years of development, Unicorn 7 is not yet at feature parity with the old versions. Hence, its &lt;em&gt;&lt;strong&gt;Evaluation&lt;/strong&gt;&lt;/em&gt; module offers you the option to switch back to &lt;em&gt;&lt;strong&gt;Evaluation Classic&lt;/strong&gt;&lt;/em&gt;. E.g., if you want to present personalized and stylish chromatograms in your talks, you still need &lt;em&gt;Evaluation Classic&lt;/em&gt;! The new &lt;em&gt;Evaluation&lt;/em&gt; module does have quick buttons to import curves into presentation software such as PowerPoint, but it is all pixel-based and therefore not easily editable after export. You want to export your curves into the industry-standard vector graphics file: SVG. You can edit it with any modern vector graphics editor, such as Canva, Adobe Illustrator, or Inkscape. When you right-click inside the chromatogram in &lt;em&gt;Evaluation Classic&lt;/em&gt;, you have the option to save the chromatogram as a meta file. However, in the recent Unicorn version, this results in an error on Windows 11. But there is a workaround:&lt;/p&gt;</description></item><item><title>Exporting from Avidemux to MP4</title><link>https://jeltsch.org/en/avidemux/</link><pubDate>Sat, 20 Sep 2025 00:00:00 +0000</pubDate><guid>https://jeltsch.org/en/avidemux/</guid><description>&lt;p&gt;For some reason, Helsinki University&amp;rsquo;s 
 &lt;a href="https://www.helsinki.fi/fi/ajankohtaista/unitube" target="_blank" rel="noopener noreferrer nofollow"&gt;Unitube&amp;nbsp;






 
 
 
 &lt;svg class="svg-inline--fa fas fa-up-right-from-square fa-2xs" fill="currentColor" aria-hidden="true" role="img" viewBox="0 0 512 512" overflow="visible"&gt;&lt;use href="#fas-up-right-from-square"&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/a&gt;
 crashes when trying to upload an MKV file. The same used to work last year… Only proprietary formats seem to be ok (such as MP4). This creates lots of additional work for me, since I use open source tools to edit my lecture recordings (mostly to cut out unnecessary parts).However, to create an MP4 file, I need to transcode, which is a time-consuming process that requires changing many of the default settings. Below the process using the Open source software Avidemux:&lt;/p&gt;</description></item><item><title>How to mount a NFS export</title><link>https://jeltsch.org/en/how_to_mount_a_nfs_export/</link><pubDate>Wed, 23 May 2007 00:00:00 +0000</pubDate><guid>https://jeltsch.org/en/how_to_mount_a_nfs_export/</guid><description>&lt;p&gt;&lt;code&gt;sudo mount -t nfs -o rw server:/var/www /webserver&lt;/code&gt;or&lt;code&gt;mount server:/var/www /webserver&lt;/code&gt;The mount can be put into /etc/fstab, e.g.:&lt;code&gt;server:/var/www /webserver nfs rsize=8192,wsize=8192,timeo=14,intr,user&lt;/code&gt;This doesn&amp;rsquo;t mount the nfs export automatically during startup, but any user can mount it by executing &amp;ldquo;mount /webserver&amp;rdquo;. Be aware that if you have mounted another filesystem under /var/www (e.g. if you keep all html data on a seperate partition like /var/www/htdocs), these won&amp;rsquo;t be available unless you export the partition&amp;rsquo;s mountpoint seperately!&lt;/p&gt;</description></item><item><title>NFS shares &amp; automount</title><link>https://jeltsch.org/en/nfs_shares_automount/</link><pubDate>Wed, 04 Apr 2007 00:00:00 +0000</pubDate><guid>https://jeltsch.org/en/nfs_shares_automount/</guid><description>&lt;p&gt;On each computer on the network there is an NFS server running, starting at bootup (edit the runlevel to enable that). In Suse Linux, NFS shares can be configured in YAST (NFS server configuration) or directly in /etc/exports file. Don&amp;rsquo;t configure the remote root to act as local root! Shares should be configured to be accessed only from the local network 192.168.0.0/24 or 192.168.0.0/255.255.255.0. &lt;code&gt;/media/downloads/ 192.168.0.0/255.255.255.0(root_squash,sync)&lt;/code&gt;UIDs have to be the same on all computers for the permissions to work properly. In case they are different you can change them in YAST. After the changes files and directories will have the old user id set as the owner, so you&amp;rsquo;ll have to change the owner globally: &lt;code&gt;chown -R --from=1001 marzena /&lt;/code&gt; Change also permissions for hidden files in the home directory: &lt;code&gt;/home/marzena chown -R --from=1001 marzena .[a-zA-Z0-9]*&lt;/code&gt;NFS shares are accessed by other computers with automount, not configured in /etc/fstab!&lt;/p&gt;</description></item></channel></rss>