Iraf, x11iraf and ds9 in Ubuntu 32 bits
Hi! For those who don't know (probably the most) iraf is a software used by astronomers to reduce and process data (actually it has many more uses but this is the one I use most...). So probably, if you came across this by accident, you probably don't need a program that does this...
For those of you who NEED this, and can't get to install it, here's the howto
:
First of all, in case everything fails, you can use the installation guide that can be downloaded from here.
Now, prerequisites:
- Universe repository enabled. In case not, and if you don't know what this means, check many of the howtos on how to do this
- Working internet connection
- you must be a sudoer (meaning this, that you can use sudo)
So let's begin installing this things
IRAF
The version of iraf that we will install is v214. This one, unlike version v212 comes with the ecl terminal wich allows autocompletion and using the up key to check previous commands.
Okay, so, to begin with, we will install the tcsh package (that's in the universe repository)
sudo apt-get install tcsh
Next, we make a folder were all of the iraf downloads will go (in order to keep things neat). Please keed yourself in the same terminal:
mkdir ~/iraf
cd ~/iraf
Then, we download the iraf files. These are:
- as.pcix.gen.gz, the architecture independent files
- ib.lnux.x86.gz, the linux dependent base files
- nb.lnux.x86.gz, the linux dependent noao files
In the download directions, the v214 folder could be replaced by a more recent version in case it exists:
wget http://iraf.noao.edu/iraf/ftp/iraf/v214/PCIX/as.pcix.gen.gz
wget http://iraf.noao.edu/iraf/ftp/iraf/v214/PCIX/ib.lnux.x86.gz
wget http://iraf.noao.edu/iraf/ftp/iraf/v214/PCIX/nb.lnux.x86.gz
Next, I make iraf's directory tree:
sudo mkdir -p /iraf/iraf/local
Next i add the iraf user (this will ask you many things. The only important one is the password, the rest could be left in blank. The user is added at the admin group so he can sudo when installing iraf):
sudo adduser iraf --home /iraf/iraf/local --shell /bin/csh --ingroup admin
And I move the downloaded files to the /iraf/iraf directory, and grant all permissions on the directories to the iraf user:
sudo mv ~/iraf/* /iraf/iraf
sudo chown iraf -R /iraf
Now I login as the iraf user:
su iraf
We make the directories were the iraf binaries will be extracted:
mkdir -p /iraf/{,irafbin/{bin.linux,noao.bin.linux}}We extract the iraf files:
cd /iraf/iraf
cat /iraf/iraf/as.pcix.gen.gz | zcat | tar -xpf -
cd /iraf/iraf/bin.linux
cat /iraf/iraf/ib.lnux.x86.gz | zcat | tar -xpf -
cd /iraf/iraf/noao/bin.linux
cat /iraf/iraf/nb.lnux.x86.gz | zcat | tar -xpf -
And we remove the unneccesary files:
rm /iraf/iraf/as.pcix.gen.gz
rm /iraf/iraf/ib.lnux.x86.gz
rm /iraf/iraf/nb.lnux.x86.gz
And we prepare things for the installation (from this point it is essential to keep the same terminal open until the end of the installation):
setenv iraf /iraf/iraf
cd $iraf/unix/hlib/
source irafuser.csh
We first test the install, to do this we run (from the same terminal of the step before):
sudo ./install -n
Prompting yes to everything should be enough. In any case, the proccess can get stuck in a loop where it asks if it should configure iraf-networking, fail at trying to configure it, and asking again. to solve this simply say no at this point.
If the installation test went fine, you can install everithing by omiting the -n argument:
sudo ./install
Having installed iraf succesfully, you can exit from the iraf user's shell bi doing (closing the terminal will work too
):
exit
x11iraf
Next we install x11iraf wich is needed for irafs graphical suport. The version to be installed is 1.3.1, but this could be replaced for a newer one with no problem only by changing the download.
We download x11iraf files to our downloads folder:
cd ~/iraf
wget http://iraf.noao.edu/iraf/ftp/iraf/x11iraf/x11iraf-v1.3.1-bin.linux.tar.gz
We extract it and install it:
cat x11iraf-v1.3.1-bin.linux.tar.gz | gunzip | tar -xf -
sudo ./install
ds9
The proccess is simple, download the file, extract it, and copy and give write permission to the binary. We install with this version 5.2 of ds9, but just as in the other steps, this can easily be updated by changing the download address:
cd ~/iraf
wget http://hea-www.harvard.edu/saord/download/ds9/linux/ds9.linux.5.2.tar.gz
tar -zxf ds9.linux.5.2.tar.gz
sudo mv ds9 /usr/local/bin
sudo chmod +x usr/local/bin/ds9
Start-up script
For convenience, we will make a start-up script (created by michael hutchinson http://mjhutchinson.com/) that will open an xgterm with an ecl promt and ds9. We use gedit or this, but any text editor (for example kate in kde or vim) could be used:
sudo gedit /usr/local/bin/irafshell
And next we add this to the file:
#!/bin/bash
PID=‘pidof ds9‘
if [ ! $PID ]; then
ds9 &
fi
pushd ~/iraf > /dev/null
xgterm -iconic -geometry 80x24 -sb -title "IRAF" -bg "lemon chiffon" -fg "black" -e "ecl" &
popd > /dev/null
With this, iraf can be run just by running the command irafshell.
Running iraf
First, I clean the ~/iraf folder (THIS COMMAND WILL DELETE EVERYTHING ON THE FOLDER):
rm -rf ~/iraf/*
to run iraf, we create the login.cl and use irafshell command
cd ~/iraf
mkiraf
irafshell
and voila! suggestions, corrections, etc... are welcome...
see you later!

