18
Thu, Apr
5 New Articles

TechTip: IFS Containers Part 3, Installing Open Source from the Internet

Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

One of the core tenets of open source is freedom to obtain and use software. Now it's time to see that benefit in action.

In the first article of this series, we learned about how IFS Containers could be manually created by copying things into a new directory and then running the chroot command against that directory. This was a laborious process that would cause the technology to not be used unless some amount of automation was introduced. In the second article, I introduced the IBM i Chroot (ibmichroot) project, which addresses the automation of creating IFS Containers in a matter of minutes and even more important, uniformity. In this article, we will navigate through the other core feature of the IBM i Chroot project: package installation.

By “package installation,” I mean the process of obtaining software from the Internet and installing it in PASE. This is where one of the core tenets of open source comes into play: the ability to freely obtain software for download or compilation from others. A first question people might have is "What packages are we talking about?" Well, when I set up IFS Containers, there are a handful of packages I always include. I've listed them below.

  • JoeA server-side editor that allows me to quickly edit files in the IFS from a shell session
  • WgetCommand to access URLs; great for quickly downloading things from the Internet
  • ZshThe zsh shell is an alternative to bash, though both work well and I use both

As you can see, my usage of packages involves tools and commands, but they extend much further than that to include things like web servers, programming languages, and much more.

The IBM i Chroot project has two approaches to obtaining and installing packages. The first one is what's been in there since the beginning of the project: obtaining packages from perzl.org. The second is using the yum command to obtain packages. Using yum is still in an experimental phase, so we won't be discussing that here. You can see the yum progress here.

Let's dive into the perzl.org approach to packages. First, what is perzl.org? It is a site maintained by Michael Perzl; an IBMer who ports Linux packages to AIX. This is very cool for us because PASE is essentially AIX and that means when perzl.org ports a package it can also run on IBM i. You can see the complete list of ported packages here. (It's important to note his site isn't endorsed or supported by IBM and instead is a personal endeavor.)

To install a perzl.org package, we need to run the following commands. Please refer to the second article in this series for how to install IBM i Chroot on your IBM i.

$ cd /QOpenSys/ibmichroot/pkg

$ pkg_setup.sh pkg_perzl_joe-3.7-1.lst

**********************

Live IBM i session (changes made).

**********************

PATH=/QOpenSys/usr/bin:/QOpenSys/usr/sbin:/opt/freeware/bin

LIBPATH=/QOpenSys/usr/lib:/opt/freeware/lib

--12:04:03-- http://www.oss4aix.org/download/RPMS/joe/joe-3.7-1.aix5.1.ppc.rpm

           => `joe-3.7-1.aix5.1.ppc.rpm'

Resolving www.oss4aix.org... 178.254.6.100

Connecting to www.oss4aix.org[178.254.6.100]:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 342,946 [application/x-rpm]

100%[====================================>] 342,946     406.18K/s

12:04:04 (404.86 KB/s) - `joe-3.7-1.aix5.1.ppc.rpm' saved [342946/342946]

install joe-3.7-1.aix5.1.ppc.rpm ...

failed to stat /QNTC: No such file or directory

joe                         ##################################################

First, we use the cd command to enter the /QOpenSys/ibmichroot/pkg directory so we can operate without fully qualifying other paths in the next command. Next, we run the pkg_setup.sh script and provide the package configuration we would like to install, namely pkg_perzl_joe-3.7-1.lst. Package configuration files are used to determine where a package's files are located on the Internet and also what its dependencies are.

Below are the contents of configuration file pkg_perzl_joe-3.7-1.lst.

# Command:

#   > ./pkg_setup.sh pkg_perzl_joe-3.7-1.lst

# Use:

#   > export PATH=/opt/freeware/bin:$PATH

#   > export LIBPATH=/opt/freeware/lib:$LIBPATH (if error, remove ':$LIBPATH')

#   > any_util (below)

# Contents:

# Other files:

#

# read file

#

:file

#

# rpm list

#

:rpm

http://www.oss4aix.org/download/RPMS/joe/joe-3.7-1.aix5.1.ppc.rpm

The # symbol is considered a comment. The :file and :rpm areas are declaring a named delineation of the file. Specifically, :file is used to declare other package configuration files that should be run before proceeding. This is nice for modularizing package installs. The :rpm section is used to declare what RPMs should be installed to completely install the package. The joe utility is simple and has no dependencies. Look at pkg_perzl_gcc-4.8.3.lst to see a larger example with dependencies.

