May 20
Finding symbolic links in linux
Linux No Comments »I always have to use the man page of find to remember this — hopefully writing it down will help. Here is how you find all of the symbolic links in a linux path:
find / -type l
I always have to use the man page of find to remember this — hopefully writing it down will help. Here is how you find all of the symbolic links in a linux path:
find / -type l
Today I ran across a project need for pdftk (AccessPDF) for CentOS5. Adding pdftk to CentOS5 was more of struggle than I would have guessed because it was not available in most of the repos I normally use. Google did not yield any pre-build RPM files for pdftk for CentOS5 so I built them for both 32bit and 64bit.
You can access it here pdftk-112-1i386.rpm (for CentOS5 32bit) and here pdftk-112-1×86_64.rpm (for CentOS5 64bit).
Recent Comments