Project

General

Profile

Centos installation shared » History » Version 3

Amber Herold, 11/20/2013 10:31 AM

1 1 Amber Herold
h2. Why CentOS?
2
3
If you have a new computer(s) for your Leginon/Appion installation, we recommend installing CentOS because it is considered to be more stable than other varieties of Linux.
4
5
CentOS is the same as Red Hat Enterprise Linux (RHEL), except that it is free and supported by the community.
6
7
We have most experience in the installation on CentOS and this installation guide has specific instruction for the process.
8
9
see [[Select_Linux_distribution_to_use|Linux distribution recommendation]] for more.
10
11 2 Amber Herold
h2. Download the ISO disk of CentOS 
12 1 Amber Herold
13 2 Amber Herold
*Latest version tested at NRAMM:* CentOS 5.8 for Leginon/Appion 2.2, CentOS 6.3 for Leginon/Appion 2.2-redux and trunk
14 1 Amber Herold
15 2 Amber Herold
*Note:* All formally released versions of Appion (versions 1.x and 2.x) run on CentOS 5.x. Also available is 2.2-redux, which has the same features as 2.2, but runs on CentOS 6.x. Appion developers, please note that the development branch of Appion is targeting CentOS 6.x and Appion 3.0 will run on CentOS 6.x.  
16 1 Amber Herold
17
 # ISO files are available at
18
 ## http://wiki.centos.org/Download
19
 ## http://mirrors.kernel.org/centos/
20
 # Click on i386 for 32bit machines or x86_64 for 64bit machines
21 2 Amber Herold
 # Pick a mirror and download the appropriate file such as 'CentOS-5.8-i386-bin-DVD-1of2.iso ' 
22 1 Amber Herold
23
h2. Confirm download went correctly
24
25
Perform a SHA1SUM confirmation:
26
27
<pre>
28
sha1sum CentOS-5.8-i386-bin-DVD-1of2.iso
29
</pre>
30
31
The result should be the same as in the sha1sum file provided by CentOS. This is found at the same location you downloaded the .iso file.
32
For example:
33
34
* http://centos.mirrors.tds.net/pub/linux/centos/5.4/isos/x86_64/sha1sum.txt for 64bit
35
* http://centos.mirrors.tds.net/pub/linux/centos/5.4/isos/i386/sha1sum.txt for 32bit
36
37
38
39
h2. Burn ISO file to DVD disk 
40
41
Use dvdrecord in Linux to burn disk.
42
43
<pre>
44
dvdrecord -v -dao gracetime=10 dev=/dev/dvd speed=16 CentOS-5.8-i386-bin-DVD-1of2.iso 
45
</pre>
46
47
h2. Install CentOS with default packages 
48
49
 * Setup network, root, password as desired
50 3 Amber Herold
 * This installation guide assumes that *"Software Development Workstation"* is selected as the installation type
51 1 Amber Herold
 * More information available at [http://wiki.centos.org/Documentation CentOS Documentation]
52
53
h2. Add yourself to the sudoers file 
54
55
*Note:* This step is optional, however you will need root access to complete the Appion Installation.
56
57
Make sure you have root permission.
58
Open the file in an editor. ex. vi /etc/sudoers
59
Look for the line: root ALL=(ALL) ALL.
60
Add this line below the root version:
61
62
<pre>
63
your_username ALL=(ALL)       ALL
64
</pre>
65
66
Logout and log back in with your username.
67
68
The CentOS installation is complete.