Sidebar

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

Analytics & Cognitive
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 atabartell@krengeltech.com.

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.

More Articles By This Author
Related Articles
BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

RESOURCE CENTER

  • WHITE PAPERS

  • WEBCAST

  • TRIAL SOFTWARE

  • White Paper: Node.js for Enterprise IBM i Modernization

    SB Profound WP 5539

    If your business is thinking about modernizing your legacy IBM i (also known as AS/400 or iSeries) applications, you will want to read this white paper first!

    Download this paper and learn how Node.js can ensure that you:
    - Modernize on-time and budget - no more lengthy, costly, disruptive app rewrites!
    - Retain your IBM i systems of record
    - Find and hire new development talent
    - Integrate new Node.js applications with your existing RPG, Java, .Net, and PHP apps
    - Extend your IBM i capabilties to include Watson API, Cloud, and Internet of Things


    Read Node.js for Enterprise IBM i Modernization Now!

     

  • Profound Logic Solution Guide

    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 companyare not aligned with the current IT environment.

    Get your copy of this important guide today!

     

  • 2022 IBM i Marketplace Survey Results

    Fortra2022 marks the eighth edition of the IBM i Marketplace Survey Results. Each year, Fortra captures data on how businesses use the IBM i platform and the IT and cybersecurity initiatives it supports.

    Over the years, this survey has become a true industry benchmark, revealing to readers the trends that are shaping and driving the market and providing insight into what the future may bring for this technology.

  • Brunswick bowls a perfect 300 with LANSA!

    FortraBrunswick is the leader in bowling products, services, and industry expertise for the development and renovation of new and existing bowling centers and mixed-use recreation facilities across the entertainment industry. However, the lifeblood of Brunswick’s capital equipment business was running on a 15-year-old software application written in Visual Basic 6 (VB6) with a SQL Server back-end. The application was at the end of its life and needed to be replaced.
    With the help of Visual LANSA, they found an easy-to-use, long-term platform that enabled their team to collaborate, innovate, and integrate with existing systems and databases within a single platform.
    Read the case study to learn how they achieved success and increased the speed of development by 30% with Visual LANSA.

     

  • Progressive Web Apps: Create a Universal Experience Across All Devices

    LANSAProgressive Web Apps allow you to reach anyone, anywhere, and on any device with a single unified codebase. This means that your applications—regardless of browser, device, or platform—instantly become more reliable and consistent. They are the present and future of application development, and more and more businesses are catching on.
    Download this whitepaper and learn:

    • How PWAs support fast application development and streamline DevOps
    • How to give your business a competitive edge using PWAs
    • What makes progressive web apps so versatile, both online and offline

     

     

  • The Power of Coding in a Low-Code Solution

    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:

    • Discover the benefits of Low-code's quick application creation
    • Understand the differences in model-based and language-based Low-Code platforms
    • Explore the strengths of LANSA's Low-Code Solution to Low-Code’s biggest drawbacks

     

     

  • Why Migrate When You Can Modernize?

    LANSABusiness 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.
    In this white paper, you’ll learn how to think of these issues as opportunities rather than problems. We’ll explore motivations to migrate or modernize, their risks and considerations you should be aware of before embarking on a (migration or modernization) project.
    Lastly, we’ll discuss how modernizing IBM i applications with optimized business workflows, integration with other technologies and new mobile and web user interfaces will enable IT – and the business – to experience time-added value and much more.

     

  • UPDATED: Developer Kit: Making a Business Case for Modernization and Beyond

    Profound Logic Software, Inc.Having trouble getting management approval for modernization projects? The problem may be you're not speaking enough "business" to them.

    This Developer Kit provides you study-backed data and a ready-to-use business case template to help get your very next development project approved!

  • What to Do When Your AS/400 Talent Retires

    FortraIT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators is small.

    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:

    • Why IBM i skills depletion is a top concern
    • How leading organizations are coping
    • Where automation will make the biggest impact

     

  • Node.js on IBM i Webinar Series Pt. 2: Setting Up Your Development Tools

    Profound Logic Software, Inc.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. In Part 2, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Attend this webinar to learn:

    • Different tools to develop Node.js applications on IBM i
    • Debugging Node.js
    • The basics of Git and tools to help those new to it
    • Using NodeRun.com as a pre-built development environment

     

     

  • Expert Tips for IBM i Security: Beyond the Basics

    SB PowerTech WC GenericIn this session, IBM i security expert Robin Tatam provides a quick recap of IBM i security basics and guides you through some advanced cybersecurity techniques that can help you take data protection to the next level. Robin will cover:

    • Reducing the risk posed by special authorities
    • Establishing object-level security
    • Overseeing user actions and data access

    Don't miss this chance to take your knowledge of IBM i security beyond the basics.

     

     

  • 5 IBM i Security Quick Wins

    SB PowerTech WC GenericIn today’s threat landscape, upper management is laser-focused on cybersecurity. You need to make progress in securing your systems—and make it fast.
    There’s no shortage of actions you could take, but what tactics will actually deliver the results you need? And how can you find a security strategy that fits your budget and time constraints?
    Join top IBM i security expert Robin Tatam as he outlines the five fastest and most impactful changes you can make to strengthen IBM i security this year.
    Your system didn’t become unsecure overnight and you won’t be able to turn it around overnight either. But quick wins are possible with IBM i security, and Robin Tatam will show you how to achieve them.

  • Security Bulletin: Malware Infection Discovered on IBM i Server!

    SB PowerTech WC GenericMalicious programs can bring entire businesses to their knees—and IBM i shops are not immune. It’s critical to grasp the true impact malware can have on IBM i and the network that connects to it. Attend this webinar to gain a thorough understanding of the relationships between:

    • Viruses, native objects, and the integrated file system (IFS)
    • Power Systems and Windows-based viruses and malware
    • PC-based anti-virus scanning versus native IBM i scanning

    There are a number of ways you can minimize your exposure to viruses. IBM i security expert Sandi Moore explains the facts, including how to ensure you're fully protected and compliant with regulations such as PCI.

     

     

  • Encryption on IBM i Simplified

    SB PowerTech WC GenericDB2 Field Procedures (FieldProcs) were introduced in IBM i 7.1 and have greatly simplified encryption, often without requiring any application changes. Now you can quickly encrypt sensitive data on the IBM i including PII, PCI, PHI data in your physical files and tables.
    Watch this webinar to learn how you can quickly implement encryption on the IBM i. During the webinar, security expert Robin Tatam will show you how to:

    • Use Field Procedures to automate encryption and decryption
    • Restrict and mask field level access by user or group
    • Meet compliance requirements with effective key management and audit trails

     

  • Lessons Learned from IBM i Cyber Attacks

    SB PowerTech WC GenericDespite the many options IBM has provided to protect your systems and data, many organizations still struggle to apply appropriate security controls.
    In this webinar, you'll get insight into how the criminals accessed these systems, the fallout from these attacks, and how the incidents could have been avoided by following security best practices.

    • Learn which security gaps cyber criminals love most
    • Find out how other IBM i organizations have fallen victim
    • Get the details on policies and processes you can implement to protect your organization, even when staff works from home

    You will learn the steps you can take to avoid the mistakes made in these examples, as well as other inadequate and misconfigured settings that put businesses at risk.

     

     

  • The Power of Coding in a Low-Code Solution

    SB PowerTech WC GenericWhen 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:

    • Discover the benefits of Low-code's quick application creation
    • Understand the differences in model-based and language-based Low-Code platforms
    • Explore the strengths of LANSA's Low-Code Solution to Low-Code’s biggest drawbacks

     

     

  • Node Webinar Series Pt. 1: The World of Node.js on IBM i

    SB Profound WC GenericHave 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.
    Part 1 will teach you what Node.js is, why it's a great option for IBM i shops, and how to take advantage of the ecosystem surrounding Node.
    In addition to background information, our Director of Product Development Scott Klement will demonstrate applications that take advantage of the Node Package Manager (npm).
    Watch Now.

  • The Biggest Mistakes in IBM i Security

    SB Profound WC Generic The Biggest Mistakes in IBM i Security
    Here’s the harsh reality: cybersecurity pros have to get their jobs right every single day, while an attacker only has to succeed once to do incredible damage.
    Whether that’s thousands of exposed records, millions of dollars in fines and legal fees, or diminished share value, it’s easy to judge organizations that fall victim. IBM i enjoys an enviable reputation for security, but no system is impervious to mistakes.
    Join this webinar to learn about the biggest errors made when securing a Power Systems server.
    This knowledge is critical for ensuring integrity of your application data and preventing you from becoming the next Equifax. It’s also essential for complying with all formal regulations, including SOX, PCI, GDPR, and HIPAA
    Watch Now.

  • Comply in 5! Well, actually UNDER 5 minutes!!

    SB CYBRA PPL 5382

    TRY 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.

    Request your trial now!

  • Backup and Recovery on IBM i: Your Strategy for the Unexpected

    FortraRobot automates the routine 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:
    - Simplified backup procedures
    - Easy data encryption
    - Save media management
    - Guided restoration
    - Seamless product integration
    Make sure your data survives when catastrophe hits. Try the Robot Backup and Recovery Solution FREE for 30 days.

  • Manage IBM i Messages by Exception with Robot

    SB HelpSystems SC 5413Managing messages on your IBM i can be more than a full-time job if you have to do it manually. 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:
    - Automated message management
    - Tailored notifications and automatic escalation
    - System-wide control of your IBM i partitions
    - Two-way system notifications from your mobile device
    - Seamless product integration
    Try the Robot Message Management Solution FREE for 30 days.

  • Easiest Way to Save Money? Stop Printing IBM i Reports

    FortraRobot 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:

    - Automated report distribution
    - View online without delay
    - Browser interface to make notes
    - Custom retention capabilities
    - Seamless product integration
    Rerun another report? Never again. Try the Robot Report Management Solution FREE for 30 days.

  • Hassle-Free IBM i Operations around the Clock

    SB HelpSystems SC 5413For over 30 years, Robot has been a leader in systems management for IBM i.
    Manage your job schedule with the Robot Job Scheduling Solution. Key features include:
    - Automated batch, interactive, and cross-platform scheduling
    - Event-driven dependency processing
    - Centralized monitoring and reporting
    - Audit log and ready-to-use reports
    - Seamless product integration
    Scale your software, not your staff. Try the Robot Job Scheduling Solution FREE for 30 days.