Project

General

Profile

Instructions for installing Fedora on your computer » History » Version 2

Neil Voss, 05/25/2010 09:17 AM

1 1 Neil Voss
h1. Instructions for installing Fedora on your computer
2
3
4
h2. Why Fedora?
5
6
7 2 Neil Voss
If you have a new computer(s) for your Leginon/Appion installation, Fedora is a cutting edge system that has all the latest and greatest feature.
8
While Fedora is great for a desktop computer, it can be a hassle for a server. Fedora recommends that you upgrade the computer every 6 months and all but requires a upgrade every year. With servers you like things to remain the same for longer periods of time, this is not Fedora. Fedora always has the latest versions. If you want something more stable we recommend installing CentOS. See [[Instructions for installing CentOS on your computer]]
9 1 Neil Voss
10 2 Neil Voss
Fedora is a cutting edge distribution produced by a community of programmers that is maintained by Red Hat.
11 1 Neil Voss
12 2 Neil Voss
h2. Download the DVD iso disk of Fedora 13
13 1 Neil Voss
14 2 Neil Voss
 # DVD iso files are available at
15
 ## http://fedoraproject.org/en/get-fedora-options
16
 # In the section, Fedora 13 DVD, click on i386 for 32bit machines or x86_64 for 64bit machines
17
 # Download the 64bit 'Fedora-13-x86_64-DVD.iso' file
18
<pre>
19
wget -c http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/x86_64/iso/Fedora-13-x86_64-DVD.iso
20
</pre>
21
 # Download the 32bit 'Fedora-13-x86_64-DVD.iso' file
22
<pre>
23
wget -c http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/i386/iso/Fedora-13-i386-DVD.iso
24
</pre>
25 1 Neil Voss
26
h2. Confirm download went correctly
27
28 2 Neil Voss
perform a SHA256SUM confirmation:
29 1 Neil Voss
30
<pre>
31
sha1sum CentOS-5.4-x86_64-bin-DVD.iso
32
</pre>
33
34
The result should be the same as in the sha1sum file provided by CentOS:
35
36
* http://centos.mirrors.tds.net/pub/linux/centos/5.4/isos/x86_64/sha1sum.txt for 64bit
37
* http://centos.mirrors.tds.net/pub/linux/centos/5.4/isos/i386/sha1sum.txt for 32bit
38
39
40
41
h2. Burn ISO file to DVD disk 
42
43
Use dvdrecord in Linux to burn disk
44
45
<pre>
46
dvdrecord -v -dao gracetime=10 dev=/dev/dvd speed=16 CentOS-5.4-x86_64-bin-DVD.iso
47
</pre>
48
49
h2. Install CentOS 5.4 with default packages 
50
51
 * Setup network, root, password as desired
52
 * This install will assume that only *"Desktop - GNOME"* to be selected
53
 * More information available at [http://wiki.centos.org/Documentation CentOS Documentation]
54
55
h2. Add yourself to the sudoers file 
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
$ username ALL=(ALL)       ALL
64
</pre>
65
66
Logout and log back in with your username.
67
68
The CentOS installation is complete.
69
70
______
71
72
______
73
74
[[Download additional Software|Download additional Software >]]
75
76
______
77
78
______