All material copyright © 2000-2011, FMRIB Analysis Group & MGH, Boston.

People with no previous experience of UNIX would benefit greatly from spending a few hours working through at least the first 5 sections of A Basic UNIX Tutorial.
The data for the course is divided into 5 parts due to the size of the data and can be downloaded using the links below, or using wget [Linux] or curl [Mac OS X]. If you are working at the FMRIB Centre then please see these instructions for information on following the course inside FMRIB.
Once you have downloaded the files they need to be uncompressed before you can begin the course. To do this, open a terminal, change into the folder where you downloaded the course files to and run the following commands:
tar zxf fsl_course_data1.tar.gz; tar zxf fsl_course_data2.tar.gz
tar zxf fsl_course_data3.tar.gz; tar zxf fsl_course_data4.tar.gz
tar zxf fsl_course_data5.tar.gz
NB If you downloaded the files using Safari on Mac OS X, then they may already have been uncompressed, ie missing the .gz extension. In this case, change the tar commands above to 'tar xf'.
All material copyright © 2006-2011 held by talk/practical authors
As the course data files are large, Linux users may find that using the wget command to download the course data files is more reliable. In a terminal, change to the folder you wish to download the data to and issue the following commands:
wget -c http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data1.tar.gz
wget -c http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data2.tar.gz
wget -c http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data3.tar.gz
wget -c http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data4.tar.gz
wget -c http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data5.tar.gz
If, for some reason your wget downloads are interrupted, you can restart any incomplete downloads by running that wget command again.
As the course data files are large, Mac users may find that using the curl command to download the course data files is more reliable. In a terminal, change to the folder you wish to download the data to and issue the following commands:
curl -# -O -C - http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data1.tar.gz
curl -# -O -C - http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data2.tar.gz
curl -# -O -C - http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data3.tar.gz
curl -# -O -C - http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data4.tar.gz
curl -# -O -C - http://www.fmrib.ox.ac.uk/fslcourse/fsl_course_data5.tar.gz
If, for some reason your curl downloads are interrupted, you can restart any incomplete downloads by running that curl command again.