Results 1 to 9 of 9

Thread: HOWTO: IDL Installation

Threaded View

  1. #1
    Join Date
    Mar 2006
    Location
    Halifax, Canada
    Beans
    58
    Distro
    Kubuntu 7.10 Gutsy Gibbon

    HOWTO: IDL Installation

    I recently purchased the IDL Student Edition data analysis software for my graduate physics studies. The software is good for scientific image manipulation and analysis, and is commonly used by astronomers and medical physicists, among others.

    The software is officially supported only for RedHat Linux, but I was able to get it to run on Ubuntu Edgy using the following procedure:

    1. Install the Corn shell.
    The default terminal shell in Ubuntu is called "Bash" (Bourne Again Shell). The installation script for IDL, however, is written for "Csh" (the Corn Shell). Install this using apt-get.
    Code:
    sudo apt-get install csh
    2. Mount the installation media.
    Just to be on the safe side, I unmounted the disk first, because Ubuntu typically automounts cdrom media, and you want to make sure the permissions are right.
    Code:
    sudo umount /media/cdrom0/ 
    sudo mount -o ro -t iso9660 /dev/cdrom /media/cdrom0
    (your devices and mount points might differ from mine. Name them accordingly)

    3. Once the disk is mounted, start csh from a terminal using sudo.
    Code:
    sudo csh
    4. You will now be running the installation script. On my machine, this command looks like this:
    Code:
    /media/cdrom0/xinstall.sh
    5. The installation window pops up, and you have to answer a bunch of questions. When it asks you if you want it to create the symbolic links, tell it "yes".

    6. You have IDL installed! Start it by issuing "idlde" from the command line.
    Last edited by John.Michael.Kane; October 31st, 2006 at 07:21 PM. Reason: Thread moved. Please Post howto's in the proper section.
    Laptop: AMD64 Turion, 80GB HD, 512 MB RAM, bcm4318 wireless. Desktop: 3.0 GHz Intel Core 2 Duo, 2 GB RAM, Zotac GeForce 9600GT Pro

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •