How to Resolved Dependencies for pdftotext if Not Found

In certain condition, pdftotext is required to be installed on linux operation system. Pdftotext utility can convert Portable Document Format (PDF) files to plain text. It reads the PDF file, and writes a text file. In linux, this commonly use as the dependencies and it compulsary for some system like Gforge Community Edition and Gforge Advance Server. I just found the solution on how to resolved the dependencies issue while trying to install Gforge Advance Server. You just need to run below command.

    [root@server ~]# yum install poppler-utils
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * addons: centos.maulvi.net
     * base: centos.maulvi.net
     * epel: mirror.neu.edu.cn
     * extras: centos.maulvi.net
     * updates: ossm.utm.my
    Setting up Install Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package poppler-utils.i386 0:0.5.4-4.4.el5_6.17 set to be updated
    --> Processing Dependency: poppler = 0.5.4-4.4.el5_6.17 for package: poppler-utils
    --> Processing Dependency: libpoppler.so.1 for package: poppler-utils
    --> Running transaction check
    ---> Package poppler.i386 0:0.5.4-4.4.el5_6.17 set to be updated
    --> Finished Dependency Resolution
    
    Dependencies Resolved
    
    ==========================================================================================
     Package                Arch          Version                      Repository        Size
    ==========================================================================================
    Installing:
     poppler-utils          i386          0.5.4-4.4.el5_6.17           updates           73 k
    Installing for dependencies:
     poppler                i386          0.5.4-4.4.el5_6.17           updates          3.0 M
    
    Transaction Summary
    ==========================================================================================
    Install       2 Package(s)
    Upgrade       0 Package(s)
    
    Total download size: 3.1 M
    Is this ok [y/N]: y
    Downloading Packages:
    (1/2): poppler-utils-0.5.4-4.4.el5_6.17.i386.rpm                   |  73 kB     00:01
    (2/2): poppler-0.5.4-4.4.el5_6.17.i386.rpm                         | 3.0 MB     00:58
    ------------------------------------------------------------------------------------------
    Total                                                      52 kB/s | 3.1 MB     01:01
    Running rpm_check_debug
    Running Transaction Test
    Finished Transaction Test
    Transaction Test Succeeded
    Running Transaction
      Installing     : poppler                                                            1/2
      Installing     : poppler-utils                                                      2/2
    
    Installed:
      poppler-utils.i386 0:0.5.4-4.4.el5_6.17
    
    Dependency Installed:
      poppler.i386 0:0.5.4-4.4.el5_6.17
    
    Complete!
    

Comments

1 Comment

Leave a Reply

Your email address will not be published. Required fields are marked *