FLUKA Course Requirements -------------------------------------------------------- UPDATED===08.11.2008 TITLE===Course requirements TYPE===course --------------------------------------------------------
Prior to the course we encourage you
having a certain 'basic' knowledge of Linux. Below you'll find a first
selection of useful/needed commands and for those of you still feeling
a bit uneasy with the use of Linux, we kindly ask you to have a closer
look, as well as possibly follow related Linux tutorials which are
available on the network: Linux tutorial
Furthermore, those of you bringing their own laptop are kindly
requested to verify the proper functioning of FLUKA & FLAIR, at
least in terms of software requirements (gcc, Python, gnuplot, etc...).
For the moment FLUKA does not support Windows and Mac, thus even though one could envisage running through X-window connections (such as Exceed, Putty, VNC,...) we do not encourage doing so for the course. Course participants intending to use their own laptop need a working LINUX system installed. We encourage everybody to check if their LINUX system contains all elements listed below, as well as their correct functioning:
required package | version required |
how to verify? (type in terminal) |
FORTRAN compiler g77/gcc | 3.0 or higher |
g77 -v |
Python (with Tkinter and Tk/Tcl) |
Python: 2.3 or higher Tk/Tcl: 8.3 or higher |
Python:python -V Tkinter: type: pythonin terminal and then type: import TkinterIf you get error messages you don't have Tkinter installed. Type Ctrl-Dto exit the python interpreter. |
gnuplot |
4.0 or higher (4.2 or higher recommended) |
Type: gnuplot -Von the command line. This will print the gnuplot version. |
PDF reader | Anything which reads PDF files (Acrobat Reader, xpfd, kpdf etc.) |
If your computer does not fulfill all the requirements above please ask your local system administrator for help or contact us in advance.
In the course LINUX will be used as operating system and we strongly encourage that you are familiar with the main basic shell commands - ideally already before the course.
command | meaning | syntax |
cat | list the contents of short files to the screen |
cat |
cd | change the current working directory |
cdstarting from root directory: cd /homemove to parent directory: cd ..move to user directory: cd ~ |
cp | copy the file; will overwrite destination if exists |
cpprompt before overwrite: cp -icopy file to current directory: cpcopy whole directory and all its contents: cp -r |
grep | search for a string in file(s) |
grepsearch recursively in whole directory: grep -rexample: grep "fluka" report.txt |
less | displays the contents of the file (user can scroll up/down) |
less |
ls | list files |
lslist all files with a lot of info: ls -al |
man | get detailed information how to use particular command; press SHIFT+Z twice to exit |
man |
mkdir | create a directory |
mkdir |
mv | move or rename file |
mv |
pwd | show the name of the current working directory | |
rm | remove command |
removes a file:
rmremoves all files in current directory except subdirs: rm *removes directory with all its contents: rm -r |
rmdir | remove dir if empty |
rmdir |
tar | tool for (de)compress file(s) |
example:
tar -xvf archive.tar tar -xzf archive.tar.gzto create an archive from directory: tar -czf archive.tar.gz |
touch | create file |
touch |
Environment
variables are 'placeholders' used in the shell holding 'strings'. In
this course we will use them to set the variable FLUPRO which defines
the path to the directory where FLUKA is installed. Depending on the
shell used (bash, tcsh ...) one has to use different commands setenv or
export. To access the name of the variable one has to put a $ in front
of the name, $FLUPRO in this case. An example:
on tcsh:
setenv FLUPRO /path/to/FLUKA
export FLUPRO /path/to/FLUKA
echo $FLUPROThis should print /path/to/FLUKA