<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/34864?offset=10</link>
	<atom:link href="https://bioinformaticsonline.com/related/34864?offset=10" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/1182/installing-perl-gd-module</guid>
	<pubDate>Mon, 22 Jul 2013 14:02:01 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/1182/installing-perl-gd-module</link>
	<title><![CDATA[Installing Perl GD Module]]></title>
	<description><![CDATA[<div><p>In comparative genome analysis work, we usually compare more than two genomes and looks for syntenic regions amongst them. In my research I used Evolution Highway (RH) <a href="http://eh-demo.ncsa.uiuc.edu/">http://eh-demo.ncsa.uiuc.edu/</a>, which is a collaborative project designed to provide a visual means for simultaneously comparing genomes of multiple amniote species. The tool removes the burden of manually aligning these maps and allows cognitive skills to be used toward something more valuable than preparation and transformation of data. In addition to EH, attractive Circos (<a href="http://circos.ca/">http://circos.ca/</a>) is also very popular for this kind of analysis.</p><p>The EH is available online, and can be easily access and use, whereas Circos installation is not entirely straightforward. One of the most difficult parts of the installation involves installing the GD library. Since there weren't good instructions for installing this library on the internet I decided to post instructions here in case they are useful to anyone else.</p><p><strong>Following are the steps to install GD modules in Mac OS</strong><br /><br />1. Setup<br /><br />Create a folder for the files:<br /><br />$ mkdir -p /SourceCache<br />$ cd /SourceCache<br /><br />Get and unpack the required Jpeg-6b and GD libraries:<br />Download Jpeg-6b (<a href="http://code.google.com/p/google-desktop-for-linux-mirror/downloads/detail?name=jpeg-6b.tar.gz&amp;can=2&amp;q">http://code.google.com/p/google-desktop-for-linux-mirror/downloads/detail?name=jpeg-6b.tar.gz&amp;can=2&amp;q</a>)<br />Download GD (<a href="http://search.cpan.org/%7Elds/GD-2.46/">http://search.cpan.org/~lds/GD-2.46/</a>)<br /><br />Place the "tar.gz" files in "/SourceCache" and double click to unpack.<br /><br />2. Install libjpeg<br /><br />Copy the "config.sub" and "config.guess" files to "/SourceCache". Note that your "config.sub" and ""config.guess" files may be in a slightly different location. The commands below show where they were on my machine:<br /><br />$ cd /SourceCache/jpeg-6b/src<br />$ cp /usr/share/libtool/config/config.sub .<br />$ cp /usr/share/libtool/config/config.guess .<br /><br />Configure libjpeg as follows. Note that this was installed on a 64 bit machine. However, this method may configure it in a 32 bit format. This may not be the best way to configure the installation but it works.<br /><br />$ .configure --enable-shared<br />$ make<br /><br />Check to see if the following directories exist on your machine. Create the missing directories in the following manner:<br /><br />$ mkdir -p /usr/local/include<br />$ mkdir -p /usr/local/bin<br />$ mkdir -p /usr/local/lib<br />$ mkdir -p /usr/local/man/man1<br /><br />Finish making and installing libjpeg:<br /><br />$ make install<br /><br />3. Install GD<br /><br />$ cd /SourceCache/GD-2.46/GD/<br />$ perl Makefile.PL<br />$ make<br />$ make test (optional)<br />$ make html (optional)<br />$ make install</p><p><strong>Other way for Mac OS</strong><br />The easiest way to get a lot of these is with a program called Fink, which is similar in nature to the CPAN installer, but installs common GNU utilities. Fink is available from &lt;<a href="http://sourceforge.net/projects/fink/%3E">http://sourceforge.net/projects/fink/&gt;</a>.<br /><br />Follow the instructions for setting up Fink. Once it's installed, you'll want to run the following as root: fink install gd<br /><br />It will prompt you for a number of dependencies, type 'y' and hit enter to install all of the dependencies. Then watch it work.<br /><br />To prevent creating conflicts with the software that Apple installs by default, Fink creates its own directory tree at /sw where it installs most of the software that it installs. This means your libraries and headers for libgd will be at /sw/lib and /sw/include instead of /usr/lib and /usr/local/include. Because of these changed locations for the libraries, the Perl GD module will not install directly via CPAN, because it looks for the specific paths instead of getting them from your environment. But there's a way around that :-)<br /><br />Instead of typing "install GD" at the cpan&gt; prompt, type look GD. This should go through the motions of downloading the latest version of the GD module, then it will open a shell and drop you into the build directory. Apply below patch to the Makefile.PL file (save the patch into a file and use the command patch &lt; patchfile.)<br /><br />Then, run these commands to finish the installation of the GD module:<br /><br />perl Makefile.PL<br />make<br />make test<br />make install<br />And don't forget to run exit to get back to CPAN.</p><p>&nbsp;</p><p><strong>Install on MS Window, using PPM</strong></p><p>C:\Documents and Settings\Owner&gt;ppm<br />PPM interactive shell (2.2.0) - type 'help' for available commands.<br />PPM&gt; install GD<br />Install package 'GD?' (y/N): y<br />Installing package 'GD'...<br />Downloading <a href="http://ppm.ActiveState.com/PPMPackages/5.6plus/MSW">http://ppm.ActiveState.com/PPMPackages/5.6plus/MSW</a>. ...<br />Installing C:\Perl\site\lib\auto\GD\GD.bs<br />Installing C:\Perl\site\lib\auto\GD\GD.dll<br />Installing C:\Perl\site\lib\auto\GD\GD.exp<br />Installing C:\Perl\site\lib\auto\GD\GD.lib<br />Installing C:\Perl\html\site\lib\GD.html<br />Installing C:\Perl\site\lib\GD.pm<br />Installing C:\Perl\site\lib\qd.pl<br />Installing C:\Perl\site\lib\auto\GD\autosplit.ix<br />PPM&gt;<br /><br /><br />If you can't install it from ppm. You can download it:<br /><a href="http://ppm.ActiveState.com/PPMPackages/5.6plus/MSW">http://ppm.ActiveState.com/PPMPackages/5.6plus/MSW</a>.<br /><br /><br />BTW,All Perl 5.6.1 Modules are located at:<br /><br /><a href="http://ppm.ActiveState.com/PPMPackages/5.6plus/MSW">http://ppm.ActiveState.com/PPMPackages/5.6plus/MSW</a>.</p><p>&nbsp;</p><p><strong>Install the Perl GD Module on Linux</strong><br /><br />$ sudo perl -MCPAN -e shell<br /><br />Since it was the first time I had run this command on this particular machine I had to answer a lot of questions but simply selected the defaults for everything as this usually works for me. Once in the CPAN shell I entered<br /><br />$ install Bundle::CPAN<br /><br />and selected all of the defaults again. Once the CPAN bundle had finished installing I tried to install GD::Graph by typing<br /><br />$ install GD::Graph<br /><br />but it failed with hundreds of errors &ndash; the first of which was<br /><br />GD.xs:7:16: error: gd.h: No such file or directory<br /><br />This was fixed with the following apt-get command (in the bash shell)<br /><br />$ sudo apt-get install libgd2-xpm-dev<br /><br />back in the CPAN shell I still couldn&rsquo;t get GD::Graph to build and I guessed this was because of some left over files from the failed build. I don&rsquo;t know the command to clean things up inside the CPAN shell and am too lazy to read the docs so I simply went into the .cpan/build directory in my home directory and deleted anything that started with GD &ndash; eg<br /><br />$ rm -rf GD-2.35-HC_vkB<br /><br />$ rm -rf GDGraph-1.44-Evfibe<br /><br />and so on. Those strings at the end (VkB and so on) look random so they might be different on your machine. Then I went back into the CPAN shell and ran<br /><br />$ install GD::Graph<br /><br />There were a few dependencies which the script fetched and installed for me but everything worked smoothly.</p><p>Manual and other Perl Module instalation are mentioned in my previous blog @ <a href="http://bioinformaticsonline.com/blog/view/710/how-to-install-perl-modules-manually-using-cpan-command-and-other-quick-ways">http://bioinformaticsonline.com/blog/view/710/how-to-install-perl-modules-manually-using-cpan-command-and-other-quick-ways</a></p></div>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42003/perl-one-liner-for-beginners</guid>
	<pubDate>Fri, 24 Jul 2020 05:58:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42003/perl-one-liner-for-beginners</link>
	<title><![CDATA[Perl one-liner for beginners !]]></title>
	<description><![CDATA[<p>I often use the following arguments to perl:</p><ul>
<li>-e Makes the line of code be executed instead of a script</li>
<li>-n Forces your line to be called in a loop. Allows you to take lines from the diamond operator (or stdin)</li>
<li>-p Forces your line to be called in a loop. Prints $_ at the end</li>
</ul><p>&nbsp;</p><ul>
<li>This counts the number of quotation marks in each line and prints it
<div>
<blockquote>
<div>perl -ne&nbsp;'$cnt = tr/"//;print "$cnt\n"'&nbsp;inputFileName.txt</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>Adds string to each line, followed by tab
<div>
<blockquote>
<div>perl -pe&nbsp;'s/(.*)/string\t$1/'&nbsp;inFile &gt; outFile</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>Append a new line to each line
<div>
<blockquote>
<div>perl -pe&nbsp;'s//\n/'&nbsp;all.sent.classOnly &gt; all.sent.classOnly.sep</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>Replace all occurrences of pattern1 (e.g. [0-9]) with pattern2
<div>
<blockquote>
<div>perl -p -i.bak -w -e&nbsp;'s/pattern1/pattern2/g'&nbsp;inputFile</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>Go through file and only print words that do not have any uppercase letters.
<div>
<blockquote>
<div>perl -ne&nbsp;'print unless m/[A-Z]/'&nbsp;allWords.txt &gt; allWordsOnlyLowercase.txt</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>Go through file, split line at each space and print words one per line.
<div>
<blockquote>
<div>perl -ne&nbsp;'print join("\n", split(/ /,$_));print("\n")'&nbsp;someText.txt &gt; wordsPerLine.txt</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>or in other words, delete every character that is not a letter, white space or line end (replace with nothing)
<div>
<blockquote>
<div>perl -pne&nbsp;'s/[^a-zA-Z\s]*//g'&nbsp;text_withSpecial.txt &gt; text_lettersOnly.txt</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>
<div>
<div>perl -pne&nbsp;'tr/[A-Z]/[a-z]/'&nbsp;textWithUpperCase.txt &gt; textwithoutuppercase.txt;</div>
</div>
</li>
</ul><ul>
<li>Print only the second column of the data when using tabular as a separator
<div>
<blockquote>
<div>perl -ne&nbsp;'@F = split("\t", $_); print "$F[1]";'&nbsp;columnFileWithTabs.txt &gt; justSecondColumn.txt</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>
<div>One-Liner: Sort lines by their length
<blockquote>
<div>perl -e&nbsp;'print sort {length $a &lt;=&gt; length $b} &lt;&gt;'&nbsp;textFile</div>
</blockquote>
</div>
</li>
</ul><ul>
<li>One-Liner: Print second column, unless it contains a number
<blockquote>
<div>perl"&gt;perl -lane&nbsp;'print $F[1] unless $F[1] =~ m/[0-9]/'&nbsp;wordCounts.txt</div>
</blockquote>
</li>
</ul>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40583/trelliscope-flexibly-visualize-large-complex-data-in-great-detail-from-within-the-r-statistical-programming-environment</guid>
	<pubDate>Tue, 21 Jan 2020 04:22:49 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40583/trelliscope-flexibly-visualize-large-complex-data-in-great-detail-from-within-the-r-statistical-programming-environment</link>
	<title><![CDATA[Trelliscope: flexibly visualize large, complex data in great detail from within the R statistical programming environment.]]></title>
	<description><![CDATA[<p>Trelliscope provides a way to flexibly visualize large, complex data in great detail from within the R statistical programming environment. Trelliscope is a component in the<span>&nbsp;</span><a href="http://deltarho.org/docs-trelliscope/deltarho.org">DeltaRho</a><span>&nbsp;</span>environment.</p>
<p>For those familiar with<span>&nbsp;</span><a href="http://cm.bell-labs.com/cm/ms/departments/sia/project/trellis/">Trellis Display</a>,<span>&nbsp;</span><a href="http://docs.ggplot2.org/0.9.3.1/facet_wrap.html">faceting in ggplot</a>, or the notion of<span>&nbsp;</span><a href="http://en.wikipedia.org/wiki/Small_multiple">small multiples</a>, Trelliscope provides a scalable way to break a set of data into pieces, apply a plot method to each piece, and then arrange those plots in a grid and interactively sort, filter, and query panels of the display based on metrics of interest. With Trelliscope, we are able to create multipanel displays on data with a very large number of subsets and view them in an interactive and meaningful way.</p><p>Address of the bookmark: <a href="http://deltarho.org/docs-trelliscope/#introduction" rel="nofollow">http://deltarho.org/docs-trelliscope/#introduction</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</guid>
	<pubDate>Tue, 24 Feb 2015 20:23:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</link>
	<title><![CDATA[A guide for complete R beginners :- Installing R packages]]></title>
	<description><![CDATA[<p>Part of the reason R has become so popular is the vast array of packages available at the <a href="http://cran.r-project.org/" target="_blank">cran</a> and <a href="http://www.bioconductor.org/" target="_blank">bioconductor</a> repositories. In the last few years, the number of packages has grown <a href="http://blog.revolutionanalytics.com/2010/09/what-can-other-languages-learn-from-r.html" target="_blank">exponentially</a>!</p><p>This is a short post giving steps on how to actually install R packages. Let&rsquo;s suppose you want to install the <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> package. Well nothing could be easier. We just fire up an R shell and type:<br /><code><br />&gt; install.packages("ggplot2")</code></p><p>In theory the package should just install, however:</p><ul>
<li>if you are using Linux and don&rsquo;t have root access, this command won&rsquo;t work.</li>
<li>you will be asked to select your local mirror, i.e. which server should you use to download the package.</li>
</ul><h4>Installing packages without root access</h4><p>First, you need to designate a directory where you will store the downloaded packages. On my machine, I use the directory <code>/data/Rpackages/</code> After creating a package directory, to install a package we use the command:<br /><code><br />&gt; install.packages("ggplot2"</code><code>, lib="/data/Rpackages/")<br />&gt; library(ggplot2, lib.loc="/data/Rpackages/")<br /></code></p><p>It&rsquo;s a bit of a pain having to type <code>/data/Rpackages/</code> all the time. To avoid this burden,&nbsp; we create a file <code>.Renviron</code> in our home area, and add the line <code>R_LIBS=/data/Rpackages/</code> to it. This means that whenever you start R, the directory <code>/data/Rpackages/</code> is added to the list of places to look for R packages and so:</p><p><code>&gt; install.packages("ggplot2"</code><code>)<br />&gt; library(ggplot2)</code></p><p>just works!</p><h4>Setting the repository</h4><p>Every time you install a R package, you are asked which repository R should use. To set the repository and avoid having to specify this at every package install, simply:</p><ul>
<li>create a file <code>.Rprofile</code> in your home area.</li>
<li>Add the following piece of code to it:</li>
</ul><p><code><br />cat(".Rprofile: Setting UK repositoryn")<br />r = getOption("repos") # hard code the UK repo for CRAN<br />r["CRAN"] = "http://cran.uk.r-project.org"<br />options(repos = r)<br />rm(r)<br /></code></p><p>I found this tip in a stackoverflow <a href="http://stackoverflow.com/questions/1189759/expert-r-users-whats-in-your-rprofile/1189826#1189826" target="_blank">answer </a>.</p>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/37000/install-imagemagick-from-unix-source</guid>
	<pubDate>Wed, 20 Jun 2018 11:22:43 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/37000/install-imagemagick-from-unix-source</link>
	<title><![CDATA[Install ImageMagick from Unix Source]]></title>
	<description><![CDATA[<p>ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download&nbsp;<a href="https://www.imagemagick.org/download/ImageMagick.tar.gz">ImageMagick.tar.gz</a>from&nbsp;<a href="https://www.imagemagick.org/download">www.imagemagick.org</a>&nbsp;or a&nbsp;<a href="https://www.imagemagick.org/script/mirror.php">mirrors</a>&nbsp;and verify its&nbsp;<a href="https://www.imagemagick.org/download/digest.rdf">message digest</a>.</p><p>Unpack the distribution with this command:</p><pre><code>tar xvzf ImageMagick.tar.gz
</code></pre><p>Next configure and compile ImageMagick. Note the&nbsp;<a href="https://en.wikipedia.org/wiki/Pkg-config">pkg-config</a>&nbsp;script is required so that ImageMagick can find certain optional delegate libraries on your system. To configure, type:</p><pre><span>$ </span><span>cd ImageMagick-7.0.8</span><span><br /></span><span>$ </span><span>./configure</span><span><br /></span><span>$ </span><span>make</span></pre><p>If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type</p><pre><code>sudo make install
</code></pre><p>You may need to configure the dynamic linker run-time bindings:</p><pre><code>sudo ldconfig /usr/local/lib
</code></pre><p>Finally, verify the ImageMagick install worked properly, type</p><pre><code>/usr/local/bin/convert logo: logo.gif
</code></pre><p>For a more comprehensive test, run the ImageMagick validation suite. Ghostscript is a prerequisite, otherwise the EPS, PS, and PDF tests will fail.</p><pre><code>make check
</code></pre><p>Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick to&nbsp;<a href="https://www.imagemagick.org/Usage/">convert, compose, or edit</a>&nbsp;your images or perhaps you'll want to use one of the&nbsp;<a href="https://www.imagemagick.org/script/develop.php">Application Program Interfaces</a>&nbsp;for C, C++, Perl, and others.</p><p>The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you don't have administrator privileges and what if you don't want to install ImageMagick in the default&nbsp;<code>/../usr/local</code>&nbsp;folder? You will find the answer to these questions, and more, in&nbsp;<a href="https://www.imagemagick.org/script/advanced-unix-installation.php">Advanced Unix Source Installation</a>.</p><blockquote><p>jitendra@jitendra-UNLOCK-INSTALL[Downloads] git clone https://github.com/ImageMagick/ImageMagick.git []<br />Cloning into 'ImageMagick'...<br />remote: Counting objects: 124593, done.<br />remote: Compressing objects: 100% (77/77), done.<br />remote: Total 124593 (delta 94), reused 94 (delta 64), pack-reused 124452<br />Receiving objects: 100% (124593/124593), 76.94 MiB | 24.07 MiB/s, done.<br />Resolving deltas: 100% (106498/106498), done.<br />Checking connectivity... done.<br />jitendra@jitendra-UNLOCK-INSTALL[Downloads] cd ImageMagick []<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] make []<br />make: *** No targets specified and no makefile found. Stop.<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] ./configure []<br />checking build system type... x86_64-pc-linux-gnu<br />checking host system type... x86_64-pc-linux-gnu<br />checking target system type... x86_64-pc-linux-gnu<br />checking for a BSD-compatible install... /usr/bin/install -c<br />checking whether build environment is sane... yes<br />checking for a thread-safe mkdir -p... /bin/mkdir -p<br />checking for gawk... gawk<br />checking whether make sets $(MAKE)... yes<br />checking whether make supports nested variables... yes<br />checking whether UID '1000' is supported by ustar format... yes<br />checking whether GID '1000' is supported by ustar format... yes<br />checking how to create a ustar tar archive... gnutar<br />checking whether make supports nested variables... (cached) yes<br />configuring ImageMagick 7.0.8-3<br />checking whether build environment is sane... yes<br />checking for style of include used by make... GNU<br />checking for gcc... gcc<br />checking whether the C compiler works... yes<br />checking for C compiler default output file name... a.out<br />checking for suffix of executables... <br />checking whether we are cross compiling... no<br />checking for suffix of object files... o<br />checking whether we are using the GNU C compiler... yes<br />checking whether gcc accepts -g... yes<br />checking for gcc option to accept ISO C89... none needed<br />checking whether gcc understands -c and -o together... yes<br />checking dependency style of gcc... gcc3<br />checking how to run the C preprocessor... gcc -E<br />checking for grep that handles long lines and -e... /bin/grep<br />checking for egrep... /bin/grep -E<br />checking for ANSI C header files... yes<br />checking for sys/types.h... yes<br />checking for sys/stat.h... yes<br />checking for stdlib.h... yes<br />checking for string.h... yes<br />checking for memory.h... yes<br />checking for strings.h... yes<br />checking for inttypes.h... yes<br />checking for stdint.h... yes<br />checking for unistd.h... yes<br />checking minix/config.h usability... no<br />checking minix/config.h presence... no<br />checking for minix/config.h... no<br />checking whether it is safe to define __EXTENSIONS__... yes<br />checking for ar... ar<br />checking the archiver (ar) interface... ar<br />checking for gcc... (cached) gcc<br />checking whether we are using the GNU C compiler... (cached) yes<br />checking whether gcc accepts -g... (cached) yes<br />checking for gcc option to accept ISO C89... (cached) none needed<br />checking whether gcc understands -c and -o together... (cached) yes<br />checking dependency style of gcc... (cached) gcc3<br />checking for g++... g++<br />checking whether we are using the GNU C++ compiler... yes<br />checking whether g++ accepts -g... yes<br />checking dependency style of g++... gcc3<br />checking for gcc option to accept ISO C99... none needed<br />checking for gcc option to accept ISO Standard C... (cached) none needed<br />checking how to run the C preprocessor... gcc -E<br />checking for a sed that does not truncate output... /bin/sed<br />checking for fgrep... /bin/grep -F<br />checking how to print strings... printf<br />checking for ld used by gcc... /usr/bin/ld<br />checking if the linker (/usr/bin/ld) is GNU ld... yes<br />checking for gcc option to accept ISO C99... (cached) none needed<br />checking CFLAGS for maximum warnings... -Wall<br />checking whether make sets $(MAKE)... (cached) yes<br />checking whether ln -s works... yes<br />checking for a sed that does not truncate output... (cached) /bin/sed<br />checking for gawk... (cached) gawk<br />checking if malloc debugging is wanted... no<br />checking for __attribute__... yes<br />checking for C compiler vendor... gnu<br />checking for gcc architecture flag... <br />checking for x86 cpuid 0 output... d:756e6547:6c65746e:49656e69<br />checking for x86 cpuid 1 output... 306a9:3100800:7fbae3ff:bfebfbff<br />checking whether C compiler accepts -mtune=ivybridge... yes<br />checking for gcc architecture flag... -mtune=ivybridge<br />checking for pkg-config... /usr/bin/pkg-config<br />checking pkg-config is at least version 0.20... yes<br />checking size of size_t... 8<br />checking for C compiler vendor... (cached) gnu<br />./configure: line 9486: AX_COMPILER_FLAGS: command not found<br />checking CFLAGS for maximum warnings... (cached) -Wall<br />checking if LD -Wl,--version-script works... yes<br />checking for linker lazyload option... none<br />checking whether gcc is Clang... no<br />checking whether pthreads work with -pthread... yes<br />checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE<br />checking whether more special flags are required for pthreads... no<br />checking for PTHREAD_PRIO_INHERIT... yes<br />checking for gcc option to support OpenMP... -fopenmp<br />checking for pthread_join using gcc -pthread ... yes<br />checking whether gcc is Clang... (cached) no<br />checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE<br />checking whether more special flags are required for pthreads... (cached) no<br />checking for PTHREAD_PRIO_INHERIT... (cached) yes<br />checking whether we are using the Microsoft C compiler... no<br />checking CL/cl.h usability... no<br />checking CL/cl.h presence... no<br />checking for CL/cl.h... no<br />checking OpenCL/cl.h usability... no<br />checking OpenCL/cl.h presence... no<br />checking for OpenCL/cl.h... no<br />checking windows.h usability... no<br />checking windows.h presence... no<br />checking for windows.h... no<br />checking for OpenCL library... no<br />checking for special C compiler options needed for large files... no<br />checking for _FILE_OFFSET_BITS value needed for large files... no<br />checking for _LARGEFILE_SOURCE value needed for large files... no<br />checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B<br />checking the name lister (/usr/bin/nm -B) interface... BSD nm<br />checking the maximum length of command line arguments... 1572864<br />checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop<br />checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop<br />checking for /usr/bin/ld option to reload object files... -r<br />checking for objdump... objdump<br />checking how to recognize dependent libraries... pass_all<br />checking for dlltool... no<br />checking how to associate runtime and link libraries... printf %s\n<br />checking for archiver @FILE support... @<br />checking for strip... strip<br />checking for ranlib... ranlib<br />checking command to parse /usr/bin/nm -B output from gcc object... ok<br />checking for sysroot... no<br />checking for a working dd... /bin/dd<br />checking how to truncate binary pipes... /bin/dd bs=4096 count=1<br />checking for mt... mt<br />checking if mt is a manifest tool... no<br />checking for dlfcn.h... yes<br />checking for objdir... .libs<br />checking if gcc supports -fno-rtti -fno-exceptions... no<br />checking for gcc option to produce PIC... -fPIC -DPIC<br />checking if gcc PIC flag -fPIC -DPIC works... yes<br />checking if gcc static flag -static works... yes<br />checking if gcc supports -c -o file.o... yes<br />checking if gcc supports -c -o file.o... (cached) yes<br />checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking whether -lc should be explicitly linked in... no<br />checking dynamic linker characteristics... GNU/Linux ld.so<br />checking how to hardcode library paths into programs... immediate<br />checking for shl_load... no<br />checking for shl_load in -ldld... no<br />checking for dlopen... no<br />checking for dlopen in -ldl... yes<br />checking whether a program can dlopen itself... yes<br />checking whether a statically linked program can dlopen itself... no<br />checking whether stripping libraries is possible... yes<br />checking if libtool supports shared libraries... yes<br />checking whether to build shared libraries... yes<br />checking whether to build static libraries... yes<br />checking how to run the C++ preprocessor... g++ -E<br />checking for ld used by g++... /usr/bin/ld -m elf_x86_64<br />checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes<br />checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking for g++ option to produce PIC... -fPIC -DPIC<br />checking if g++ PIC flag -fPIC -DPIC works... yes<br />checking if g++ static flag -static works... yes<br />checking if g++ supports -c -o file.o... yes<br />checking if g++ supports -c -o file.o... (cached) yes<br />checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking dynamic linker characteristics... (cached) GNU/Linux ld.so<br />checking how to hardcode library paths into programs... immediate<br />checking whether to enable maintainer-specific portions of Makefiles... no<br />checking whether gcc needs -traditional... no<br />checking for ANSI C header files... (cached) yes<br />checking whether to enable assertions... yes<br />checking for dirent.h that defines DIR... yes<br />checking for library containing opendir... none required<br />checking arm/limits.h usability... no<br />checking arm/limits.h presence... no<br />checking for arm/limits.h... no<br />checking arpa/inet.h usability... yes<br />checking arpa/inet.h presence... yes<br />checking for arpa/inet.h... yes<br />checking complex.h usability... yes<br />checking complex.h presence... yes<br />checking for complex.h... yes<br />checking errno.h usability... yes<br />checking errno.h presence... yes<br />checking for errno.h... yes<br />checking fcntl.h usability... yes<br />checking fcntl.h presence... yes<br />checking for fcntl.h... yes<br />checking limits.h usability... yes<br />checking limits.h presence... yes<br />checking for limits.h... yes<br />checking linux/unistd.h usability... yes<br />checking linux/unistd.h presence... yes<br />checking for linux/unistd.h... yes<br />checking locale.h usability... yes<br />checking locale.h presence... yes<br />checking for locale.h... yes<br />checking machine/param.h usability... no<br />checking machine/param.h presence... no<br />checking for machine/param.h... no<br />checking mach-o/dyld.h usability... no<br />checking mach-o/dyld.h presence... no<br />checking for mach-o/dyld.h... no<br />checking netinet/in.h usability... yes<br />checking netinet/in.h presence... yes<br />checking for netinet/in.h... yes<br />checking OS.h usability... no<br />checking OS.h presence... no<br />checking for OS.h... no<br />checking process.h usability... no<br />checking process.h presence... no<br />checking for process.h... no<br />checking sun_prefetch.h usability... no<br />checking sun_prefetch.h presence... no<br />checking for sun_prefetch.h... no<br />checking stdarg.h usability... yes<br />checking stdarg.h presence... yes<br />checking for stdarg.h... yes<br />checking sys/ipc.h usability... yes<br />checking sys/ipc.h presence... yes<br />checking for sys/ipc.h... yes<br />checking sys/mman.h usability... yes<br />checking sys/mman.h presence... yes<br />checking for sys/mman.h... yes<br />checking sys/resource.h usability... yes<br />checking sys/resource.h presence... yes<br />checking for sys/resource.h... yes<br />checking sys/sendfile.h usability... yes<br />checking sys/sendfile.h presence... yes<br />checking for sys/sendfile.h... yes<br />checking sys/socket.h usability... yes<br />checking sys/socket.h presence... yes<br />checking for sys/socket.h... yes<br />checking sys/syslimits.h usability... no<br />checking sys/syslimits.h presence... no<br />checking for sys/syslimits.h... no<br />checking sys/time.h usability... yes<br />checking sys/time.h presence... yes<br />checking for sys/time.h... yes<br />checking sys/timeb.h usability... yes<br />checking sys/timeb.h presence... yes<br />checking for sys/timeb.h... yes<br />checking sys/times.h usability... yes<br />checking sys/times.h presence... yes<br />checking for sys/times.h... yes<br />checking sys/wait.h usability... yes<br />checking sys/wait.h presence... yes<br />checking for sys/wait.h... yes<br />checking utime.h usability... yes<br />checking utime.h presence... yes<br />checking for utime.h... yes<br />checking wchar.h usability... yes<br />checking wchar.h presence... yes<br />checking for wchar.h... yes<br />checking xlocale.h usability... yes<br />checking xlocale.h presence... yes<br />checking for xlocale.h... yes<br />checking for stdbool.h that conforms to C99... yes<br />checking for _Bool... yes<br />checking for working volatile... yes<br />checking for preprocessor stringizing operator... yes<br />checking whether stat file-mode macros are broken... no<br />checking whether time.h and sys/time.h may both be included... yes<br />checking whether struct tm is in sys/time.h or time.h... time.h<br />checking for struct tm.tm_zone... yes<br />checking whether #! works in shell scripts... yes<br />checking whether char is unsigned... no<br />checking for an ANSI C-conforming const... yes<br />checking for inline... inline<br />checking for C/C++ restrict keyword... __restrict<br />checking for working volatile... (cached) yes<br />checking whether byte ordering is bigendian... no<br />checking for int8_t... yes<br />checking for int16_t... yes<br />checking for int32_t... yes<br />checking for int64_t... yes<br />checking for unsigned long long int... yes<br />checking for long long int... yes<br />checking for intmax_t... yes<br />checking for intptr_t... yes<br />checking for long double... yes<br />checking for long double with more range or precision than double... yes<br />checking for long long int... (cached) yes<br />checking for mbstate_t... yes<br />checking for mode_t... yes<br />checking for off_t... yes<br />checking for pid_t... yes<br />checking for size_t... yes<br />checking for ssize_t... yes<br />checking for uid_t in sys/types.h... yes<br />checking for uint8_t... yes<br />checking for uint16_t... yes<br />checking for uint32_t... yes<br />checking for uint64_t... yes<br />checking for uintmax_t... yes<br />checking for uintptr_t... yes<br />checking for unsigned long long int... (cached) yes<br />checking for locale_t... yes<br />checking for float_t... yes<br />checking for double_t... yes<br />checking size of float_t... 4<br />checking size of double_t... 8<br />checking size of float... 4<br />checking size of double... 8<br />checking size of long double... 16<br />checking size of signed short... 2<br />checking size of unsigned short... 2<br />checking size of signed int... 4<br />checking size of unsigned int... 4<br />checking size of signed long... 8<br />checking size of unsigned long... 8<br />checking size of signed long long... 8<br />checking size of unsigned long long... 8<br />checking size of off_t... 8<br />checking size of size_t... (cached) 8<br />checking size of ssize_t... 8<br />checking size of unsigned int*... 8<br />checking for signed 8-bit type... signed char<br />checking for unsigned 8-bit type... unsigned char<br />checking for signed 16-bit type... signed short<br />checking for unsigned 16-bit type... unsigned short<br />checking for signed 32-bit type... signed int<br />checking for unsigned 32-bit type... unsigned int<br />checking for signed 64-bit type... signed long<br />checking for unsigned 64-bit type... unsigned long<br />checking for unsigned maximum type... unsigned long<br />checking for pointer difference type... unsigned long<br />checking whether our compiler supports __func__... yes<br />checking whether closedir returns void... no<br />checking for stdlib.h... (cached) yes<br />checking for unistd.h... (cached) yes<br />checking for sys/param.h... yes<br />checking for getpagesize... yes<br />checking for working mmap... yes<br />checking vfork.h usability... no<br />checking vfork.h presence... no<br />checking for vfork.h... no<br />checking for fork... yes<br />checking for vfork... yes<br />checking for working fork... yes<br />checking for working vfork... (cached) yes<br />checking for working memcmp... yes<br />checking sys/select.h usability... yes<br />checking sys/select.h presence... yes<br />checking for sys/select.h... yes<br />checking for sys/socket.h... (cached) yes<br />checking types of arguments for select... int,fd_set *,struct timeval *<br />checking return type of signal handlers... void<br />checking for working strtod... yes<br />checking whether strerror_r is declared... yes<br />checking for strerror_r... yes<br />checking whether strerror_r returns char *... yes<br />checking for vprintf... yes<br />checking for _doprnt... no<br />checking for sqrt in -lm... yes<br />checking for library containing gethostbyname... none required<br />checking for library containing socket... none required<br />checking for acosh... yes<br />checking for _aligned_malloc... no<br />checking for asinh... yes<br />checking for atanh... yes<br />checking for atoll... yes<br />checking for atexit... yes<br />checking for cabs... yes<br />checking for carg... yes<br />checking for cimag... yes<br />checking for creal... yes<br />checking for clock... yes<br />checking for clock_getres... yes<br />checking for clock_gettime... yes<br />checking for ctime_r... yes<br />checking for directio... no<br />checking for erf... yes<br />checking for _exit... yes<br />checking for execvp... yes<br />checking for fchmod... yes<br />checking for floor... yes<br />checking for fork... (cached) yes<br />checking for ftime... yes<br />checking for ftruncate... yes<br />checking for getc_unlocked... yes<br />checking for getcwd... yes<br />checking for getpid... yes<br />checking for getexecname... no<br />checking for getdtablesize... yes<br />checking for getpagesize... (cached) yes<br />checking for getrlimit... yes<br />checking for getrusage... yes<br />checking for gettimeofday... yes<br />checking for gmtime_r... yes<br />checking for isnan... yes<br />checking for j0... yes<br />checking for j1... yes<br />checking for lltostr... no<br />checking for localtime_r... yes<br />checking for lstat... yes<br />checking for memmove... yes<br />checking for memset... yes<br />checking for mkstemp... yes<br />checking for munmap... yes<br />checking for nanosleep... yes<br />checking for newlocale... yes<br />checking for _NSGetExecutablePath... no<br />checking for pclose... yes<br />checking for _pclose... no<br />checking for poll... yes<br />checking for popen... yes<br />checking for _popen... no<br />checking for posix_fadvise... yes<br />checking for posix_fallocate... yes<br />checking for posix_madvise... yes<br />checking for posix_memalign... yes<br />checking for posix_spawnp... yes<br />checking for pow... yes<br />checking for pread... yes<br />checking for pwrite... yes<br />checking for qsort_r... yes<br />checking for raise... yes<br />checking for rand_r... yes<br />checking for readlink... yes<br />checking for realpath... yes<br />checking for select... yes<br />checking for seekdir... yes<br />checking for sendfile... yes<br />checking for setlocale... yes<br />checking for socket... yes<br />checking for sqrt... yes<br />checking for setvbuf... yes<br />checking for stat... yes<br />checking for strchr... yes<br />checking for strrchr... yes<br />checking for strcspn... yes<br />checking for strdup... yes<br />checking for strpbrk... yes<br />checking for strspn... yes<br />checking for strstr... yes<br />checking for strtod... (cached) yes<br />checking for strtod_l... yes<br />checking for strtol... yes<br />checking for strtoul... yes<br />checking for symlink... yes<br />checking for sysconf... yes<br />checking for sigemptyset... yes<br />checking for sigaction... yes<br />checking for spawnvp... no<br />checking for strerror... yes<br />checking for strlcat... no<br />checking for strlcpy... no<br />checking for strcasecmp... yes<br />checking for strncasecmp... yes<br />checking for telldir... yes<br />checking for tempnam... yes<br />checking for times... yes<br />checking for ulltostr... no<br />checking for uselocale... yes<br />checking for usleep... yes<br />checking for utime... yes<br />checking for vfprintf... yes<br />checking for vfprintf_l... no<br />checking for vsprintf... yes<br />checking for vsnprintf... yes<br />checking for vsnprintf_l... no<br />checking for waitpid... yes<br />checking for _wfopen... no<br />checking for _wstat... no<br />checking for library containing clock_gettime... none required<br />checking whether clock_gettime supports CLOCK_REALTIME... yes<br />checking whether pread is declared... yes<br />checking whether pwrite is declared... yes<br />checking whether strlcpy is declared... no<br />checking whether vsnprintf is declared... yes<br />checking whether we are using the GNU C++ compiler... (cached) yes<br />checking whether g++ accepts -g... (cached) yes<br />checking dependency style of g++... (cached) gcc3<br />checking whether the compiler recognizes bool as a built-in type... yes<br />checking whether the compiler implements namespaces... yes<br />checking if g++ supports namespace std... yes<br />checking whether the compiler supports ISO C++ standard library... yes<br />checking for g++ option to support OpenMP... -fopenmp<br />checking whether C++ compiler is sufficient for Magick++... yes<br />checking for X11 configure files... <br />checking for GOMP_parallel_start in -lgomp... yes<br />-------------------------------------------------------------<br />checking for BZLIB... <br />checking bzlib.h usability... no<br />checking bzlib.h presence... no<br />checking for bzlib.h... no<br />checking for BZ2_bzDecompress in -lbz2... no<br />checking if BZLIB package is complete... no<br />checking for X... libraries , headers <br />checking for gethostbyname... yes<br />checking for connect... yes<br />checking for remove... yes<br />checking for shmat... yes<br />checking for IceConnectionNumber in -lICE... yes<br />-------------------------------------------------------------<br />checking for X11... <br />checking for shmctl... yes<br />checking for XShmAttach in -lXext... yes<br />checking for XShapeCombineMask in -lXext... yes<br />checking for XtSetEventDispatcher in -lXt... yes<br />-------------------------------------------------------------<br />checking for ZLIB... yes</p><p>-------------------------------------------------------------<br />checking for DPS... <br />checking DPS/dpsXclient.h usability... no<br />checking DPS/dpsXclient.h presence... no<br />checking for DPS/dpsXclient.h... no<br />checking for DPSInitialize in -ldps... no<br />checking for DPSInitialize in -ldps... no<br />checking for XDPSPixelsPerPoint in -ldpstk... no<br />checking if DPS package is complete... no<br />-------------------------------------------------------------<br />checking for fftw3... no</p><p>-------------------------------------------------------------<br />checking for FLIF... <br />checking flif.h usability... no<br />checking flif.h presence... no<br />checking for flif.h... no<br />checking for flif_create_decoder in -lflif... no<br />checking if FLIF package is complete... no<br />-------------------------------------------------------------<br />checking for FlashPIX... <br />checking fpxlib.h usability... no<br />checking fpxlib.h presence... no<br />checking for fpxlib.h... no<br />checking for FPX_OpenImageByFilename in -lfpx... no<br />checking if FlashPIX package is complete... no<br />-------------------------------------------------------------<br />checking for ddjvuapi... no</p><p>-------------------------------------------------------------<br />checking for FONTCONFIG... yes</p><p>-------------------------------------------------------------<br />checking for FREETYPE... yes</p><p>-------------------------------------------------------------<br />checking for RAQM... no</p><p>-------------------------------------------------------------<br />checking for GVC... no</p><p>-------------------------------------------------------------<br />checking for HEIF... no</p><p>-------------------------------------------------------------<br />checking for JBIG... <br />checking jbig.h usability... yes<br />checking jbig.h presence... yes<br />checking for jbig.h... yes<br />checking for jbg_dec_init in -ljbig... yes<br />checking if JBIG package is complete... yes<br />-------------------------------------------------------------<br />checking for JPEG... <br />checking jconfig.h usability... yes<br />checking jconfig.h presence... yes<br />checking for jconfig.h... yes<br />checking jerror.h usability... yes<br />checking jerror.h presence... yes<br />checking for jerror.h... yes<br />checking jmorecfg.h usability... yes<br />checking jmorecfg.h presence... yes<br />checking for jmorecfg.h... yes<br />checking jpeglib.h usability... yes<br />checking jpeglib.h presence... yes<br />checking for jpeglib.h... yes<br />checking for jpeg_read_header in -ljpeg... yes<br />checking for JPEG library is version 6b or later... yes<br />checking if JPEG package is complete... yes<br />-------------------------------------------------------------<br />checking for LCMS2... no</p><p>-------------------------------------------------------------<br />checking for LIBOPENJP2... no</p><p>-------------------------------------------------------------<br />checking for LQR... no</p><p>-------------------------------------------------------------<br />checking for LZMA... yes</p><p>-------------------------------------------------------------<br />checking for OPENEXR... no</p><p>-------------------------------------------------------------<br />checking for PANGO... yes</p><p>checking for PANGO... yes</p><p>-------------------------------------------------------------<br />checking for PNG... yes</p><p>-------------------------------------------------------------<br />checking for RAW_R... no</p><p>-------------------------------------------------------------<br />checking for TIFF... <br />checking tiff.h usability... yes<br />checking tiff.h presence... yes<br />checking for tiff.h... yes<br />checking tiffio.h usability... yes<br />checking tiffio.h presence... yes<br />checking for tiffio.h... yes<br />checking for TIFFOpen in -ltiff... yes<br />checking for TIFFClientOpen in -ltiff... yes<br />checking for TIFFIsByteSwapped in -ltiff... yes<br />checking for TIFFReadRGBATile in -ltiff... yes<br />checking for TIFFReadRGBAStrip in -ltiff... yes<br />checking if TIFF package is complete... yes<br />checking tiffconf.h usability... yes<br />checking tiffconf.h presence... yes<br />checking for tiffconf.h... yes<br />checking for TIFFIsCODECConfigured... yes<br />checking for TIFFMergeFieldInfo... yes<br />checking for TIFFIsBigEndian... yes<br />checking for TIFFReadEXIFDirectory... yes<br />checking for TIFFSetErrorHandlerExt... yes<br />checking for TIFFSetTagExtender... yes<br />checking for TIFFSetWarningHandlerExt... yes<br />checking for TIFFSwabArrayOfTriples... yes<br />-------------------------------------------------------------<br />checking for WEBP... no<br />checking for WEBPMUX... no</p><p>checking for WMF support ... <br />checking for libwmf/ipa.h... no<br />checking if WMF package is complete ... no<br />-------------------------------------------------------------<br />checking for XML... yes</p><p>-------------------------------------------------------------<br />checking for ImageMagick delegate programs... <br />checking for bpgdec... bpgdec<br />checking for bpgenc... bpgenc<br />checking for blender... blender<br />checking for xdg-open... /usr/bin/xdg-open<br />checking for ufraw-batch... ufraw-batch<br />checking for soffice... /usr/bin/soffice<br />checking for dvips... /usr/bin/dvips<br />checking for magick... magick<br />checking for magick... magick<br />checking for xterm... /usr/bin/xterm<br />checking for dot... /usr/bin/dot<br />checking for hp2xx... hp2xx<br />checking for html2ps... html2ps<br />checking for ilbmtoppm... /usr/bin/ilbmtoppm<br />checking for ppmtoilbm... /usr/bin/ppmtoilbm<br />checking for JxrDecApp... JxrDecApp<br />checking for JxrEncApp... JxrEncApp<br />checking for lepton... lepton<br />checking for lp... /usr/bin/lp<br />checking for lpr... /usr/bin/lpr<br />checking for gimp... /usr/bin/gimp<br />checking for magick... magick<br />checking for avconv... avconv<br />checking for ffmpeg... (cached) avconv<br />checking for avconv... avconv<br />checking for ffmpeg... (cached) avconv<br />checking for mrsidgeodecode... mrsidgeodecode<br />checking for mv... /bin/mv<br />checking for pcl6... pcl6<br />checking for gsx... no<br />checking for gsc... no<br />checking for gs... /usr/bin/gs<br />checking for rm... /bin/rm<br />checking for rsvg-convert... rsvg-convert<br />checking for inkscape... inkscape<br />checking for uniconvertor... uniconvertor<br />checking for dwebp... dwebp<br />checking for cwebp... cwebp<br />checking for curl... /usr/bin/curl<br />checking for gxps... gxps<br />checking for Apple fonts directory... not found!<br />checking for Dejavu fonts directory... not found!<br />checking for Ghostscript fonts directory... /usr/share/fonts/type1/gsfonts/<br />checking for URW-base35 fonts directory... not found!<br />checking for Windows fonts directory... not found!<br />checking for gnutar... no<br />checking for gtar... no<br />checking for tar... tar<br />checking for perl... perl<br />checking for rpmbuild... no<br />checking for rpm... no<br />checking for 7za... 7za<br />checking for zip... zip<br />-------------------------------------------------------------<br />checking for Ghostscript... <br />checking for Ghostscript version... 9.18<br />checking for gs color device... pnmraw<br />checking for gs alpha device... pngalpha<br />checking for gs CMYK device... pamcmyk32<br />checking for gs mono device... pbmraw<br />checking for gs PDF writing device... pdfwrite<br />checking for gs PS writing device... ps2write<br />checking for gs EPS writing device... eps2write<br />-------------------------------------------------------------<br />Update ImageMagick configuration<br />checking that generated files are newer than configure... done<br />checking that generated files are newer than configure... done<br />configure: creating ./config.status<br />config.status: creating common.shi<br />config.status: creating config/configure.xml<br />config.status: creating config/delegates.xml<br />config.status: creating config/ImageMagick.rdf<br />config.status: creating config/MagickCore.dox<br />config.status: creating config/MagickWand.dox<br />config.status: creating config/Magick++.dox<br />config.status: creating config/type-apple.xml<br />config.status: creating config/type-dejavu.xml<br />config.status: creating config/type-ghostscript.xml<br />config.status: creating config/type-urw-base35.xml<br />config.status: creating config/type-windows.xml<br />config.status: creating config/type.xml<br />config.status: creating ImageMagick.spec<br />config.status: creating Magick++/bin/Magick++-config<br />config.status: creating MagickCore/ImageMagick.pc<br />config.status: creating Magick++/lib/Magick++.pc<br />config.status: creating MagickCore/MagickCore-config<br />config.status: creating MagickCore/MagickCore.pc<br />config.status: creating MagickCore/version.h<br />config.status: creating Makefile<br />config.status: creating magick.sh<br />config.status: creating PerlMagick/check.sh<br />config.status: creating PerlMagick/default/Magick.pm<br />config.status: creating PerlMagick/Makefile.PL<br />config.status: creating PerlMagick/default/Makefile.PL<br />config.status: creating PerlMagick/quantum/Makefile.PL<br />config.status: creating PerlMagick/quantum/quantum.pm<br />config.status: creating PerlMagick/quantum/quantum.xs<br />config.status: creating PerlMagick/quantum/typemap<br />config.status: creating utilities/animate.1<br />config.status: creating utilities/compare.1<br />config.status: creating utilities/composite.1<br />config.status: creating utilities/conjure.1<br />config.status: creating utilities/convert.1<br />config.status: creating utilities/display.1<br />config.status: creating utilities/identify.1<br />config.status: creating utilities/ImageMagick.1<br />config.status: creating utilities/import.1<br />config.status: creating utilities/magick.1<br />config.status: creating utilities/magick-script.1<br />config.status: creating utilities/mogrify.1<br />config.status: creating utilities/montage.1<br />config.status: creating utilities/stream.1<br />config.status: creating MagickWand/MagickWand-config<br />config.status: creating MagickWand/MagickWand.pc<br />config.status: creating config/config.h<br />config.status: executing MagickCore/magick-baseconfig.h commands<br />config.status: creating MagickCore/magick-baseconfig.h - prefix MAGICKCORE for config/config.h defines<br />config.status: executing depfiles commands<br />config.status: executing libtool commands<br />config.status: executing default commands<br />config.status: executing magick.sh.in commands<br />config.status: executing MagickCore-config.in commands<br />config.status: executing MagickWand-config.in commands<br />config.status: executing Magick++-config.in commands<br />config.status: executing PerlMagick/check.sh.in commands<br />configure:<br />==============================================================================<br />ImageMagick is configured as follows. Please verify that this configuration<br />matches your expectations.</p><p>Host system type: x86_64-pc-linux-gnu<br /> Build system type: x86_64-pc-linux-gnu</p><p>Option Value<br /> ------------------------------------------------------------------------------<br /> Shared libraries --enable-shared=yes yes<br /> Static libraries --enable-static=yes yes<br /> Build utilities --with-utilities=yes yes</p><p>&nbsp;</p><p>/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_l.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_r.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tabs.css /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tree.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />mkdir -p -- /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/annotated.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/classes.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/dirs.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.css /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawtest_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/files.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2blank.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2doc.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderclosed.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderopen.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2lastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2link.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mlastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2node.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2plastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2pnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2vertline.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/functions.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/functions_vars.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x61.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x62.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x63.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x64.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x65.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x67.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x69.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6d.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6e.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6f.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x70.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x71.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x72.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x73.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x74.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x75.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x77.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x78.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_defs.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_enum.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_eval.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x63.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x64.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x67.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x69.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6d.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6e.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x70.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x72.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x73.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_type.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_vars.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/index.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/main.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__CompositeOptions.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawingWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawVTable.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__MagickWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelIterator.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_b.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_l.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_r.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tabs.css /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tree.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wandtest_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br /> /bin/mkdir -p '/usr/local/share/doc/ImageMagick-7'<br /> /usr/bin/install -c -m 644 LICENSE ChangeLog NEWS.txt '/usr/local/share/doc/ImageMagick-7'<br /> /bin/mkdir -p '/usr/local/include/ImageMagick-7/Magick++'<br /> /usr/bin/install -c -m 644 Magick++/lib/Magick++/Blob.h Magick++/lib/Magick++/CoderInfo.h Magick++/lib/Magick++/Color.h Magick++/lib/Magick++/Drawable.h Magick++/lib/Magick++/Exception.h Magick++/lib/Magick++/Functions.h Magick++/lib/Magick++/Geometry.h Magick++/lib/Magick++/Image.h Magick++/lib/Magick++/Include.h Magick++/lib/Magick++/Montage.h Magick++/lib/Magick++/Pixels.h Magick++/lib/Magick++/ResourceLimits.h Magick++/lib/Magick++/SecurityPolicy.h Magick++/lib/Magick++/Statistic.h Magick++/lib/Magick++/STL.h Magick++/lib/Magick++/TypeMetric.h '/usr/local/include/ImageMagick-7/Magick++'<br /> /bin/mkdir -p '/usr/local/include/ImageMagick-7'<br /> /usr/bin/install -c -m 644 Magick++/lib/Magick++.h '/usr/local/include/ImageMagick-7'<br /> /bin/mkdir -p '/usr/local/share/man/man1'<br /> /usr/bin/install -c -m 644 MagickCore/MagickCore-config.1 MagickWand/MagickWand-config.1 Magick++/bin/Magick++-config.1 utilities/ImageMagick.1 utilities/animate.1 utilities/compare.1 utilities/composite.1 utilities/conjure.1 utilities/convert.1 utilities/display.1 utilities/identify.1 utilities/import.1 utilities/magick.1 utilities/magick-script.1 utilities/mogrify.1 utilities/montage.1 utilities/stream.1 '/usr/local/share/man/man1'<br /> /bin/mkdir -p '/usr/local/lib/pkgconfig'<br /> /usr/bin/install -c -m 644 MagickCore/ImageMagick.pc MagickCore/MagickCore.pc MagickCore/ImageMagick-7.Q16HDRI.pc MagickCore/MagickCore-7.Q16HDRI.pc MagickWand/MagickWand.pc MagickWand/MagickWand-7.Q16HDRI.pc Magick++/lib/Magick++.pc Magick++/lib/Magick++-7.Q16HDRI.pc '/usr/local/lib/pkgconfig'<br />make[2]: Leaving directory '/home/jitendra/Downloads/ImageMagick'<br />make[1]: Leaving directory '/home/jitendra/Downloads/ImageMagick'<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] []</p></blockquote>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/4716/osddlinux-computational-resources-for-drug-discovery</guid>
	<pubDate>Sun, 22 Sep 2013 13:15:58 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/4716/osddlinux-computational-resources-for-drug-discovery</link>
	<title><![CDATA[OSDDlinux : Computational resources for drug discovery]]></title>
	<description><![CDATA[<p>Open Source Drug Discovery (OSDD), a mission to provide affordable drugs for poors, is in the process of creating an in silico plateform for designing, discovering and simulating drugs. OSDD have initiate number of projects to support in silico drug discovery, including OSDDlinux and computational resources for drug discovery (CRDD).</p><p>The main purpose of OSDDLinux is to provide an in silico platform for computer-aided drug design. This is a collection and compilation of large number of software and web services which will be directly or indirectly useful for researches working in the field of drug design/discovery. Overall objective of OSDDlinux is to promote open source in drug discovery, crowdsourcing and network based collobrations. Following are major features of OSDDlinux ...&nbsp;</p><p>Find more @&nbsp;http://osddlinux.osdd.net/index.php</p>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/9204/keep-your-important-ssh-session-running-when-you-disconnect-from-server</guid>
	<pubDate>Sat, 15 Mar 2014 21:39:17 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/9204/keep-your-important-ssh-session-running-when-you-disconnect-from-server</link>
	<title><![CDATA[Keep Your Important SSH Session Running when You Disconnect from Server !!!]]></title>
	<description><![CDATA[<p>As a Bioinformatician/ Computational biologist we swim in the ocean of genomic/proteomics data, and play with them with an ease. In our day to day simulation, analysis, comparative study we do need to run exhaustive programs, which might take more than a week. In such cases we do need to disconnect from sever in a way that our program/session should not get terminated. To do so there are lots of software, tools such as tmux ( <a href="http://tmux.sourceforge.net/">http://tmux.sourceforge.net/</a>, nohup (<a href="http://ss64.com/bash/nohup.html">http://ss64.com/bash/nohup.html</a>) , byobu (<a href="https://help.ubuntu.com/10.04/serverguide/byobu.html">https://help.ubuntu.com/10.04/serverguide/byobu.html</a>) and other commands (disown -a &amp;&amp; exit), but following are the ones I use the most.</p><p>Screen is like a window manager for your console. It will allow you to keep multiple terminal sessions running and easily switch between them. It also protects you from disconnection, because the screen session doesn&rsquo;t end when you get disconnected.<br /><br />You&rsquo;ll need to make sure that screen is installed on the server you are connecting to. If that server is Ubuntu or Debian, just use this command:<br /><br />sudo apt-get install screen<br /><br />Now you can start a new screen session by just typing screen at the command line. You&rsquo;ll be shown some information about screen. Hit enter, and you&rsquo;ll be at a normal prompt.<br /><br /><strong>To disconnect (but leave the session running)</strong><br /><br />Hit Ctrl + A and then Ctrl + D in immediate succession. You will see the message [detached]<br /><br /><strong>To reconnect to an already running session</strong><br /><br />screen -r<br /><br /><strong>To reconnect to an existing session, or create a new one if none exists</strong><br /><br />screen -D -r<br /><br /><strong>To create a new window inside of a running screen session</strong><br /><br />Hit Ctrl + A and then C in immediate succession. You will see a new prompt.<br /><br /><strong>To switch from one screen window to another</strong><br /><br />Hit Ctrl + A and then Ctrl + A in immediate succession.<br /><br /><strong>To list open screen windows</strong><br /><br />Hit Ctrl + A and then W in immediate succession</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/11582/monitor-running-jobs-on-linux-server</guid>
	<pubDate>Fri, 06 Jun 2014 16:18:43 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/11582/monitor-running-jobs-on-linux-server</link>
	<title><![CDATA[Monitor running jobs on Linux server]]></title>
	<description><![CDATA[<p>You as a bioinformatican run lots of program on your servers. Sometime the shared server is also used by your colleague. If server is busy you sometime need to check the running programs and want to monitor the running programs as well. The "top" command will come in handy when you need to find out if things are still running, how long they&rsquo;ve been running, or how much memory is being used.<br /><br />&lsquo;top&rsquo; is very simple to run: type<br /><br />%% top<br /><br />You&rsquo;ll get a screen that looks like this, and is updated regularly:<br /><br /><img src="http://bioinformaticsonline.com/mod/photo/top.png" width="659" height="582" alt="image" style="border: 0px;"><br />Simple, right? Heh.<br /><br />First! Note that you can use &lsquo;q&rsquo; or &lsquo;CTRL-C&rsquo; to exit from &lsquo;top&rsquo;.<br /><br />Now let&rsquo;s read and understand at each line independently.<br /><br />The first line:<br /><br />top - 23:00:48 up 39 days,&nbsp; 2 user,&nbsp; load average: 0.00, 0.00, 0.00<br /><br />The first line tells you the current time, how long the machine has been up, how many users are logged in, and the short/medium/long-term compute load on the machine. If you run something for a long time, you&rsquo;ll see these numbers go up. Right now, the machine is basically just sitting there, so these are all close to 0.<br /><br />The second line:</p><p>Tasks:&nbsp; 239 total,&nbsp;&nbsp; 1 running,&nbsp; 238 sleeping,&nbsp;&nbsp; 0 stopped,&nbsp;&nbsp; 0 zombie<br /><br />This line tells you how many processes are running. If you are using laptops machines it&rsquo;s not so interesting because you really are the only one using this machine.<br /><br />Cpu(s):&nbsp; 0.0%us,&nbsp; 0.0%sy,&nbsp; 0.0%ni,100.0%id,&nbsp; 0.0%wa,&nbsp; 0.0%hi,&nbsp; 0.0%si,&nbsp; 0.0%st<br /><br />This line contains the CPU load. The first two numbers are how busy the system is doing computation (&ldquo;us&rdquo; stands for &ldquo;user&rdquo;) and how busy the system is doing system-y things like accessing disks or network (&ldquo;sy&rdquo; stands for &ldquo;system&rdquo;). We&rsquo;ll talk more about this later.<br /><br />Mem:&nbsp;&nbsp; 49457320k total,&nbsp;&nbsp;&nbsp; 3492174k used,&nbsp; 14535596k free,&nbsp;&nbsp;&nbsp; 1435148k buffers<br /><br />This should be easy to understand &ndash; how much memory you&rsquo;re using! <br /><br />Swap:&nbsp;&nbsp; 539356k total,&nbsp;&nbsp; 28332k used,&nbsp;&nbsp; 836562k free,&nbsp;&nbsp;&nbsp; 29862014k cached<br /><br />Swap is just on-disk memory that can be used to &ldquo;swap&rdquo; out programs from main memory. Again, we&rsquo;ll talk about this later.:<br /><br />PID USER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PR&nbsp; NI&nbsp; VIRT&nbsp; RES&nbsp; SHR S %CPU %MEM&nbsp;&nbsp;&nbsp; TIME+&nbsp; COMMAND<br />&nbsp; 1 root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 39 &nbsp; 19&nbsp; 0&nbsp; 0&nbsp; 0 S&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp; 246:57.22 kipmi0<br />&nbsp; 2 root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RT&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0 S&nbsp; 0.0&nbsp; 0.0&nbsp;&nbsp; 0:00.00 migration/0<br /><br />And... finally! What&rsquo;s actually running! The two most important numbers are the %CPU and %MEM towards the right, as well as the COMMAND. This tells you how compute- and memory-intensive your program is. Right now, nothing&rsquo;s running so the numbers aren&rsquo;t very interesting, but just wait until we run something...</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/26395/biolinux-ubuntu-desktop-folder-and-files-disappeared</guid>
	<pubDate>Tue, 16 Feb 2016 08:40:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/26395/biolinux-ubuntu-desktop-folder-and-files-disappeared</link>
	<title><![CDATA[BioLinux Ubuntu Desktop folder and files disappeared !!]]></title>
	<description><![CDATA[<p>Restarted my BioLinux ubuntu computer after an update, and when I logged back in, I noticed that all of my files went missing. Instead of Desktop folder, icons of all of my home folder are showed on desktop.</p><p>Then I thaught it migh be a problem of graphical display and I opened the terminal out of curiosity, and I found out that there is no ~/Desktop folder at all. What happened? What do I need to do?</p><p>Then I google the problem and found this is a very common problem after updates. To fix this problem, follow these steps:</p><p>You need to edit the ~/.config/user-dirs.dirs file, and make sure the contents of the file are like the following:<br /><br />XDG_DESKTOP_DIR="$HOME/Desktop"<br />XDG_DOWNLOAD_DIR="$HOME/Downloads"<br />XDG_TEMPLATES_DIR="$HOME/"<br />XDG_PUBLICSHARE_DIR="$HOME/Share"<br />XDG_DOCUMENTS_DIR="$HOME/Documents"<br />XDG_MUSIC_DIR="$HOME/Music"<br />XDG_PICTURES_DIR="$HOME/Pictures"<br />XDG_VIDEOS_DIR="$HOME/Videos"<br /><br />Then restart nautilus:<br /><br />killall nautilus<br /><br />or<br /><br />nautilus -q<br /><br />Then, open nautilus via Unity menu (press the Super key) or using the run command (Alt+F2)</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43120/ventoy-an-open-source-tool-to-create-bootable-usb-drive</guid>
	<pubDate>Tue, 29 Jun 2021 10:16:19 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43120/ventoy-an-open-source-tool-to-create-bootable-usb-drive</link>
	<title><![CDATA[Ventoy: an open source tool to create bootable USB drive]]></title>
	<description><![CDATA[<p>Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. With ventoy, you don't need to format the disk over and over, you just need to copy the image files to the USB drive and boot it. You can copy many image files at a time and ventoy will give you a boot menu to select them. x86 Legacy BIOS, IA32 UEFI, x86_64 UEFI, ARM64 UEFI and MIPS64EL UEFI are supported in the same way. Both MBR and GPT partition style are supported in the same way. Most type of OS supported(Windows/WinPE/Linux/Unix/Vmware/Xen...) 700+ ISO files are tested.&nbsp;</p><p>Address of the bookmark: <a href="https://github.com/ventoy/Ventoy" rel="nofollow">https://github.com/ventoy/Ventoy</a></p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

</channel>
</rss>