Before going on, it would be good to describe what an rpm is. Wikipedia defines RPM as:

RPM Package Manager (RPM) (originally Red Hat Package Manager; now a recursive acronym) is a package management system. The name RPM refers to the following: the .rpm file format, files in the .rpm file format, software packaged in such files, and the package manager program itself. RPM was intended primarily for Linux distributions; the file format is the baseline package format of the Linux Standard Base.

Even though it was created for use in Red Hat Linux, RPM is now used in many Linux distributions. It has also been ported to some other operating systems, such as Novell NetWare (as of version 6.5 SP3) and IBM's AIX (as of version 4).

An RPM package can contain an arbitrary set of files. The larger part of RPM files encountered are “binary RPMs” (or BRPMs) containing the compiled version of some software. There are also “source RPMs” (or SRPMs) files containing the source code used to produce a package. These have an appropriate tag in the file header that distinguishes them from normal (B)RPMs, causing them to be extracted to /usr/src on installation. SRPMs customarily carry the file extension “.src.rpm” (.spm on file systems limited to 3 extension characters, e.g. old DOS FAT).

Think of an RPM file as being similar to a *SAVF or licensed program install; it can contain compiled programs, IFS files, and pre/post execution scripts.

At this point, the joe editor is installed and available for use. I usually test a package to make sure it is working after I install it. First, I run the following command to learn that the joe command exists and where it is located.

$ which joe | xargs ls -al

lrwx------   1 aaron   0       52 Aug 31 10:18 /QOpenSys/usr/bin/joe -> ../../opt/freeware/bin/joe

And since joe is an editor, you can test it further by actually editing a file using the following command.

$ joe mynewfile.txt

You should now see a screen like the following. Note that you need to have logged in via an SSH connection. Using CALL QP2TERM won't work with joe.

120916bartell figure1 joe dmu

Figure 1: Joe editor in action on IBM i

Before moving on, I want to share a tip I recently learned. Below are a couple user profiles I recommend you create on your system. These aren't required but will greatly lessen the amount of warning logs created while using the pkg_setup.sh command. You'll notice I didn't have many warning messages relating to a profile named “system” or “bin”; that's because the server I ran the install on already had those profiles.

CRTUSRPRF USRPRF(SYSTEM) PASSWORD(*NONE) USRCLS(*SYSOPR) TEXT('AIX rpm group') SPCAUT(*USRCLS) GID(*GEN) AUT(*ALL)

CRTUSRPRF USRPRF(BIN) PASSWORD(*NONE) USRCLS(*SYSOPR) TEXT('AIX rpm group') SPCAUT(*USRCLS) GID(*GEN) AUT(*ALL)

Up to this point, we haven't really talked about how IFS Containers fit into the picture with pkg_setup.sh. You can install packages inside an IFS Container or in what I call the "base of PASE" (outside an IFS Container, where it will affect everyone). My best practice is to install as little as possible in the base of PASE. For example, I will usually install zsh, joe, and wget in the base of PASE, but I try to stop at that because, again, it affects everyone, which means I could unintentionally break other things that are running in the base of PASE. In contrast, when IFS Containers are used, we can install packages without worry that they'll affect others.

The steps above are the same when installing in an IFS Container. The difference is you first need to put the IBM i Chroot project inside the IFS Container. Why? Recall from the first article where we learned that if you don't put a file into an IFS Container, then it can't be found.

Below are the commands necessary to create an IFS Container, copied verbatim from the second article in this series.

$ mkdir /QOpenSys/ibmichroot_containers

$ cd /QOpenSys/ibmichroot/chroot

$ chroot_setup.sh chroot_minimal.lst /QOpenSys/ibmichroot_containers/c1

The below cp (copy) command will take the ibmichroot directory from the base of PASE and copy it into the same-named directory in the c1 IFS Containter. You can learn about the copy command in the AIX documentation.

$ cp -R /QOpenSys/ibmichroot /QOpenSys/ibmichroot_containers/c1/QOpenSys/.

Now enter the IFS Container using the chroot command, as shown below.

$ chroot /QOpenSys/ibmichroot_containers/c1 /usr/bin/sh

