The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    DICOM Viewer to work on my laptop

    Discussion in 'Linux Compatibility and Software' started by yusufhakim, Aug 9, 2010.

  1. yusufhakim

    yusufhakim Newbie

    Reputations:
    0
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    5
    Searching for a DICOM Viewer software to work on my laptop as I searched the web and never find something can work...

    Help Please
     
  2. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    I found kradview and compiled it in a few seconds. You'll need qt and kde development libraries and headers, on a Debian-based distro like Ubuntu:
    Code:
    sudo apt-get install build-essential qt3-apps-dev kdelibs4-dev
    Then get the source and build:
    Code:
    wget http://www.orcero.org/irbis/kradview/kradview-1.1.0.tgz
    tar zxvf kradview-1.1.0.tgz
    cd kradview-1.1.0
    ./configure
    make
    
    If you don't get any critical errors, try running the app:
    Code:
    src/kradview
    If that works, install it:
    Code:
    sudo make install
    Then you can run it by simply:
    Code:
    kradview
    If you get any errors post and someone will help. Good luck. :)