Project

General

Profile

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

Anchi Cheng, 01/27/2011 10:10 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 8 Neil Voss
You will want to restart your computer when this completes.<pre>
36
sudo reboot
37
</pre>
38 1 Neil Voss
39
h3. Install Complete list of additional packages:
40
41
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.
42
43
* *python tools*: python-tools python-devel
44
* *general applications*: subversion ImageMagick grace gnuplot python-matplotlib pstopnm (netpbm-progs)
45
* *Tilt Picker*: wxPython numpy scipy python-imaging
46
* *FindEM*: gcc-gfortran compat-gcc-34-g77
47
* *Ace 2*: gcc-objc fftw3-devel gsl-devel
48
* *Sinedon*: mysql mysql-server MySQL-python
49
* *Myamiweb*: httpd php php-mysql phpMyAdmin
50
* *Xmipp MPI*: gcc-c++ openmpi-devel libtiff-devel
51
* *MRC tools*: php-devel gd-devel re2c fftw2-devel php-gd
52 6 Neil Voss
* *UCSF Chimera imaging*: xorg-x11-server-Xvfb xorg-x11-drv-nvidia
53 1 Neil Voss
54
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:
55
56
<pre>
57
sudo yum -y install \
58
python-tools python-devel python-matplotlib \
59
subversion ImageMagick grace gnuplot \
60
wxPython numpy scipy python-imaging \
61
gcc-gfortran compat-gcc-34-g77 \
62
gcc-objc fftw3-devel gsl-devel \
63
mysql mysql-server MySQL-python \
64
httpd php php-mysql phpMyAdmin  \
65
gcc-c++ openmpi-devel libtiff-devel \
66 9 Anchi Cheng
php-devel gd-devel re2c fftw3-devel php-gd \
67 6 Neil Voss
xorg-x11-server-Xvfb netpbm-progs \
68
xorg-x11-drv-nvidia
69 1 Neil Voss
</pre>
70
71
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
72
73
<pre>
74
sudo yum -y install nvidia-x11-drv
75
</pre>
76
77
for CentOS you will have to download and install the nvidia driver from the "nvidia website":http://www.nvidia.com
78
79
h4. Clean up packages to save drive space
80
81
<pre>
82
sudo yum clean all
83
</pre>
84
85
h4. Re-index the hard drive, this will come in handy later
86
87
<pre>
88
sudo updatedb
89
</pre>
90
91
h4. Enable web and database servers on reboot
92
93
<pre>
94
sudo /sbin/chkconfig httpd on
95
sudo /sbin/chkconfig mysqld on
96
</pre>
97
98
You can further configure this with the GUI and turn off unnecessary items
99
100
<pre>
101
system-config-services
102
</pre>
103
104
h4. Reboot the computer
105
106
<pre>
107
sudo reboot
108
</pre>
109
110
______
111
112
113
[[Instructions for installing Fedora on your computer|< Instructions for installing Fedora on your computer]] | [[Complete Installation|Complete Installation ^]]
114
115
______