At this point, as previously mentioned, the process is the same as when we installed packages in the base of PASE. Simply cd (change directory) to the location of the pkg_setup.sh script and then run the script while specifying a package configuration.

$ cd /QOpenSys/ibmichroot/pkg

$ pkg_setup.sh pkg_perzl_joe-3.7-1.lst

**********************

Live IBM i session (changes made).

**********************

PATH=/QOpenSys/usr/bin:/QOpenSys/usr/sbin:/opt/freeware/bin

LIBPATH=/QOpenSys/usr/lib:/opt/freeware/lib

setup rpm.rte ...

New volume on rpm.rte:

Cluster 51200 bytes (100 blocks).

   Volume number 1

   Date of backup: Thu Mar 1 09:26:22 2012

   Files backed up by name

   User BUILD

x           0 ./

x         2473 ./lpp_name

x           0 ./usr

x            0 ./usr/lpp

x           0 ./usr/lpp/rpm.rte

x       57382 ./usr/lpp/rpm.rte/liblpp.a

x           0 ./usr/lpp/rpm.rte/inst_root

x         8610 ./usr/lpp/rpm.rte/inst_root/liblpp.a

x           0 ./usr/lpp/rpm.rte/inst_root/etc/rpm

x         1147 ./usr/lpp/rpm.rte/inst_root/etc/info-dir

x           0 ./usr/linux

x           0 ./usr/linux/bin

x           0 ./usr/opt/freeware/bin

x       33713 ./usr/opt/freeware/bin/bunzip2

x       33713 ./usr/opt/freeware/bin/bzcat

x       33713 ./usr/opt/freeware/bin/bzip2

x         9329 ./usr/opt/freeware/bin/bzip2recover

x         410 ./usr/opt/freeware/bin/gendiff

x         3921 ./usr/opt/freeware/bin/gzexe

x       64090 ./usr/opt/freeware/bin/gzip

x       26376 ./usr/opt/freeware/bin/install-info

x       94446 ./usr/opt/freeware/bin/patch

x       74385 ./usr/opt/freeware/bin/rpm

x       19592 ./usr/opt/freeware/bin/rpm2cpio

x         2009 ./usr/opt/freeware/bin/zcmp

x         1342 ./usr/opt/freeware/bin/zgrep

x         1077 ./usr/opt/freeware/bin/zmore

x         3511 ./usr/opt/freeware/bin/znew

x           0 ./usr/opt/freeware/packages

x       13005 ./usr/sbin/rpm_share

x         155 ./usr/bin/rpm

x           0 ./usr/opt/freeware/info

x           0 ./usr/opt/freeware/lib

x       197216 ./usr/opt/freeware/lib/libbz2.a

x       374612 ./usr/opt/freeware/lib/libintl.a

x       46789 ./usr/opt/freeware/lib/libpopt.so.0.0.0

x     1010536 ./usr/opt/freeware/lib/librpm.so.0.0.0

x       200900 ./usr/opt/freeware/lib/librpmbuild.so.0.0.0

x       271724 ./usr/opt/freeware/lib/libz.a

x           0 ./usr/opt/freeware/share/locale

x           0 ./usr/opt/freeware/share/locale/de

x           0 ./usr/opt/freeware/share/locale/de/LC_MESSAGES

x       29327 ./usr/opt/freeware/share/locale/de/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/fr

x           0 ./usr/opt/freeware/share/locale/fr/LC_MESSAGES

x         2933 ./usr/opt/freeware/share/locale/fr/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/pl

x           0 ./usr/opt/freeware/share/locale/pl/LC_MESSAGES

x       63539 ./usr/opt/freeware/share/locale/pl/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/sl

x           0 ./usr/opt/freeware/share/locale/sl/LC_MESSAGES

x       71060 ./usr/opt/freeware/share/locale/sl/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/sv

x           0 ./usr/opt/freeware/share/locale/sv/LC_MESSAGES

x       69145 ./usr/opt/freeware/share/locale/sv/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/cs

x           0 ./usr/opt/freeware/share/locale/cs/LC_MESSAGES

x       37014 ./usr/opt/freeware/share/locale/cs/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/fi

x           0 ./usr/opt/freeware/share/locale/fi/LC_MESSAGES

x       28184 ./usr/opt/freeware/share/locale/fi/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/ja

