Project

General

Profile

Download additional Software (Fedora Specific) » History » Version 7

Neil Voss, 05/25/2010 11:47 AM

1 1 Neil Voss
h1. Download additional Software (Fedora Specific)
2
3
h2. Install the additional package repositories 
4
5 2 Neil Voss
Unlike RHEL/CentOS, Fedora comes with an Extras repository by default that contains all of the open source software needed by Appion/Leginon.
6 1 Neil Voss
7 2 Neil Voss
That said, there are several additional Fedora repositories that you can install. These repositories provide additional packages that are not allowed in the default Fedora package list, such as patented software (MP3 and Movie players), closed source applications (Nvidia video driver, Flash plugin, Adobe acrobat reader). But some repositories install packages over other packages, which can cause problems and conflicts (ATrpms is especially bad at this), so avoid these repositories. So, we recommend only installing RPM Fusion.
8 1 Neil Voss
9
h3. RPM Fusion (optional)
10
11
* http://rpmfusion.org/
12 3 Neil Voss
* good for mp3, movies, the nvidia driver and other patent limited software
13 1 Neil Voss
14
Download repository rpms and install
15
16
<pre>
17 2 Neil Voss
sudo rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
18
sudo rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
19 1 Neil Voss
</pre>
20
21
h2. Update current packages 
22
23 4 Neil Voss
Update the updater to make life easier
24 1 Neil Voss
25
<pre>
26
sudo yum -y update yum
27
</pre>
28
29
h3. Update all packages
30
31
<pre>
32
sudo yum -y update
33
</pre>
34
35
You will want to restart your computer when this completes.
36
37
h3. Install Complete list of additional packages:
38
39
General instructions for installation and configuration of some of these packages (such as mysql) are found later in this manual. It may be faster to install them now as a group rather than individually, but it is not necessary.
40
41
* *python tools*: python-tools python-devel
42
* *general applications*: subversion ImageMagick grace gnuplot python-matplotlib pstopnm (netpbm-progs)
43
* *Tilt Picker*: wxPython numpy scipy python-imaging
44
* *FindEM*: gcc-gfortran compat-gcc-34-g77
45
* *Ace 2*: gcc-objc fftw3-devel gsl-devel
46
* *Sinedon*: mysql mysql-server MySQL-python
47
* *Myamiweb*: httpd php php-mysql phpMyAdmin
48
* *Xmipp MPI*: gcc-c++ openmpi-devel libtiff-devel
49
* *MRC tools*: php-devel gd-devel re2c fftw2-devel php-gd
50 6 Neil Voss
* *UCSF Chimera imaging*: xorg-x11-server-Xvfb xorg-x11-drv-nvidia
51 1 Neil Voss
52
If you are using an RPM based system (e.g., SuSE, Mandriva, CentOS, or Fedora) "this website":http://rpm.pbone.net/ is good for determining the exact package name that you need. For CentOS 5, just type:
53
54
<pre>
55
sudo yum -y install \
56
python-tools python-devel python-matplotlib \
57
subversion ImageMagick grace gnuplot \
58
wxPython numpy scipy python-imaging \
59
gcc-gfortran compat-gcc-34-g77 \
60
gcc-objc fftw3-devel gsl-devel \
61
mysql mysql-server MySQL-python \
62
httpd php php-mysql phpMyAdmin  \
63
gcc-c++ openmpi-devel libtiff-devel \
64
php-devel gd-devel re2c fftw2-devel php-gd \
65 6 Neil Voss
xorg-x11-server-Xvfb netpbm-progs \
66
xorg-x11-drv-nvidia
67 1 Neil Voss
</pre>
68
69
If you have an nVidia video card and setup RPM fusion, install the nVidia binary, will speed things up especially for UCSF Chimera. This command works on Fedora
70
71
<pre>
72
sudo yum -y install nvidia-x11-drv
73
</pre>
74
75
for CentOS you will have to download and install the nvidia driver from the "nvidia website":http://www.nvidia.com
76
77
h4. Clean up packages to save drive space
78
79
<pre>
80
sudo yum clean all
81
</pre>
82
83
h4. Re-index the hard drive, this will come in handy later
84
85
<pre>
86
sudo updatedb
87
</pre>
88
89
h4. Enable web and database servers on reboot
90
91
<pre>
92
sudo /sbin/chkconfig httpd on
93
sudo /sbin/chkconfig mysqld on
94
</pre>
95
96
You can further configure this with the GUI and turn off unnecessary items
97
98
<pre>
99
system-config-services
100
</pre>
101
102
h4. Reboot the computer
103
104
<pre>
105
sudo reboot
106
</pre>
107
108
______
109
110
111
[[Instructions for installing Fedora on your computer|< Instructions for installing Fedora on your computer]] | [[Complete Installation|Complete Installation ^]]
112
113
______