== SVN repository Management == First you need to get the content of the SVN repository: {{{ # cd /to/desired/path # svn checkout svn://svn.mondorescue.org/mondorescue/branches/stable }}} or {{{ # svn checkout svn://svn.mondorescue.org/mondorescue/trunk }}} == !MondoRescue dependencies == In order to build and run !MondoRescue suite you need: to build: * newt-devel >= 0.50, gcc-c++, gcc to run: * afio/star, buffer, bzip2 >= 0.9, mkisofs/genisofs, ncurses, binutils, gawk, dosfstools, parted, perl, mtools, which, grep >= 2.5, syslinux >= 1.52, elilo, binutils, newt >= 0.50, cdrecord/growisofs/wodim === star === * [http://freecode.com/projects/star Home page] == Subversion build process == This is currently working for a lot of distributions (including Fedora, Mandriva, openSuSE, RHEL, SLES, debian, ubuntu, gentoo) In order to build mondo and mindi packages, you need to use the [http://trac.project-builder.org project-builder] tool and install the project-builder and perl-ProjectBuidler - or similar for Debian like - packages. From the last 3.x SVN tree extracted you need to launch: {{{ $ cat >> ~/.pbrc << EOF pbconfurl mondorescue = svn+ssh://user@mondo.hpintelco.org/prj/svn/pb/projects/mondorescue/pbconf # Adapt to fit your needs pbprojdir mondorescue = $ENV{'HOME'}/mondo/svn pburl mondorescue = svn+ssh://user@mondo.hpintelco.org/prj/svn/mondorescue EOF $ pb -p mondorescue -r branches/3.0 sbx2pkg }}} which will create for you both the compressed tar files (step sbx2build) and then from those the packages (step build2pkg) If you have or want to create virtual machines for other distributions that you want to generate packages for, you have to build and set them up using: {{{ pb -p mondorescue -m distro-version-arch -i distro-dvd.iso newvm pb -p mondorescue -m distro-version-arch setupvm }}} Then you can use pb to generate packages for that distro by doing: {{{ pb -p mondorescue -m distro-version-arch sbx2vm }}} which will create for you both the compressed tar files (step cms2build) and then from those the packages in the VM (step build2vm), and get them back and send them to a server with ssh. An evolution is planned for RPM packages to create hierarchies of package to ease deployment : {{{ mondorescue | ---------------------------------------------------------------- | | | | mondorescue-tape mondorescue-cd mondorescue-nfs ..... | | | ------------------- -------------- --------------- | | | | | | | | mt buffer | | cdrecord | nfs-utils mondo-/----------------/ | ---------------------------------------------------- | | | | | mindi afio mkisofs newt syslinux | mindi-busybox }}} == File rebuild process == From the tar.gz files available under ftp://ftp.mondorescue.org/src, you may build and install MondoRescue by doing for each package: {{{ # tar xvfz mondo*tar.gz # cd mondo* # ./configure # make VERSION=2.2.9.3 # make install # mkdir -p /usr/local/var/cache/mondo # cd .. # tar xvfz mindi-busybox*tar.gz # cd mindi-busybox* # make # make install # cd .. # tar xvfz mindi-[0-9]*tar.gz # cd mindi-[0-9]* # ./install.sh # cd .. }}} == RPM rebuild process == From the sources rpm packages the nearest from your distro (that you can get from ftp://ftp.mondorescue.org), you may build packages for your target distribution by doing: {{{ # rpm -ivh mindi*.src.rpm mondo*.src.rpm # rpmbuild -ba /usr/src/*/SPECS/mondo.spec # rpmbuild -ba /usr/src/*/SPECS/mindi.spec # rpmbuild -ba /usr/src/*/SPECS/mindi-busybox.spec # rpm -ivh /usr/src/*/RPMS/*/mondo*.*.rpm /usr/src/*/RPMS/*/mindi*.*.rpm }}} On RHEL6 the yum command required to install dependencies needed for pb build is: {{{ wget http://mirror.centos.org/centos/6/os/x86_64/Packages/slang-devel-2.2.1-1.el6.x86_64.rpm wget http://mirror.centos.org/centos/6/os/x86_64/Packages/newt-devel-0.52.11-2.el6.x86_64.rpm rpm -Uvh slang-devel-2.2.1-1.el6.x86_64.rpm newt-devel-0.52.11-2.el6.x86_64.rpm yum install -y subversion autoconf automake libtool docbook2x dvips ImageMagick gcc-c++ docbook-utils-pdf }}} For version 3.2.x onward, you'll need additional perl packages, not part of the distribution but part of EPEL. Install first the epel-release package from http://mir01.syntis.net/epel/6/i386/repoview/epel-release.html: {{{ rpm -Uvh http://mir01.syntis.net/epel/6/i386/epel-release-6-8.noarch.rpm }}} == !Debian/Ubuntu rebuild process == Obtain the sources needed from your distro: {{{ % cd /usr/local/src % sudo apt-get source mondo % sudo apt-get source mindi % sudo apt-get source mindi-busybox }}} or download a tar source archive from ftp://ftp.mondorescue.org. Then you may build packages by doing: {{{ % tar xvfz mondo*tar.gz % cd mondo* % sudo apt-get build-dep mondo % debuild -us -uc % cd .. % sudo dpkg -i mondo_*.deb % tar xvfz mindi-busybox*tar.gz % cd mindi-busybox* % sudo apt-get build-dep mindi-busybox % debuild -us -uc % cd .. % sudo dpkg -i mindi-busybox_*.deb % tar xvfz mindi-[0-9]*tar.gz % cd mindi-[0-9]* % sudo apt-get build-dep mindi % debuild -us -uc % cd .. % sudo dpkg -i mindi-busybox_*.deb }}} == Applying patches == You may want to apply patches to a given version of mondo and/or mindi in order to fix an annoying issue. Look at SVN through [http://trac.mondorescue.org/browser that] interface. Say that you want to apply [http://trac.mondorescue.org/changeset/1488 revision 1488] which was issued after 2.2.3 of mondo to your 2.2.3 version to fix OCFS support. First save the revision under /tmp as a patch file format (Use the Unified Diff link at the bottom of the changeset page) Then use the previous File Rebuild Process paragraph, but before calling make to build the software, apply your previously saved patch by doing {{{ cd /tmp wget ftp://ftp.mondorescue.org/src/mondo-2.2.3.tar.bz2 wget "http://trac.mondorescue.org/changeset/1488?format=diff" tar xvfj mondo-2.2.3.tar.bz2 cd mondo-2.2.3 patch -s -p3 < ../1488\?format=diff }}} After that you may have to solve conflicts (due to the fact that as in this case the patch doesn't apply cleanly as other patches in the middle are missing) Then again you can use the configure ; make ; make install trilogy. == Debian related info == === Location of mondo and mindi official Debian packages === * ftp://ftp.debian.org/debian/pool/main/m/mondo * ftp://ftp.debian.org/debian/pool/main/m/mindi * ftp://ftp.debian.org/debian/pool/main/m/mindi-busybox QA for Debian * http://packages.qa.debian.org/m/mondo.html * http://packages.qa.debian.org/m/mindi.html * http://packages.qa.debian.org/m/mindi-busybox.html Status for testing * http://release.debian.org/migration/testing.pl?package=mondo === Bug tracking === * http://bugs.debian.org/cgi-bin/pkgreport.cgi?package=mondo * http://bugs.debian.org/cgi-bin/pkgreport.cgi?package=mindi * http://bugs.debian.org/cgi-bin/pkgreport.cgi?package=mindi-busybox === Location of mondo and mindi pre-releases Debian packages === * http://people.debian.org/~andree/packages/ This directory contains pre-releases of Mondo Rescue Debian packages. They may not be production quality. You have been warned. However, you are more than welcome to try them and provide feedback. Please email andree_at_debian_dot_org or preferably the Mondo Rescue mailing list at mondo-devel_at_lists_dot_sourceforge_dot_net both in case of success or lack thereof. If you have no idea what to do with these packages, Andree suggests you just use the ones that come with Debian proper instead. === Location of mondo and mindi Backports for Debian Sarge 3.1 by Lubos === * http://lrk.com.au/mindo_backports/index.html (not available anymore it seems) == Ubuntu related info == * https://help.ubuntu.com/community/MondoMindi == Location of mondo and mindi un-official SuSE packages by Mike == * http://www.mikenjane.net/~mike/ * http://build.opensuse.org/project/show?project=Archiving%3ABackup%3AMondoRescue == Info for Slackware packaging == * http://www.linuxpackages.net/howto.php?page=slack-desc&title=Slackware+Desc+File * http://www.linuxpackages.net/howto.php?page=package&title=Package+Howto == Info for Mandriva official packaging == * http://mdv.vmlinuz.ca/Development/Packaging/BuildSystem/QuickRef * http://kenobi.mandriva.com/bs/build.php Latest packages for cooker are available at : * http://distrib-coffee.ipsl.jussieu.fr/pub/linux/MandrivaLinux/devel/cooker/SRPMS/contrib/release/ Build process status : * http://kenobi.mandriva.com/ (generic entry point) * http://kenobi.mandriva.com/bs/output.php (status) == Info for Mageia official packaging == * http://www.mageia.org/wiki/doku.php?id=packaging * http://pkgsubmit.mageia.org/ Latest packages for cauldron are available at : * http://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib/cauldron/SRPMS/core/release/ == Info for Trixbox distro == * http://www.trixbox.org/forums/trixbox-forums/help/mondo-rescue-backup-howto == Info for Fedora official packaging == * https://bugzilla.redhat.com/show_bug.cgi?id=187317 (mindi) * https://bugzilla.redhat.com/show_bug.cgi?id=187318 (mondo) * https://bugzilla.redhat.com/show_bug.cgi?id=476234 (mindi-busybox) * https://bugzilla.redhat.com/show_bug.cgi?id=462982 (buffer) [DONE] * https://bugzilla.redhat.com/show_bug.cgi?id=759818 (buffer) * https://bugzilla.redhat.com/show_bug.cgi?id=449037 (afio) * http://fedoraproject.org/wiki/PackageMaintainers == Info for Gentoo official packaging == * http://bugs.gentoo.org/show_bug.cgi?id=106497 * http://bugs.gentoo.org/show_bug.cgi?id=79262 * http://bugs.gentoo.org/show_bug.cgi?id=84106 * http://bugs.gentoo.org/show_bug.cgi?id=176738 Ebuild HOWTO: * http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=1 == Info for Arch Linux == * http://www.invoca.ch/pub/packages/buffer/buffer-1.19-8.src.rpm (buffer) * http://members.brabant.chello.nl/~k.holtman/afio-2.5.tgz (afio) * http://aur.archlinux.org/packages.php?ID=38366 (mondo) * http://aur.archlinux.org/packages.php?ID=38365 (mindi) * http://aur.archlinux.org/packages.php?ID=38364 (mindi-busybox) == Info for AUR Linux == * https://aur.archlinux.org/packages/buffer * https://aur.archlinux.org/packages/afio * https://aur.archlinux.org/packages/mondo * https://aur.archlinux.org/packages/mindi * https://aur.archlinux.org/packages/mindi-busybox/ == Info for Sys distribution == * ftp://ftp5.gwdg.de/pub/linux/install/sys/ (Work done by Werner Landgraf) == Info for FreeBSD packaging == * http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html == Location of mondo and mindi Files == ||'''Distributions'''||'''File base install'''|| ||/usr/sbin/mindi||/usr/local/sbin/mindi|| ||/usr/sbin/analyze-my-lvm||/usr/local/sbin/analyze-my-lvm|| ||/usr/sbin/mondoarchive||/usr/local/sbin/mondoarchive|| ||/usr/sbin/mondorestore||/usr/local/sbin/mondorestore|| ||/etc/m?nd?||/usr/local/etc/m?nd?|| ||/usr/share/doc/m?nd?*||/usr/local/share/doc/m?nd?*|| ||/usr/share/man/man8/m?nd?*.8||/usr/local/share/man/man8/m?nd?*.8|| ||/usr/lib/mindi||/usr/local/lib/mindi|| ||/usr/share/mondo||/usr/local/share/mondo|| == Installing from YUM == The ftp site is also set up as a yum repository. You can install and update your mindi/mondo packages using yum. First create a file in your yum repo directory (most probably /etc/yum.repos.d) like the following (you may download it from our ftp server in each fedora/version directory). Note that this sample is for fedora. You will need to edit a bit for other distros. {{{ [root@tesla yum.repos.d]# cat mondo.repo [mondorpms] name=Fedora Core $releasever - mondo baseurl=ftp://ftp.mondorescue.org/fedora/$releasever/x86_64 enabled=1 gpgcheck=1 gpgkey=ftp://ftp.mondorescue.org/fedora/$releasever/x86_64/mondorescue.pubkey }}} Such a file is now automatically produced by project-builder and available on the ftp server at the same place as the packages. E.g. for Fedora 20 x86_64 download it from ftp://ftp.mondorescue.org/fedora/20/x86_64/mondorescue.repo If you want to contribute to the testing of !MondoRescue, also download the corresponding repo file under the test directory and the same subtree. In the above case it's ftp://ftp.mondorescue.org/test/fedora/20/x86_64/mondorescue.repo Now just use the command: {{{ # yum install mondo }}} You may also want to add {{{ multilib_policy=best }}} to your yum.conf file. (tip from Simon Lyall) yum will discover that mindi is a dependency for mondo and add it to your list. project-builder also generates debian configuration files for apt so that you can use our repositories to apt-get install your packages more easily. However look for [http://trac.mondorescue.org/wiki/FAQ#Q11DoesmondoworkwithDebianUbuntudistributions CAVEAT] Here is a sequence of a successful installation of the stable version of mondo in a CentOS 7 container {{{ ]$ docker run -ti --rm centos:7 [root@fe4902a26572 /]# yum install -y wget Loaded plugins: fastestmirror, ovl Determining fastest mirrors * base: mirror.plusserver.com * extras: mirror.plusserver.com * updates: mirror.plusserver.com base | 3.6 kB 00:00:00 extras | 2.9 kB 00:00:00 updates | 2.9 kB 00:00:00 (1/4): base/7/x86_64/group_gz | 165 kB 00:00:00 (2/4): extras/7/x86_64/primary_db | 152 kB 00:00:01 (3/4): updates/7/x86_64/primary_db | 1.1 MB 00:00:04 (4/4): base/7/x86_64/primary_db | 6.0 MB 00:00:26 Resolving Dependencies --> Running transaction check ---> Package wget.x86_64 0:1.14-18.el7_6.1 will be installed --> Finished Dependency Resolution Dependencies Resolved ======================================================================================================================================================================================================================================================= Package Arch Version Repository Size ======================================================================================================================================================================================================================================================= Installing: wget x86_64 1.14-18.el7_6.1 base 547 k Transaction Summary ======================================================================================================================================================================================================================================================= Install 1 Package Total download size: 547 k Installed size: 2.0 M Downloading packages: warning: /var/cache/yum/x86_64/7/base/packages/wget-1.14-18.el7_6.1.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY===================================================================== ] 101 kB/s | 495 kB 00:00:00 ETA Public key for wget-1.14-18.el7_6.1.x86_64.rpm is not installed wget-1.14-18.el7_6.1.x86_64.rpm | 547 kB 00:00:01 Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 Importing GPG key 0xF4A80EB5: Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) " Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5 Package : centos-release-7-6.1810.2.el7.centos.x86_64 (@CentOS) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : wget-1.14-18.el7_6.1.x86_64 1/1 install-info: No such file or directory for /usr/share/info/wget.info.gz Verifying : wget-1.14-18.el7_6.1.x86_64 1/1 Installed: wget.x86_64 0:1.14-18.el7_6.1 Complete! [root@fe4902a26572 /]# wget ftp://ftp.mondorescue.org/centos/7/x86_64/mondorescue.repo --2019-09-26 21:37:14-- ftp://ftp.mondorescue.org/centos/7/x86_64/mondorescue.repo => 'mondorescue.repo' Resolving ftp.mondorescue.org (ftp.mondorescue.org)... 185.170.48.239 Connecting to ftp.mondorescue.org (ftp.mondorescue.org)|185.170.48.239|:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD (1) /centos/7/x86_64 ... done. ==> SIZE mondorescue.repo ... 288 ==> PASV ... done. ==> RETR mondorescue.repo ... done. Length: 288 (unauthoritative) 100%[=============================================================================================================================================================================================================>] 288 --.-K/s in 0s 2019-09-26 21:37:15 (62.4 MB/s) - 'mondorescue.repo' saved [288] [root@fe4902a26572 /]# mv mondorescue.repo /etc/yum.repos.d/ [root@fe4902a26572 /]# yum install -y mondo Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile * base: mirror.plusserver.com * extras: mirror.plusserver.com * updates: mirror.plusserver.com mondorescue | 2.9 kB 00:00:00 mondorescue/primary_db | 70 kB 00:00:00 Resolving Dependencies --> Running transaction check ---> Package mondo.x86_64 0:3.2.2-1.centos7 will be installed --> Processing Dependency: syslinux >= 1.52 for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: newt >= 0.50 for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: mindi >= 2.0.7 for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: bzip2 >= 0.9 for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: parted for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: net-tools for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: libnewt.so.0.52(NEWT_0.52)(64bit) for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: cdrecord for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: buffer for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: afio for package: mondo-3.2.2-1.centos7.x86_64 --> Processing Dependency: libnewt.so.0.52()(64bit) for package: mondo-3.2.2-1.centos7.x86_64 --> Running transaction check ---> Package afio.x86_64 0:2.5-1.centos7 will be installed ---> Package buffer.x86_64 0:1.19-8.centos7 will be installed ---> Package bzip2.x86_64 0:1.0.6-13.el7 will be installed ---> Package mindi.x86_64 0:3.0.2-1.centos7 will be installed --> Processing Dependency: mindi-busybox >= 1.21.1 for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: which for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl-MondoRescue for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl-Module-ScanDeps for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl-IO-Interface for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(strict) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(ProjectBuilder::Base) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(MondoRescue::Version) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(MondoRescue::File) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(MondoRescue::Disk) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(MondoRescue::Base) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(Module::ScanDeps) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(Getopt::Long) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(File::Basename) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(English) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(Data::Dumper) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: perl(Carp) for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: mtools for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: mkisofs for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: dosfstools for package: mindi-3.0.2-1.centos7.x86_64 --> Processing Dependency: /usr/bin/perl for package: mindi-3.0.2-1.centos7.x86_64 ---> Package net-tools.x86_64 0:2.0-0.25.20131004git.el7 will be installed ---> Package newt.x86_64 0:0.52.15-4.el7 will be installed --> Processing Dependency: libslang.so.2(SLANG2)(64bit) for package: newt-0.52.15-4.el7.x86_64 --> Processing Dependency: libslang.so.2()(64bit) for package: newt-0.52.15-4.el7.x86_64 ---> Package parted.x86_64 0:3.1-31.el7 will be installed ---> Package syslinux.x86_64 0:4.05-15.el7 will be installed ---> Package wodim.x86_64 0:1.1.11-25.el7 will be installed --> Processing Dependency: libusal = 1.1.11-25.el7 for package: wodim-1.1.11-25.el7.x86_64 --> Processing Dependency: libusal.so.0()(64bit) for package: wodim-1.1.11-25.el7.x86_64 --> Processing Dependency: librols.so.0()(64bit) for package: wodim-1.1.11-25.el7.x86_64 --> Running transaction check ---> Package dosfstools.x86_64 0:3.0.20-10.el7 will be installed ---> Package genisoimage.x86_64 0:1.1.11-25.el7 will be installed ---> Package libusal.x86_64 0:1.1.11-25.el7 will be installed ---> Package mindi-busybox.x86_64 0:1.21.1-1.centos7 will be installed ---> Package mtools.x86_64 0:4.0.18-5.el7 will be installed ---> Package perl.x86_64 4:5.16.3-294.el7_6 will be installed --> Processing Dependency: perl-libs = 4:5.16.3-294.el7_6 for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl-macros for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl-libs for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-294.el7_6.x86_64 --> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-294.el7_6.x86_64 ---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed ---> Package perl-Data-Dumper.x86_64 0:2.145-3.el7 will be installed ---> Package perl-Getopt-Long.noarch 0:2.40-3.el7 will be installed --> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-3.el7.noarch --> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-3.el7.noarch ---> Package perl-IO-Interface.x86_64 0:1.05-2.el7 will be installed ---> Package perl-Module-ScanDeps.noarch 0:1.10-3.el7 will be installed --> Processing Dependency: perl(version) for package: perl-Module-ScanDeps-1.10-3.el7.noarch --> Processing Dependency: perl(Module::Build::ModuleInfo) for package: perl-Module-ScanDeps-1.10-3.el7.noarch --> Processing Dependency: perl(ExtUtils::MakeMaker) for package: perl-Module-ScanDeps-1.10-3.el7.noarch --> Processing Dependency: perl(Encode) for package: perl-Module-ScanDeps-1.10-3.el7.noarch ---> Package perl-MondoRescue.noarch 0:3.2.2-1.centos7 will be installed --> Processing Dependency: perl(Net::IPv4Addr) for package: perl-MondoRescue-3.2.2-1.centos7.noarch --> Processing Dependency: perl(Digest::MD5) for package: perl-MondoRescue-3.2.2-1.centos7.noarch ---> Package perl-ProjectBuilder.noarch 0:0.15.2-1.centos7 will be installed --> Processing Dependency: perl-YAML for package: perl-ProjectBuilder-0.15.2-1.centos7.noarch ---> Package slang.x86_64 0:2.2.4-11.el7 will be installed ---> Package which.x86_64 0:2.20-7.el7 will be installed --> Running transaction check ---> Package perl-Digest-MD5.x86_64 0:2.52-3.el7 will be installed --> Processing Dependency: perl(Digest::base) >= 1.00 for package: perl-Digest-MD5-2.52-3.el7.x86_64 ---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed ---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed ---> Package perl-ExtUtils-MakeMaker.noarch 0:6.68-3.el7 will be installed --> Processing Dependency: perl(Test::Harness) for package: perl-ExtUtils-MakeMaker-6.68-3.el7.noarch --> Processing Dependency: perl(Pod::Man) for package: perl-ExtUtils-MakeMaker-6.68-3.el7.noarch --> Processing Dependency: perl(ExtUtils::Packlist) for package: perl-ExtUtils-MakeMaker-6.68-3.el7.noarch --> Processing Dependency: perl(ExtUtils::Manifest) for package: perl-ExtUtils-MakeMaker-6.68-3.el7.noarch --> Processing Dependency: perl(ExtUtils::Installed) for package: perl-ExtUtils-MakeMaker-6.68-3.el7.noarch --> Processing Dependency: perl(ExtUtils::Install) for package: perl-ExtUtils-MakeMaker-6.68-3.el7.noarch ---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed ---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed ---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed ---> Package perl-Module-Build.noarch 2:0.40.05-2.el7 will be installed --> Processing Dependency: perl(Perl::OSType) >= 1 for package: 2:perl-Module-Build-0.40.05-2.el7.noarch --> Processing Dependency: perl(Module::Metadata) >= 1.000002 for package: 2:perl-Module-Build-0.40.05-2.el7.noarch --> Processing Dependency: perl(ExtUtils::ParseXS) >= 2.21 for package: 2:perl-Module-Build-0.40.05-2.el7.noarch --> Processing Dependency: perl(ExtUtils::CBuilder) >= 0.27 for package: 2:perl-Module-Build-0.40.05-2.el7.noarch --> Processing Dependency: perl(CPAN::Meta::YAML) >= 0.003 for package: 2:perl-Module-Build-0.40.05-2.el7.noarch --> Processing Dependency: perl(CPAN::Meta) >= 2.110420 for package: 2:perl-Module-Build-0.40.05-2.el7.noarch ---> Package perl-Net-IPv4Addr.noarch 0:0.10-6.el7 will be installed ---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed ---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed --> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch ---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed --> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch ---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed ---> Package perl-Socket.x86_64 0:2.010-4.el7 will be installed ---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed ---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed ---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed ---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed ---> Package perl-YAML.noarch 0:0.84-5.el7 will be installed ---> Package perl-constant.noarch 0:1.27-2.el7 will be installed ---> Package perl-libs.x86_64 4:5.16.3-294.el7_6 will be installed ---> Package perl-macros.x86_64 4:5.16.3-294.el7_6 will be installed ---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed ---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed ---> Package perl-version.x86_64 3:0.99.07-3.el7 will be installed --> Running transaction check ---> Package perl-CPAN-Meta.noarch 0:2.120921-5.el7 will be installed --> Processing Dependency: perl(Parse::CPAN::Meta) >= 1.4403 for package: perl-CPAN-Meta-2.120921-5.el7.noarch --> Processing Dependency: perl(Parse::CPAN::Meta) >= 1.4400 for package: perl-CPAN-Meta-2.120921-5.el7.noarch --> Processing Dependency: perl(CPAN::Meta::Requirements) >= 2.121 for package: perl-CPAN-Meta-2.120921-5.el7.noarch --> Processing Dependency: perl(CPAN::Meta::Requirements) for package: perl-CPAN-Meta-2.120921-5.el7.noarch ---> Package perl-CPAN-Meta-YAML.noarch 0:0.008-14.el7 will be installed ---> Package perl-Digest.noarch 0:1.17-245.el7 will be installed ---> Package perl-ExtUtils-CBuilder.noarch 1:0.28.2.6-294.el7_6 will be installed --> Processing Dependency: perl-devel for package: 1:perl-ExtUtils-CBuilder-0.28.2.6-294.el7_6.noarch --> Processing Dependency: perl(IPC::Cmd) for package: 1:perl-ExtUtils-CBuilder-0.28.2.6-294.el7_6.noarch ---> Package perl-ExtUtils-Install.noarch 0:1.58-294.el7_6 will be installed ---> Package perl-ExtUtils-Manifest.noarch 0:1.61-244.el7 will be installed ---> Package perl-ExtUtils-ParseXS.noarch 1:3.18-3.el7 will be installed ---> Package perl-Module-Metadata.noarch 0:1.000018-2.el7 will be installed ---> Package perl-Perl-OSType.noarch 0:1.003-3.el7 will be installed ---> Package perl-Pod-Escapes.noarch 1:1.04-294.el7_6 will be installed ---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed --> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch --> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch --> Processing Dependency: groff-base for package: perl-Pod-Perldoc-3.20-4.el7.noarch ---> Package perl-Test-Harness.noarch 0:3.28-3.el7 will be installed ---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed --> Running transaction check ---> Package groff-base.x86_64 0:1.22.2-8.el7 will be installed ---> Package perl-CPAN-Meta-Requirements.noarch 0:2.122-7.el7 will be installed ---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed ---> Package perl-IPC-Cmd.noarch 1:0.80-4.el7 will be installed --> Processing Dependency: perl(Params::Check) >= 0.20 for package: 1:perl-IPC-Cmd-0.80-4.el7.noarch --> Processing Dependency: perl(Module::Load::Conditional) for package: 1:perl-IPC-Cmd-0.80-4.el7.noarch --> Processing Dependency: perl(Locale::Maketext::Simple) for package: 1:perl-IPC-Cmd-0.80-4.el7.noarch ---> Package perl-Parse-CPAN-Meta.noarch 1:1.4404-5.el7 will be installed --> Processing Dependency: perl(JSON::PP) >= 2.27200 for package: 1:perl-Parse-CPAN-Meta-1.4404-5.el7.noarch ---> Package perl-devel.x86_64 4:5.16.3-294.el7_6 will be installed --> Processing Dependency: systemtap-sdt-devel for package: 4:perl-devel-5.16.3-294.el7_6.x86_64 --> Processing Dependency: libdb-devel for package: 4:perl-devel-5.16.3-294.el7_6.x86_64 --> Processing Dependency: glibc-devel for package: 4:perl-devel-5.16.3-294.el7_6.x86_64 --> Processing Dependency: gdbm-devel for package: 4:perl-devel-5.16.3-294.el7_6.x86_64 ---> Package perl-parent.noarch 1:0.225-244.el7 will be installed --> Running transaction check ---> Package gdbm-devel.x86_64 0:1.10-8.el7 will be installed ---> Package glibc-devel.x86_64 0:2.17-292.el7 will be installed --> Processing Dependency: glibc-headers = 2.17-292.el7 for package: glibc-devel-2.17-292.el7.x86_64 --> Processing Dependency: glibc = 2.17-292.el7 for package: glibc-devel-2.17-292.el7.x86_64 --> Processing Dependency: glibc-headers for package: glibc-devel-2.17-292.el7.x86_64 ---> Package libdb-devel.x86_64 0:5.3.21-25.el7 will be installed --> Processing Dependency: libdb(x86-64) = 5.3.21-25.el7 for package: libdb-devel-5.3.21-25.el7.x86_64 ---> Package perl-JSON-PP.noarch 0:2.27202-2.el7 will be installed ---> Package perl-Locale-Maketext-Simple.noarch 1:0.21-294.el7_6 will be installed --> Processing Dependency: perl(Locale::Maketext) for package: 1:perl-Locale-Maketext-Simple-0.21-294.el7_6.noarch ---> Package perl-Module-Load-Conditional.noarch 0:0.54-3.el7 will be installed --> Processing Dependency: perl(Module::Load) >= 0.11 for package: perl-Module-Load-Conditional-0.54-3.el7.noarch --> Processing Dependency: perl(Module::CoreList) >= 2.22 for package: perl-Module-Load-Conditional-0.54-3.el7.noarch ---> Package perl-Params-Check.noarch 1:0.38-2.el7 will be installed ---> Package systemtap-sdt-devel.x86_64 0:4.0-9.el7 will be installed --> Processing Dependency: pyparsing for package: systemtap-sdt-devel-4.0-9.el7.x86_64 --> Running transaction check ---> Package glibc.x86_64 0:2.17-260.el7 will be updated --> Processing Dependency: glibc = 2.17-260.el7 for package: glibc-common-2.17-260.el7.x86_64 ---> Package glibc.x86_64 0:2.17-292.el7 will be an update ---> Package glibc-headers.x86_64 0:2.17-292.el7 will be installed --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-292.el7.x86_64 --> Processing Dependency: kernel-headers for package: glibc-headers-2.17-292.el7.x86_64 ---> Package libdb.x86_64 0:5.3.21-24.el7 will be updated --> Processing Dependency: libdb(x86-64) = 5.3.21-24.el7 for package: libdb-utils-5.3.21-24.el7.x86_64 ---> Package libdb.x86_64 0:5.3.21-25.el7 will be an update ---> Package perl-Locale-Maketext.noarch 0:1.23-3.el7 will be installed ---> Package perl-Module-CoreList.noarch 1:2.76.02-294.el7_6 will be installed ---> Package perl-Module-Load.noarch 1:0.24-3.el7 will be installed ---> Package pyparsing.noarch 0:1.5.6-9.el7 will be installed --> Running transaction check ---> Package glibc-common.x86_64 0:2.17-260.el7 will be updated ---> Package glibc-common.x86_64 0:2.17-292.el7 will be an update ---> Package kernel-headers.x86_64 0:3.10.0-1062.1.1.el7 will be installed ---> Package libdb-utils.x86_64 0:5.3.21-24.el7 will be updated ---> Package libdb-utils.x86_64 0:5.3.21-25.el7 will be an update --> Finished Dependency Resolution Dependencies Resolved ======================================================================================================================================================================================================================================================= Package Arch Version Repository Size ======================================================================================================================================================================================================================================================= Installing: mondo x86_64 3.2.2-1.centos7 mondorescue 903 k Installing for dependencies: afio x86_64 2.5-1.centos7 mondorescue 75 k buffer x86_64 1.19-8.centos7 mondorescue 23 k bzip2 x86_64 1.0.6-13.el7 base 52 k dosfstools x86_64 3.0.20-10.el7 base 101 k gdbm-devel x86_64 1.10-8.el7 base 47 k genisoimage x86_64 1.1.11-25.el7 base 299 k glibc-devel x86_64 2.17-292.el7 base 1.1 M glibc-headers x86_64 2.17-292.el7 base 687 k groff-base x86_64 1.22.2-8.el7 base 942 k kernel-headers x86_64 3.10.0-1062.1.1.el7 updates 8.7 M libdb-devel x86_64 5.3.21-25.el7 base 39 k libusal x86_64 1.1.11-25.el7 base 136 k mindi x86_64 3.0.2-1.centos7 mondorescue 329 k mindi-busybox x86_64 1.21.1-1.centos7 mondorescue 277 k mtools x86_64 4.0.18-5.el7 base 203 k net-tools x86_64 2.0-0.25.20131004git.el7 base 306 k newt x86_64 0.52.15-4.el7 base 105 k parted x86_64 3.1-31.el7 base 609 k perl x86_64 4:5.16.3-294.el7_6 base 8.0 M perl-CPAN-Meta noarch 2.120921-5.el7 base 113 k perl-CPAN-Meta-Requirements noarch 2.122-7.el7 base 24 k perl-CPAN-Meta-YAML noarch 0.008-14.el7 base 24 k perl-Carp noarch 1.26-244.el7 base 19 k perl-Data-Dumper x86_64 2.145-3.el7 base 47 k perl-Digest noarch 1.17-245.el7 base 23 k perl-Digest-MD5 x86_64 2.52-3.el7 base 30 k perl-Encode x86_64 2.51-7.el7 base 1.5 M perl-Exporter noarch 5.68-3.el7 base 28 k perl-ExtUtils-CBuilder noarch 1:0.28.2.6-294.el7_6 base 68 k perl-ExtUtils-Install noarch 1.58-294.el7_6 base 75 k perl-ExtUtils-MakeMaker noarch 6.68-3.el7 base 275 k perl-ExtUtils-Manifest noarch 1.61-244.el7 base 31 k perl-ExtUtils-ParseXS noarch 1:3.18-3.el7 base 77 k perl-File-Path noarch 2.09-2.el7 base 26 k perl-File-Temp noarch 0.23.01-3.el7 base 56 k perl-Filter x86_64 1.49-3.el7 base 76 k perl-Getopt-Long noarch 2.40-3.el7 base 56 k perl-HTTP-Tiny noarch 0.033-3.el7 base 38 k perl-IO-Interface x86_64 1.05-2.el7 mondorescue 26 k perl-IPC-Cmd noarch 1:0.80-4.el7 base 34 k perl-JSON-PP noarch 2.27202-2.el7 base 55 k perl-Locale-Maketext noarch 1.23-3.el7 base 93 k perl-Locale-Maketext-Simple noarch 1:0.21-294.el7_6 base 50 k perl-Module-Build noarch 2:0.40.05-2.el7 base 281 k perl-Module-CoreList noarch 1:2.76.02-294.el7_6 base 86 k perl-Module-Load noarch 1:0.24-3.el7 base 11 k perl-Module-Load-Conditional noarch 0.54-3.el7 base 18 k perl-Module-Metadata noarch 1.000018-2.el7 base 26 k perl-Module-ScanDeps noarch 1.10-3.el7 base 45 k perl-MondoRescue noarch 3.2.2-1.centos7 mondorescue 82 k perl-Net-IPv4Addr noarch 0.10-6.el7 mondorescue 16 k perl-Params-Check noarch 1:0.38-2.el7 base 18 k perl-Parse-CPAN-Meta noarch 1:1.4404-5.el7 base 14 k perl-PathTools x86_64 3.40-5.el7 base 82 k perl-Perl-OSType noarch 1.003-3.el7 base 20 k perl-Pod-Escapes noarch 1:1.04-294.el7_6 base 51 k perl-Pod-Perldoc noarch 3.20-4.el7 base 87 k perl-Pod-Simple noarch 1:3.28-4.el7 base 216 k perl-Pod-Usage noarch 1.63-3.el7 base 27 k perl-ProjectBuilder noarch 0.15.2-1.centos7 mondorescue 152 k perl-Scalar-List-Utils x86_64 1.27-248.el7 base 36 k perl-Socket x86_64 2.010-4.el7 base 49 k perl-Storable x86_64 2.45-3.el7 base 77 k perl-Test-Harness noarch 3.28-3.el7 base 302 k perl-Text-ParseWords noarch 3.29-4.el7 base 14 k perl-Time-HiRes x86_64 4:1.9725-3.el7 base 45 k perl-Time-Local noarch 1.2300-2.el7 base 24 k perl-YAML noarch 0.84-5.el7 base 84 k perl-constant noarch 1.27-2.el7 base 19 k perl-devel x86_64 4:5.16.3-294.el7_6 base 453 k perl-libs x86_64 4:5.16.3-294.el7_6 base 688 k perl-macros x86_64 4:5.16.3-294.el7_6 base 44 k perl-parent noarch 1:0.225-244.el7 base 12 k perl-podlators noarch 2.5.1-3.el7 base 112 k perl-threads x86_64 1.87-4.el7 base 49 k perl-threads-shared x86_64 1.43-6.el7 base 39 k perl-version x86_64 3:0.99.07-3.el7 base 84 k pyparsing noarch 1.5.6-9.el7 base 94 k slang x86_64 2.2.4-11.el7 base 512 k syslinux x86_64 4.05-15.el7 base 990 k systemtap-sdt-devel x86_64 4.0-9.el7 base 76 k which x86_64 2.20-7.el7 base 41 k wodim x86_64 1.1.11-25.el7 base 320 k Updating for dependencies: glibc x86_64 2.17-292.el7 base 3.6 M glibc-common x86_64 2.17-292.el7 base 11 M libdb x86_64 5.3.21-25.el7 base 720 k libdb-utils x86_64 5.3.21-25.el7 base 132 k Transaction Summary ======================================================================================================================================================================================================================================================= Install 1 Package (+83 Dependent packages) Upgrade ( 4 Dependent packages) Total download size: 47 M Downloading packages: Delta RPMs disabled because /usr/bin/applydeltarpm not installed. (1/88): dosfstools-3.0.20-10.el7.x86_64.rpm | 101 kB 00:00:00 (2/88): bzip2-1.0.6-13.el7.x86_64.rpm | 52 kB 00:00:01 (3/88): genisoimage-1.1.11-25.el7.x86_64.rpm | 299 kB 00:00:00 warning: /var/cache/yum/x86_64/7/mondorescue/packages/buffer-1.19-8.centos7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 37db9883: NOKEY ] 270 kB/s | 465 kB 00:02:55 ETA Public key for buffer-1.19-8.centos7.x86_64.rpm is not installed (4/88): buffer-1.19-8.centos7.x86_64.rpm | 23 kB 00:00:01 (5/88): gdbm-devel-1.10-8.el7.x86_64.rpm | 47 kB 00:00:01 (6/88): afio-2.5-1.centos7.x86_64.rpm | 75 kB 00:00:01 (7/88): groff-base-1.22.2-8.el7.x86_64.rpm | 942 kB 00:00:03 (8/88): glibc-headers-2.17-292.el7.x86_64.rpm | 687 kB 00:00:06 (9/88): glibc-devel-2.17-292.el7.x86_64.rpm | 1.1 MB 00:00:08 (10/88): libdb-devel-5.3.21-25.el7.x86_64.rpm | 39 kB 00:00:00 (11/88): libdb-utils-5.3.21-25.el7.x86_64.rpm | 132 kB 00:00:00 (12/88): libusal-1.1.11-25.el7.x86_64.rpm | 136 kB 00:00:01 (13/88): mindi-3.0.2-1.centos7.x86_64.rpm | 329 kB 00:00:02 (14/88): libdb-5.3.21-25.el7.x86_64.rpm | 720 kB 00:00:09 (15/88): mindi-busybox-1.21.1-1.centos7.x86_64.rpm | 277 kB 00:00:03 (16/88): mtools-4.0.18-5.el7.x86_64.rpm | 203 kB 00:00:02 (17/88): net-tools-2.0-0.25.20131004git.el7.x86_64.rpm | 306 kB 00:00:03 (18/88): mondo-3.2.2-1.centos7.x86_64.rpm | 903 kB 00:00:08 (19/88): newt-0.52.15-4.el7.x86_64.rpm | 105 kB 00:00:00 (20/88): parted-3.1-31.el7.x86_64.rpm | 609 kB 00:00:05 (21/88): perl-CPAN-Meta-2.120921-5.el7.noarch.rpm | 113 kB 00:00:00 (22/88): perl-CPAN-Meta-Requirements-2.122-7.el7.noarch.rpm | 24 kB 00:00:00 (23/88): perl-CPAN-Meta-YAML-0.008-14.el7.noarch.rpm | 24 kB 00:00:00 (24/88): perl-Carp-1.26-244.el7.noarch.rpm | 19 kB 00:00:00 (25/88): kernel-headers-3.10.0-1062.1.1.el7.x86_64.rpm | 8.7 MB 00:02:19 (26/88): glibc-2.17-292.el7.x86_64.rpm | 3.6 MB 00:02:24 (27/88): glibc-common-2.17-292.el7.x86_64.rpm | 11 MB 00:02:23 (28/88): perl-5.16.3-294.el7_6.x86_64.rpm | 8.0 MB 00:01:59 (29/88): perl-Data-Dumper-2.145-3.el7.x86_64.rpm | 47 kB 00:01:52 (30/88): perl-Digest-1.17-245.el7.noarch.rpm | 23 kB 00:00:00 (31/88): perl-Digest-MD5-2.52-3.el7.x86_64.rpm | 30 kB 00:00:00 (32/88): perl-Exporter-5.68-3.el7.noarch.rpm | 28 kB 00:00:00 (33/88): perl-ExtUtils-Manifest-1.61-244.el7.noarch.rpm | 31 kB 00:00:00 (34/88): perl-ExtUtils-Install-1.58-294.el7_6.noarch.rpm | 75 kB 00:00:00 (35/88): perl-ExtUtils-CBuilder-0.28.2.6-294.el7_6.noarch.rpm | 68 kB 00:00:01 (36/88): perl-ExtUtils-MakeMaker-6.68-3.el7.noarch.rpm | 275 kB 00:00:01 (37/88): perl-File-Path-2.09-2.el7.noarch.rpm | 26 kB 00:00:00 (38/88): perl-ExtUtils-ParseXS-3.18-3.el7.noarch.rpm | 77 kB 00:00:00 (39/88): perl-Filter-1.49-3.el7.x86_64.rpm | 76 kB 00:00:00 (40/88): perl-HTTP-Tiny-0.033-3.el7.noarch.rpm | 38 kB 00:00:00 (41/88): perl-File-Temp-0.23.01-3.el7.noarch.rpm | 56 kB 00:00:00 (42/88): perl-IPC-Cmd-0.80-4.el7.noarch.rpm | 34 kB 00:00:00 (43/88): perl-Getopt-Long-2.40-3.el7.noarch.rpm | 56 kB 00:00:00 (44/88): perl-Locale-Maketext-1.23-3.el7.noarch.rpm | 93 kB 00:00:00 (45/88): perl-JSON-PP-2.27202-2.el7.noarch.rpm | 55 kB 00:00:00 (46/88): perl-Locale-Maketext-Simple-0.21-294.el7_6.noarch.rpm | 50 kB 00:00:00 (47/88): perl-Module-CoreList-2.76.02-294.el7_6.noarch.rpm | 86 kB 00:00:00 (48/88): perl-Module-Build-0.40.05-2.el7.noarch.rpm | 281 kB 00:00:00 (49/88): perl-Module-Load-0.24-3.el7.noarch.rpm | 11 kB 00:00:00 (50/88): perl-Module-Metadata-1.000018-2.el7.noarch.rpm | 26 kB 00:00:00 (51/88): perl-Module-Load-Conditional-0.54-3.el7.noarch.rpm | 18 kB 00:00:00 (52/88): perl-IO-Interface-1.05-2.el7.x86_64.rpm | 26 kB 00:00:01 (53/88): perl-Params-Check-0.38-2.el7.noarch.rpm | 18 kB 00:00:00 (54/88): perl-Parse-CPAN-Meta-1.4404-5.el7.noarch.rpm | 14 kB 00:00:00 (55/88): perl-PathTools-3.40-5.el7.x86_64.rpm | 82 kB 00:00:00 (56/88): perl-Module-ScanDeps-1.10-3.el7.noarch.rpm | 45 kB 00:00:00 (57/88): perl-Perl-OSType-1.003-3.el7.noarch.rpm | 20 kB 00:00:00 (58/88): perl-Net-IPv4Addr-0.10-6.el7.noarch.rpm | 16 kB 00:00:00 (59/88): perl-Pod-Perldoc-3.20-4.el7.noarch.rpm | 87 kB 00:00:00 (60/88): perl-Pod-Usage-1.63-3.el7.noarch.rpm | 27 kB 00:00:00 (61/88): perl-Pod-Escapes-1.04-294.el7_6.noarch.rpm | 51 kB 00:00:00 (62/88): perl-Scalar-List-Utils-1.27-248.el7.x86_64.rpm | 36 kB 00:00:00 (63/88): perl-Pod-Simple-3.28-4.el7.noarch.rpm | 216 kB 00:00:01 (64/88): perl-MondoRescue-3.2.2-1.centos7.noarch.rpm | 82 kB 00:00:01 (65/88): perl-Socket-2.010-4.el7.x86_64.rpm | 49 kB 00:00:00 (66/88): perl-Storable-2.45-3.el7.x86_64.rpm | 77 kB 00:00:00 (67/88): perl-ProjectBuilder-0.15.2-1.centos7.noarch.rpm | 152 kB 00:00:01 (68/88): perl-Text-ParseWords-3.29-4.el7.noarch.rpm | 14 kB 00:00:00 (69/88): perl-Time-HiRes-1.9725-3.el7.x86_64.rpm | 45 kB 00:00:00 (70/88): perl-constant-1.27-2.el7.noarch.rpm | 19 kB 00:00:00 (71/88): perl-Encode-2.51-7.el7.x86_64.rpm | 1.5 MB 00:00:15 (72/88): perl-Test-Harness-3.28-3.el7.noarch.rpm | 302 kB 00:00:10 (73/88): perl-YAML-0.84-5.el7.noarch.rpm | 84 kB 00:00:09 (74/88): perl-devel-5.16.3-294.el7_6.x86_64.rpm | 453 kB 00:00:09 (75/88): perl-Time-Local-1.2300-2.el7.noarch.rpm | 24 kB 00:00:09 (76/88): perl-parent-0.225-244.el7.noarch.rpm | 12 kB 00:00:00 (77/88): perl-macros-5.16.3-294.el7_6.x86_64.rpm | 44 kB 00:00:00 (78/88): perl-threads-1.87-4.el7.x86_64.rpm | 49 kB 00:00:00 (79/88): perl-threads-shared-1.43-6.el7.x86_64.rpm | 39 kB 00:00:00 (80/88): perl-version-0.99.07-3.el7.x86_64.rpm | 84 kB 00:00:00 (81/88): pyparsing-1.5.6-9.el7.noarch.rpm | 94 kB 00:00:00 (82/88): perl-podlators-2.5.1-3.el7.noarch.rpm | 112 kB 00:00:01 (83/88): systemtap-sdt-devel-4.0-9.el7.x86_64.rpm | 76 kB 00:00:00 (84/88): which-2.20-7.el7.x86_64.rpm | 41 kB 00:00:00 (85/88): wodim-1.1.11-25.el7.x86_64.rpm | 320 kB 00:00:02 (86/88): slang-2.2.4-11.el7.x86_64.rpm | 512 kB 00:00:03 (87/88): perl-libs-5.16.3-294.el7_6.x86_64.rpm | 688 kB 00:00:04 (88/88): syslinux-4.05-15.el7.x86_64.rpm | 990 kB 00:00:04 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Total 288 kB/s | 47 MB 00:02:46 warning: /var/cache/yum/x86_64/7/mondorescue/packages/mindi-3.0.2-1.centos7.x86_64.rpm: Header V4 RSA/SHA512 Signature, key ID 20ebfb0e: NOKEY Retrieving key from ftp://ftp.mondorescue.org//centos/7/x86_64/mondorescue.pubkey Importing GPG key 0x20EBFB0E: Userid : "Bruno Cornec (FLOSS & Early Music) " Fingerprint: a9ad d1be c556 4ff7 1d74 ea75 6ba8 c2d2 20eb fb0e From : ftp://ftp.mondorescue.org//centos/7/x86_64/mondorescue.pubkey Retrieving key from ftp://ftp.mondorescue.org//centos/7/x86_64/mondorescue-0x141B9FF237DB9883.pubkey Importing GPG key 0x37DB9883: Userid : "Bruno Cornec " Fingerprint: 54aa 7ada 8c6b 0f5d 51c7 5dc0 141b 9ff2 37db 9883 From : ftp://ftp.mondorescue.org//centos/7/x86_64/mondorescue-0x141B9FF237DB9883.pubkey Running transaction check Running transaction test Transaction test succeeded Running transaction Updating : glibc-2.17-292.el7.x86_64 1/92 warning: /etc/nsswitch.conf created as /etc/nsswitch.conf.rpmnew Updating : glibc-common-2.17-292.el7.x86_64 2/92 Installing : bzip2-1.0.6-13.el7.x86_64 3/92 Installing : mtools-4.0.18-5.el7.x86_64 4/92 Installing : syslinux-4.05-15.el7.x86_64 5/92 Updating : libdb-5.3.21-25.el7.x86_64 6/92 Installing : libusal-1.1.11-25.el7.x86_64 7/92 Installing : parted-3.1-31.el7.x86_64 8/92 Installing : genisoimage-1.1.11-25.el7.x86_64 9/92 Installing : wodim-1.1.11-25.el7.x86_64 10/92 Installing : libdb-devel-5.3.21-25.el7.x86_64 11/92 Installing : afio-2.5-1.centos7.x86_64 12/92 Installing : which-2.20-7.el7.x86_64 13/92 install-info: No such file or directory for /usr/share/info/which.info.gz Installing : groff-base-1.22.2-8.el7.x86_64 14/92 Installing : 1:perl-parent-0.225-244.el7.noarch 15/92 Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 16/92 Installing : perl-podlators-2.5.1-3.el7.noarch 17/92 Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 18/92 Installing : 1:perl-Pod-Escapes-1.04-294.el7_6.noarch 19/92 Installing : perl-Text-ParseWords-3.29-4.el7.noarch 20/92 Installing : perl-Encode-2.51-7.el7.x86_64 21/92 Installing : perl-Pod-Usage-1.63-3.el7.noarch 22/92 Installing : 4:perl-libs-5.16.3-294.el7_6.x86_64 23/92 Installing : perl-Socket-2.010-4.el7.x86_64 24/92 Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 25/92 Installing : perl-threads-1.87-4.el7.x86_64 26/92 Installing : perl-Storable-2.45-3.el7.x86_64 27/92 Installing : perl-Carp-1.26-244.el7.noarch 28/92 Installing : perl-Filter-1.49-3.el7.x86_64 29/92 Installing : perl-Exporter-5.68-3.el7.noarch 30/92 Installing : perl-constant-1.27-2.el7.noarch 31/92 Installing : perl-Time-Local-1.2300-2.el7.noarch 32/92 Installing : 4:perl-macros-5.16.3-294.el7_6.x86_64 33/92 Installing : perl-threads-shared-1.43-6.el7.x86_64 34/92 Installing : perl-File-Temp-0.23.01-3.el7.noarch 35/92 Installing : perl-File-Path-2.09-2.el7.noarch 36/92 Installing : perl-PathTools-3.40-5.el7.x86_64 37/92 Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 38/92 Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 39/92 Installing : perl-Getopt-Long-2.40-3.el7.noarch 40/92 Installing : 4:perl-5.16.3-294.el7_6.x86_64 41/92 Installing : perl-Data-Dumper-2.145-3.el7.x86_64 42/92 Installing : 3:perl-version-0.99.07-3.el7.x86_64 43/92 Installing : perl-Module-Metadata-1.000018-2.el7.noarch 44/92 Installing : perl-IO-Interface-1.05-2.el7.x86_64 45/92 Installing : perl-Test-Harness-3.28-3.el7.noarch 46/92 Installing : perl-ExtUtils-Manifest-1.61-244.el7.noarch 47/92 Installing : perl-CPAN-Meta-YAML-0.008-14.el7.noarch 48/92 Installing : perl-Perl-OSType-1.003-3.el7.noarch 49/92 Installing : perl-CPAN-Meta-Requirements-2.122-7.el7.noarch 50/92 Installing : 1:perl-Module-CoreList-2.76.02-294.el7_6.noarch 51/92 Installing : perl-JSON-PP-2.27202-2.el7.noarch 52/92 Installing : 1:perl-Parse-CPAN-Meta-1.4404-5.el7.noarch 53/92 Installing : perl-CPAN-Meta-2.120921-5.el7.noarch 54/92 Installing : perl-YAML-0.84-5.el7.noarch 55/92 Installing : perl-ProjectBuilder-0.15.2-1.centos7.noarch 56/92 Installing : perl-Locale-Maketext-1.23-3.el7.noarch 57/92 Installing : 1:perl-Locale-Maketext-Simple-0.21-294.el7_6.noarch 58/92 Installing : 1:perl-Params-Check-0.38-2.el7.noarch 59/92 Installing : perl-Net-IPv4Addr-0.10-6.el7.noarch 60/92 Installing : perl-Digest-1.17-245.el7.noarch 61/92 Installing : perl-Digest-MD5-2.52-3.el7.x86_64 62/92 Installing : perl-MondoRescue-3.2.2-1.centos7.noarch 63/92 Installing : 1:perl-Module-Load-0.24-3.el7.noarch 64/92 Installing : perl-Module-Load-Conditional-0.54-3.el7.noarch 65/92 Installing : slang-2.2.4-11.el7.x86_64 66/92 Installing : newt-0.52.15-4.el7.x86_64 67/92 Installing : dosfstools-3.0.20-10.el7.x86_64 68/92 Installing : mindi-busybox-1.21.1-1.centos7.x86_64 69/92 Installing : net-tools-2.0-0.25.20131004git.el7.x86_64 70/92 Installing : buffer-1.19-8.centos7.x86_64 71/92 Installing : pyparsing-1.5.6-9.el7.noarch 72/92 Installing : systemtap-sdt-devel-4.0-9.el7.x86_64 73/92 Installing : kernel-headers-3.10.0-1062.1.1.el7.x86_64 74/92 Installing : glibc-headers-2.17-292.el7.x86_64 75/92 Installing : glibc-devel-2.17-292.el7.x86_64 76/92 Installing : gdbm-devel-1.10-8.el7.x86_64 77/92 install-info: No such file or directory for /usr/share/info/gdbm.info.gz Installing : 1:perl-ExtUtils-ParseXS-3.18-3.el7.noarch 78/92 Installing : 4:perl-devel-5.16.3-294.el7_6.x86_64 79/92 Installing : perl-ExtUtils-Install-1.58-294.el7_6.noarch 80/92 Installing : perl-ExtUtils-MakeMaker-6.68-3.el7.noarch 81/92 Installing : 1:perl-IPC-Cmd-0.80-4.el7.noarch 82/92 Installing : 1:perl-ExtUtils-CBuilder-0.28.2.6-294.el7_6.noarch 83/92 Installing : 2:perl-Module-Build-0.40.05-2.el7.noarch 84/92 Installing : perl-Module-ScanDeps-1.10-3.el7.noarch 85/92 Installing : mindi-3.0.2-1.centos7.x86_64 86/92 Installing : mondo-3.2.2-1.centos7.x86_64 87/92 Updating : libdb-utils-5.3.21-25.el7.x86_64 88/92 Cleanup : libdb-utils-5.3.21-24.el7.x86_64 89/92 Cleanup : libdb-5.3.21-24.el7.x86_64 90/92 Cleanup : glibc-common-2.17-260.el7.x86_64 91/92 Cleanup : glibc-2.17-260.el7.x86_64 92/92 Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 1/92 Verifying : mindi-3.0.2-1.centos7.x86_64 2/92 Verifying : libdb-utils-5.3.21-25.el7.x86_64 3/92 Verifying : perl-Module-ScanDeps-1.10-3.el7.noarch 4/92 Verifying : perl-Locale-Maketext-1.23-3.el7.noarch 5/92 Verifying : afio-2.5-1.centos7.x86_64 6/92 Verifying : which-2.20-7.el7.x86_64 7/92 Verifying : groff-base-1.22.2-8.el7.x86_64 8/92 Verifying : perl-File-Temp-0.23.01-3.el7.noarch 9/92 Verifying : glibc-common-2.17-292.el7.x86_64 10/92 Verifying : perl-Socket-2.010-4.el7.x86_64 11/92 Verifying : perl-Data-Dumper-2.145-3.el7.x86_64 12/92 Verifying : syslinux-4.05-15.el7.x86_64 13/92 Verifying : 1:perl-IPC-Cmd-0.80-4.el7.noarch 14/92 Verifying : 1:perl-Locale-Maketext-Simple-0.21-294.el7_6.noarch 15/92 Verifying : perl-File-Path-2.09-2.el7.noarch 16/92 Verifying : perl-Net-IPv4Addr-0.10-6.el7.noarch 17/92 Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 18/92 Verifying : 4:perl-devel-5.16.3-294.el7_6.x86_64 19/92 Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 20/92 Verifying : perl-JSON-PP-2.27202-2.el7.noarch 21/92 Verifying : perl-CPAN-Meta-2.120921-5.el7.noarch 22/92 Verifying : 2:perl-Module-Build-0.40.05-2.el7.noarch 23/92 Verifying : perl-ExtUtils-MakeMaker-6.68-3.el7.noarch 24/92 Verifying : slang-2.2.4-11.el7.x86_64 25/92 Verifying : bzip2-1.0.6-13.el7.x86_64 26/92 Verifying : 4:perl-libs-5.16.3-294.el7_6.x86_64 27/92 Verifying : perl-CPAN-Meta-Requirements-2.122-7.el7.noarch 28/92 Verifying : perl-IO-Interface-1.05-2.el7.x86_64 29/92 Verifying : dosfstools-3.0.20-10.el7.x86_64 30/92 Verifying : 1:perl-ExtUtils-ParseXS-3.18-3.el7.noarch 31/92 Verifying : perl-ExtUtils-Install-1.58-294.el7_6.noarch 32/92 Verifying : perl-MondoRescue-3.2.2-1.centos7.noarch 33/92 Verifying : perl-Pod-Usage-1.63-3.el7.noarch 34/92 Verifying : mindi-busybox-1.21.1-1.centos7.x86_64 35/92 Verifying : perl-Encode-2.51-7.el7.x86_64 36/92 Verifying : perl-threads-1.87-4.el7.x86_64 37/92 Verifying : perl-Getopt-Long-2.40-3.el7.noarch 38/92 Verifying : perl-Digest-1.17-245.el7.noarch 39/92 Verifying : perl-Test-Harness-3.28-3.el7.noarch 40/92 Verifying : glibc-headers-2.17-292.el7.x86_64 41/92 Verifying : libdb-devel-5.3.21-25.el7.x86_64 42/92 Verifying : perl-threads-shared-1.43-6.el7.x86_64 43/92 Verifying : perl-Storable-2.45-3.el7.x86_64 44/92 Verifying : 1:perl-Pod-Escapes-1.04-294.el7_6.noarch 45/92 Verifying : perl-ExtUtils-Manifest-1.61-244.el7.noarch 46/92 Verifying : gdbm-devel-1.10-8.el7.x86_64 47/92 Verifying : perl-CPAN-Meta-YAML-0.008-14.el7.noarch 48/92 Verifying : 1:perl-parent-0.225-244.el7.noarch 49/92 Verifying : 1:perl-Params-Check-0.38-2.el7.noarch 50/92 Verifying : perl-Module-Load-Conditional-0.54-3.el7.noarch 51/92 Verifying : perl-Digest-MD5-2.52-3.el7.x86_64 52/92 Verifying : 1:perl-Parse-CPAN-Meta-1.4404-5.el7.noarch 53/92 Verifying : mtools-4.0.18-5.el7.x86_64 54/92 Verifying : 4:perl-5.16.3-294.el7_6.x86_64 55/92 Verifying : glibc-devel-2.17-292.el7.x86_64 56/92 Verifying : perl-Carp-1.26-244.el7.noarch 57/92 Verifying : libdb-5.3.21-25.el7.x86_64 58/92 Verifying : kernel-headers-3.10.0-1062.1.1.el7.x86_64 59/92 Verifying : perl-podlators-2.5.1-3.el7.noarch 60/92 Verifying : 1:perl-Module-Load-0.24-3.el7.noarch 61/92 Verifying : perl-Filter-1.49-3.el7.x86_64 62/92 Verifying : perl-ProjectBuilder-0.15.2-1.centos7.noarch 63/92 Verifying : genisoimage-1.1.11-25.el7.x86_64 64/92 Verifying : perl-Module-Metadata-1.000018-2.el7.noarch 65/92 Verifying : libusal-1.1.11-25.el7.x86_64 66/92 Verifying : perl-Perl-OSType-1.003-3.el7.noarch 67/92 Verifying : 1:perl-ExtUtils-CBuilder-0.28.2.6-294.el7_6.noarch 68/92 Verifying : systemtap-sdt-devel-4.0-9.el7.x86_64 69/92 Verifying : parted-3.1-31.el7.x86_64 70/92 Verifying : perl-Exporter-5.68-3.el7.noarch 71/92 Verifying : perl-constant-1.27-2.el7.noarch 72/92 Verifying : perl-PathTools-3.40-5.el7.x86_64 73/92 Verifying : pyparsing-1.5.6-9.el7.noarch 74/92 Verifying : perl-YAML-0.84-5.el7.noarch 75/92 Verifying : mondo-3.2.2-1.centos7.x86_64 76/92 Verifying : newt-0.52.15-4.el7.x86_64 77/92 Verifying : net-tools-2.0-0.25.20131004git.el7.x86_64 78/92 Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 79/92 Verifying : perl-Time-Local-1.2300-2.el7.noarch 80/92 Verifying : wodim-1.1.11-25.el7.x86_64 81/92 Verifying : 4:perl-macros-5.16.3-294.el7_6.x86_64 82/92 Verifying : 3:perl-version-0.99.07-3.el7.x86_64 83/92 Verifying : buffer-1.19-8.centos7.x86_64 84/92 Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 85/92 Verifying : glibc-2.17-292.el7.x86_64 86/92 Verifying : 1:perl-Module-CoreList-2.76.02-294.el7_6.noarch 87/92 Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 88/92 Verifying : libdb-utils-5.3.21-24.el7.x86_64 89/92 Verifying : glibc-2.17-260.el7.x86_64 90/92 Verifying : libdb-5.3.21-24.el7.x86_64 91/92 Verifying : glibc-common-2.17-260.el7.x86_64 92/92 Installed: mondo.x86_64 0:3.2.2-1.centos7 Dependency Installed: afio.x86_64 0:2.5-1.centos7 buffer.x86_64 0:1.19-8.centos7 bzip2.x86_64 0:1.0.6-13.el7 dosfstools.x86_64 0:3.0.20-10.el7 gdbm-devel.x86_64 0:1.10-8.el7 genisoimage.x86_64 0:1.1.11-25.el7 glibc-devel.x86_64 0:2.17-292.el7 glibc-headers.x86_64 0:2.17-292.el7 groff-base.x86_64 0:1.22.2-8.el7 kernel-headers.x86_64 0:3.10.0-1062.1.1.el7 libdb-devel.x86_64 0:5.3.21-25.el7 libusal.x86_64 0:1.1.11-25.el7 mindi.x86_64 0:3.0.2-1.centos7 mindi-busybox.x86_64 0:1.21.1-1.centos7 mtools.x86_64 0:4.0.18-5.el7 net-tools.x86_64 0:2.0-0.25.20131004git.el7 newt.x86_64 0:0.52.15-4.el7 parted.x86_64 0:3.1-31.el7 perl.x86_64 4:5.16.3-294.el7_6 perl-CPAN-Meta.noarch 0:2.120921-5.el7 perl-CPAN-Meta-Requirements.noarch 0:2.122-7.el7 perl-CPAN-Meta-YAML.noarch 0:0.008-14.el7 perl-Carp.noarch 0:1.26-244.el7 perl-Data-Dumper.x86_64 0:2.145-3.el7 perl-Digest.noarch 0:1.17-245.el7 perl-Digest-MD5.x86_64 0:2.52-3.el7 perl-Encode.x86_64 0:2.51-7.el7 perl-Exporter.noarch 0:5.68-3.el7 perl-ExtUtils-CBuilder.noarch 1:0.28.2.6-294.el7_6 perl-ExtUtils-Install.noarch 0:1.58-294.el7_6 perl-ExtUtils-MakeMaker.noarch 0:6.68-3.el7 perl-ExtUtils-Manifest.noarch 0:1.61-244.el7 perl-ExtUtils-ParseXS.noarch 1:3.18-3.el7 perl-File-Path.noarch 0:2.09-2.el7 perl-File-Temp.noarch 0:0.23.01-3.el7 perl-Filter.x86_64 0:1.49-3.el7 perl-Getopt-Long.noarch 0:2.40-3.el7 perl-HTTP-Tiny.noarch 0:0.033-3.el7 perl-IO-Interface.x86_64 0:1.05-2.el7 perl-IPC-Cmd.noarch 1:0.80-4.el7 perl-JSON-PP.noarch 0:2.27202-2.el7 perl-Locale-Maketext.noarch 0:1.23-3.el7 perl-Locale-Maketext-Simple.noarch 1:0.21-294.el7_6 perl-Module-Build.noarch 2:0.40.05-2.el7 perl-Module-CoreList.noarch 1:2.76.02-294.el7_6 perl-Module-Load.noarch 1:0.24-3.el7 perl-Module-Load-Conditional.noarch 0:0.54-3.el7 perl-Module-Metadata.noarch 0:1.000018-2.el7 perl-Module-ScanDeps.noarch 0:1.10-3.el7 perl-MondoRescue.noarch 0:3.2.2-1.centos7 perl-Net-IPv4Addr.noarch 0:0.10-6.el7 perl-Params-Check.noarch 1:0.38-2.el7 perl-Parse-CPAN-Meta.noarch 1:1.4404-5.el7 perl-PathTools.x86_64 0:3.40-5.el7 perl-Perl-OSType.noarch 0:1.003-3.el7 perl-Pod-Escapes.noarch 1:1.04-294.el7_6 perl-Pod-Perldoc.noarch 0:3.20-4.el7 perl-Pod-Simple.noarch 1:3.28-4.el7 perl-Pod-Usage.noarch 0:1.63-3.el7 perl-ProjectBuilder.noarch 0:0.15.2-1.centos7 perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 perl-Socket.x86_64 0:2.010-4.el7 perl-Storable.x86_64 0:2.45-3.el7 perl-Test-Harness.noarch 0:3.28-3.el7 perl-Text-ParseWords.noarch 0:3.29-4.el7 perl-Time-HiRes.x86_64 4:1.9725-3.el7 perl-Time-Local.noarch 0:1.2300-2.el7 perl-YAML.noarch 0:0.84-5.el7 perl-constant.noarch 0:1.27-2.el7 perl-devel.x86_64 4:5.16.3-294.el7_6 perl-libs.x86_64 4:5.16.3-294.el7_6 perl-macros.x86_64 4:5.16.3-294.el7_6 perl-parent.noarch 1:0.225-244.el7 perl-podlators.noarch 0:2.5.1-3.el7 perl-threads.x86_64 0:1.87-4.el7 perl-threads-shared.x86_64 0:1.43-6.el7 perl-version.x86_64 3:0.99.07-3.el7 pyparsing.noarch 0:1.5.6-9.el7 slang.x86_64 0:2.2.4-11.el7 syslinux.x86_64 0:4.05-15.el7 systemtap-sdt-devel.x86_64 0:4.0-9.el7 which.x86_64 0:2.20-7.el7 wodim.x86_64 0:1.1.11-25.el7 Dependency Updated: glibc.x86_64 0:2.17-292.el7 glibc-common.x86_64 0:2.17-292.el7 libdb.x86_64 0:5.3.21-25.el7 libdb-utils.x86_64 0:5.3.21-25.el7 Complete! [root@fe4902a26572 /]# mondoarchive --version mondoarchive v3.2.2-r3685 See man page for help }}} == Installing from APT == The ftp site is also set up as an apt repository. You can install and update your mindi/mondo packages using apt. First create a file in your apt repo directory (most probably /etc/apt/sources.list.d) like the following (you may download it from our ftp server in each debian|ubuntu/version directory). Note that this sample is for debian. You will need to edit a bit for other distros. {{{ [root@tesla sources.list.d]# cat mondorescue.sources.list deb ftp://ftp.mondorescue.org//debian 8 contrib deb-src ftp://ftp.mondorescue.org//debian 8 contrib }}} Such a file is now automatically produced by project-builder and available on the ftp server at the same place as the packages. E.g. for Debian 8 x86_64 download it from ftp://ftp.mondorescue.org/debian/8/mondorescue.sources.list If you want to contribute to the testing of !MondoRescue, also download the corresponding repo file under the test directory and the same subtree. In the above case it's ftp://ftp.mondorescue.org/test/debian/8/mondorescue-test.sources.list Now just use the commands: {{{ # apt-get install mondo }}} apt will discover that mindi is a dependency for mondo and add it to your list. Here is a sequence of a successful installation of the stable version of mondo in a Debian 8 container {{{ ]$ docker run -ti --rm centos:7 [root@fe4902a26572 /]# yum install -y wget