x           0 ./usr/opt/freeware/share/locale/ja/LC_MESSAGES

x        45951 ./usr/opt/freeware/share/locale/ja/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/pt_BR

x           0 ./usr/opt/freeware/share/locale/pt_BR/LC_MESSAGES

x       17199 ./usr/opt/freeware/share/locale/pt_BR/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/sk

x           0 ./usr/opt/freeware/share/locale/sk/LC_MESSAGES

x         510 ./usr/opt/freeware/share/locale/sk/LC_MESSAGES/popt.mo

x       60406 ./usr/opt/freeware/share/locale/sk/LC_MESSAGES/rpm.mo

x          0 ./usr/opt/freeware/share/locale/sr

x           0 ./usr/opt/freeware/share/locale/sr/LC_MESSAGES

x       24281 ./usr/opt/freeware/share/locale/sr/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/tr

x           0 ./usr/opt/freeware/share/locale/tr/LC_MESSAGES

x       28637 ./usr/opt/freeware/share/locale/tr/LC_MESSAGES/rpm.mo

x           0 ./usr/opt/freeware/share/locale/ro

x           0 ./usr/opt/freeware/share/locale/ro/LC_MESSAGES

x         494 ./usr/opt/freeware/share/locale/ro/LC_MESSAGES/popt.mo

x           0 ./usr/opt/freeware/src

x           0 ./usr/opt/freeware/src/packages

x           0 ./usr/opt/freeware/src/packages/BUILD

x           0 ./usr/opt/freeware/src/packages/RPMS

x          0 ./usr/opt/freeware/src/packages/RPMS/ia64

x           0 ./usr/opt/freeware/src/packages/RPMS/noarch

x           0 ./usr/opt/freeware/src/packages/RPMS/powerpc

x           0 ./usr/opt/freeware/src/packages/RPMS/ppc

x           0 ./usr/opt/freeware/src/packages/SOURCES

x           0 ./usr/opt/freeware/src/packages/SPECS

x           0 ./usr/opt/freeware/src/packages/SRPMS

x           0 ./usr/opt/freeware/lib/rpm

x         1382 ./usr/opt/freeware/lib/rpm/brp-compress

x         374 ./usr/opt/freeware/lib/rpm/brp-redhat

x         372 ./usr/opt/freeware/lib/rpm/brp-strip

x         584 ./usr/opt/freeware/lib/rpm/brp-strip-comment-note

x         422 ./usr/opt/freeware/lib/rpm/check-prereqs

x       33456 ./usr/opt/freeware/lib/rpm/config.guess

x       25283 ./usr/opt/freeware/lib/rpm/config.sub

x         2561 ./usr/opt/freeware/lib/rpm/convertrpmrc.sh

x         4031 ./usr/opt/freeware/lib/rpm/cpanflute

x         2248 ./usr/opt/freeware/lib/rpm/find-lang.sh

x         4188 ./usr/opt/freeware/lib/rpm/find-prov.pl

x       24048 ./usr/opt/freeware/lib/rpm/find-provides

x         267 ./usr/opt/freeware/lib/rpm/find-provides.perl

x         3571 ./usr/opt/freeware/lib/rpm/find-req.pl

x         3106 ./usr/opt/freeware/lib/rpm/find-requires

x         1533 ./usr/opt/freeware/lib/rpm/find-requires.perl

x         2335 ./usr/opt/freeware/lib/rpm/get_magic.pl

x         792 ./usr/opt/freeware/lib/rpm/getpo.sh

x         3206 ./usr/opt/freeware/lib/rpm/http.req

x       18759 ./usr/opt/freeware/lib/rpm/macros

x         3634 ./usr/opt/freeware/lib/rpm/magic.prov

x         2927 ./usr/opt/freeware/lib/rpm/magic.req

x         726 ./usr/opt/freeware/lib/rpm/mkinstalldirs

x         4738 ./usr/opt/freeware/lib/rpm/perl.prov

x         5522 ./usr/opt/freeware/lib/rpm/perl.req

x       23972 ./usr/opt/freeware/lib/rpm/rpmdiff

x       15674 ./usr/opt/freeware/lib/rpm/rpmdiff.cgi

x       58952 ./usr/opt/freeware/lib/rpm/rpmgettext

x         3639 ./usr/opt/freeware/lib/rpm/rpmpopt

