Wiki

Clone wiki

csview / Home

Welcome to the CSView wiki!

Installation of CSView on Linux

The first step is to download JAR file from Downloads section. You can extract it for example into /opt/csview.

Then, create a shell script, eg. using vim /opt/csview/csview.sh and put this in:

#!/bin/bash
java -jar /opt/csview/csview-1.2.0-linux-gtk.jar "$@"

Next step is to make the script runnable by chmod +x /opt/csview/csview.sh

And last step is to register the script as a program by making a link: ln -s /opt/csview/csview.sh /usr/bin/csview

Now you can run CSView from terminal just by typing csview.

Updated