MUMBAI2009 Course:
News:
--
Fluka Release
|
9th Fluka Course, BARC, Mumbai, IndiaDates of course: 26 - 30 October, 2009 Registration Completed Requirements: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
Chapter 1:
|
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.
Chapter 2:
Computing skills (LINUX) required for the FLUKA course:
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.
The following is needed for the course:
- opening a terminal (depends on your distribution, on most systems there is an icon on the Desktop or in the taskbar of the desktop environment, or it can be found somewhere in the start menu)
- being able to work with a text editor (Emacs, nedit, gedit, kate, vim, vi, joe etc.) to create, edit and save files
Knowledge of the following Linux commands:
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:
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
on bash:
export FLUPRO=/path/to/FLUKA
To see if the variable is set correctly set one can print its content by:
echo $FLUPROThis should print /path/to/FLUKA
Last updated: 8th of November, 2008
© FLUKA Team 2000–2024