x       58952 ./usr/opt/freeware/lib/rpm/rpmputtext

x         8160 ./usr/opt/freeware/lib/rpm/rpmrc

x         1680 ./usr/opt/freeware/lib/rpm/u_pkg.sh

x         8427 ./usr/opt/freeware/lib/rpm/vpkg-provides.sh

x         2429 ./usr/opt/freeware/lib/rpm/vpkg-provides2.sh

x           0 ./usr/opt/freeware/man

x           0 ./usr/opt/freeware/man/man1

x         1610 ./usr/opt/freeware/man/man1/gendiff.1

x           0 ./usr/opt/freeware/man/man8

x       21513 ./usr/opt/freeware/man/man8/rpm.8

x         605 ./usr/opt/freeware/man/man8/rpm2cpio.8

x           0 ./usr/src

x           0 ./usr/lpp/rpm.rte/inst_root/var/lib

x           0 ./usr/lpp/rpm.rte/inst_root/var/opt/freeware

x           0 ./usr/lpp/rpm.rte/inst_root/var/opt/freeware/lib

x           0 ./usr/swlag

x          0 ./usr/swlag/en_US

x       27520 ./usr/swlag/en_US/rpm.rte.la

   total size: 3448054

   files restored: 139

mkdir: cannot create /var.

/var: File exists

ln: /var/opt exists. Specify -f to remove.

setup wget-1.9.1-1.aix5.1.ppc.rpm ...

failed to stat /QNTC: No such file or directory

wget                       ##################################################

GNU Wget 1.9.1

Copyright (C) 2003 Free Software Foundation, Inc.

This program is distributed in the hope that it will be useful,

but WITHOUT ANY WARRANTY; without even the implied warranty of

MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

GNU General Public License for more details.

Originally written by Hrvoje Niksic <This email address is being protected from spambots. You need JavaScript enabled to view it.;.

--15:22:27-- http://www.oss4aix.org/download/RPMS/joe/joe-3.7-1.aix5.1.ppc.rpm

           => `joe-3.7-1.aix5.1.ppc.rpm'

Resolving www.oss4aix.org... 178.254.6.100

Connecting to www.oss4aix.org[178.254.6.100]:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 342,946 [application/x-rpm]

100%[===================================================================================>] 342,946     314.01K/s

15:22:28 (313.50 KB/s) - `joe-3.7-1.aix5.1.ppc.rpm' saved [342946/342946]

install joe-3.7-1.aix5.1.ppc.rpm ...

failed to stat /QNTC: No such file or directory

joe                         ##################################################

That's it! You're now successfully using IFS Containers on IBM i! It's worth noting that the manual steps we took to copy the ibmichroot directory into the c1 IFS Container could be automated by including the copy command in a custom chroot_xxxxx.lst that is for a specific purpose in your business.

On final note, the work of Michael Perzl has been extremely useful for IBM i shops to get up and running with a variety of open-source software packages. What we're now finding is we are outgrowing his efforts. Specifically, what happens if we need to use a package he hasn't yet ported? What do we do if we need a more recent version of a package that isn't yet available on his site? What if the package doesn't install successfully because it's expecting something that's specific to AIX (see Nginx article)? That's why we're venturing into how to create our own RPM files on and for IBM i. This is where the IBM i Chroot efforts with yum come into play. Watch this space, as they say.

If you have any questions or comments, then please comment below or email me at This email address is being protected from spambots. You need JavaScript enabled to view it..

Aaron Bartell

Aaron Bartell is Director of IBM i Innovation for Krengel Technology, Inc. Aaron facilitates adoption of open-source technologies on IBM i through professional services, staff training, speaking engagements, and the authoring of best practices within industry publications andwww.litmis.comWith a strong background in RPG application development, Aaron covers topics that enable IBM i shops to embrace today's leading technologies, including Ruby on Rails, Node.js, Git for RPG source change management, and RSpec for unit testing RPG. Aaron is a passionate advocate of vibrant technology communities and the corresponding benefits available for today's modern application developers. Connect with Aaron via email atThis email address is being protected from spambots. You need JavaScript enabled to view it..

Aaron lives with his wife and five children in southern Minnesota. He enjoys the vast amounts of laughter that having a young family brings, along with camping and music. He believes there's no greater purpose than to give of our life and time to help others.

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: