Project

General

Profile

Centos installation shared » History » Version 1

Amber Herold, 04/25/2012 10:50 AM

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