Differences between revisions 14 and 15
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
The examples below show an install on CentOS7 using the '''freesurfer-CentOS7-7.0.0-1.x86_64.rpm''' RPM package. If you are running on CentOS6, then follow the same instructions using the CentOS6 version of the package, '''freesurfer-CentOS6-7.0.0-1.x86_64.rpm''' package. The examples below show an install on CentOS7 using the '''freesurfer-CentOS7-7.2.0-1.x86_64.rpm''' RPM package. If you are running on CentOS6, then follow the same instructions using the CentOS6 version of the package, '''freesurfer-CentOS6-7.2.0-1.x86_64.rpm''' package.
Line 49: Line 49:
$ sudo yum --nogpgcheck localinstall freesurfer-CentOS7-7.0.0-1.x86_64.rpm $ sudo yum --nogpgcheck localinstall freesurfer-CentOS7-7.2.0-1.x86_64.rpm
Line 72: Line 72:
Now yum should report a freesurfer package has been installed. Note that freesurfer was installed under '''/usr/local/freesurfer/7.0.0-1''' matching the package revision yum lists installed on the system. Subsequent freesurfer rpm packages with higher revision numbers will be recognized by yum as upgrades to be installed on the system. Now yum should report a freesurfer package has been installed. Note that freesurfer was installed under '''/usr/local/freesurfer/7.2.0-1''' matching the package revision yum lists installed on the system. Subsequent freesurfer rpm packages with higher revision numbers will be recognized by yum as upgrades to be installed on the system.
Line 76: Line 76:
Setting the environment follows the standard procedure, exporting the path '''/usr/local/bin/freesurfer/7.0.0-1''' for '''FREESURFER_HOME''' (here using bash or sh). Setting the environment follows the standard procedure, exporting the path '''/usr/local/bin/freesurfer/7.2.0-1''' for '''FREESURFER_HOME''' (here using bash or sh).

CentOS 6 and 7 Freesurfer RPM install

The examples below show an install on CentOS7 using the freesurfer-CentOS7-7.2.0-1.x86_64.rpm RPM package. If you are running on CentOS6, then follow the same instructions using the CentOS6 version of the package, freesurfer-CentOS6-7.2.0-1.x86_64.rpm package.

Exploring the broad range of yum command line options is beyond the scope of this freesurfer install example. Note that while a user without sudo/root privileges won't be able to install software with yum, you can always run yum (and rpm) commands without sudo and see what is installed on the system, what packages are available from the online repos, etc.

If the yum command has not been run in a while, the first thing it will do is update the list of packages available from the online repositories it searches for on the web to provide packages to download and install. If we ask yum to tell us if freesurfer is already installed, you might see this kind of output reporting yum is updating the list of available packages from the web site repos.

$ yum list installed | grep -i freesurfer
updates
(1/2) epel/x86_64 updateinfo
(2/2) updates/7/x86_64/primary_db
...
.. <output deleted / your output will vary>
.
Determining fastest mirrors
* base: mirror.siena.edu
* epel: ewr.edge.kernel.org
...
.. <output deleted / your output will vary>
.
$

The result of the above command is nothing was printed out listing an installed freesurfer package and its version number. Or in the example below, the assumption is that no freesurfer package is currently installed on the system.

We provide a freesurfer *.rpm package for download that is currently not part of an existing Redhat, CentOS or third-party repository. Yum by default assumes a package is available from one of the online package repositories it has been configured to search. So in response to the most basic command to install a "freesurfer" package, yum will search through every repository it knows about, find nothing, and then give up.

$ sudo yum install freesurfer
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.seas.harvard.edu
 * epel: mirrors.mit.edu
 * extras: mirror.san.fastserv.com
 * rpmforge: repoforge.spinellicreations.com
 * updates: mirrors.mit.edu
..  <your output will vary>
No package freesurfer available.
Error: Nothing to do
$

The remedy is to provide command line options to tell yum: (1) the package is not signed as it would be in an online repository; (2) the freesurfer rpm package is local to the machine and should not be searched for in an online repository.

$ sudo yum --nogpgcheck localinstall freesurfer-CentOS7-7.2.0-1.x86_64.rpm

Previewing the install

The screen shots below show what the yum package manager reports needs to be installed on a specific CentOS 7.4 machine in order for freesurfer to run, i.e., in this case not too many additional packages are required. So depending upon what is already installed on your machine, you may see more or less packages need to be installed, e.g., you may already have the gcc tools installed on your system.

Typing "N" will cancel the install of all software.

CentOS7_4_install_1.png

Performing the install

Please note - if you already have freesurfer installed as /usr/local/freesurfer, e.g., then it is strongly advised you remove or rename the ./freesurfer directory to be something other than freesurfer under /usr/local. This is because the rpm installer will install freesurfer under the path with an explicit version identifier as the top level subdirectory /usr/local/freesurfer/<package version>

To perform the install answer "y" at the prompt.

The screen shots below show what the yum package manager reports has been installed on the system after the install has been done.

CentOS7_4_install_2.png

Verifying the install & Setup

Now yum should report a freesurfer package has been installed. Note that freesurfer was installed under /usr/local/freesurfer/7.2.0-1 matching the package revision yum lists installed on the system. Subsequent freesurfer rpm packages with higher revision numbers will be recognized by yum as upgrades to be installed on the system.

CentOS7_4_verify_1.png

Setting the environment follows the standard procedure, exporting the path /usr/local/bin/freesurfer/7.2.0-1 for FREESURFER_HOME (here using bash or sh).

CentOS7_4_exports.png

Finally, a simple test to see if the freeview application can load a volume.

CentOS7_4_test_freeview.png

cos67_rpm (last edited 2021-10-13 04:06:14 by buildqa)