The error given displays:
Rewinding /dev/rmt0 ... Placing boot image on tape ... bosboot: Boot image is 3105 512 byte blocks. Placing install image on tape ... /usr/sbin/mkboottape.sh[234]: /usr/sbin/mkinsttape_sb: permission denied Error creating install images. Check for available space in /etc. sysback: Unable to create bootable tape
The error occurs because the script is not readable. This is because the script is built in /tmp with the suid bit enabled. When /tmp does not have the sticky bit set, suid scripts are automatically made non-executable. This is an AIX feature. This can be resolved by correcting the permissions on /tmp or by modifying the Sysback scripts to handle this problem automatically.
      chmod 1777 /tmp
      sysback -Bf rmt0
If the permissions for the /tmp directory need to be other than the defaults for site-specific reasons, follow these steps to resolve the error.
 # Put the bos install files on the tape
 echo
 msg 200 'Placing install image on tape ..'
 if [ ! -x $instprog_sb ]
    then chmod +x $instprog_sb
 fi
to
# Put the bos install files on the tape
 echo
 msg 200 'Placing install image on tape ..'
 #if [ ! -x $instprog_sb ]
 #   then
    chmod +rx $instprog_sb
 #fi
sysback -Bf rmt0