I am a brand-new Fedora user and really like the quality and refinement of the OS. But it is missing a couple apps (mat2 & pdftk) that I use a lot (I am coming to Fedora from Debian). Can anyone suggest some equivalent apps that will perform the same basic functions?
pdftk was retired from Fedora. I can’t see why, but usually it’s because the maintainer didn’t want to look after it anymore or it didn’t build anymore, or if it was no longer actively developed:
It’s been a while, but if you are still looking for an answer maybe I could mention I use exiv2 for that purpose. As an example, here is a simple script that will remove geographical and time information from an image.
#! /usr/bin/exiv2 -m
del Exif.Image.GPSTag
del Exif.GPSInfo.GPSVersionID
del Exif.GPSInfo.GPSLatitudeRef
del Exif.GPSInfo.GPSLatitude
del Exif.GPSInfo.GPSLongitudeRef
del Exif.GPSInfo.GPSLongitude
del Exif.GPSInfo.GPSAltitudeRef
del Exif.GPSInfo.GPSAltitude
del Exif.GPSInfo.GPSTimeStamp
del Exif.GPSInfo.GPSStatus
del Exif.GPSInfo.GPSMapDatum
del Exif.GPSInfo.GPSDateStamp