Project

General

Profile

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

Neil Voss, 05/25/2010 09:20 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 3 Neil Voss
sha256sum Fedora-13-x86_64-DVD.iso
32
dab657e1475832129ea3af67fd1c25c91b60ff1acc9147fb9b62cef14193f8d2
33 1 Neil Voss
</pre>
34
35 3 Neil Voss
The result should be the same as in the sha256sum file provided by CentOS:
36 1 Neil Voss
37 3 Neil Voss
* http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/x86_64/iso/Fedora-13-x86_64-CHECKSUM for 64bit
38
* http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/i386/iso/Fedora-13-i386-CHECKSUM for 32bit
39 1 Neil Voss
40 3 Neil Voss
h2. Burn DVD iso file to DVD disk 
41 1 Neil Voss
42
Use dvdrecord in Linux to burn disk
43
44
<pre>
45 3 Neil Voss
dvdrecord -v -dao gracetime=10 dev=/dev/dvd speed=16 Fedora-13-x86_64-DVD.iso
46 1 Neil Voss
</pre>
47
48 4 Neil Voss
bq. The @/dev/dvd@ may not link to your DVD drive on my machine it was called @/dev/dvd1@. Do a @ls /dev/dvd*@ to look for alternate names
49
50 1 Neil Voss
h2. Install CentOS 5.4 with default packages 
51
52
 * Setup network, root, password as desired
53
 * This install will assume that only *"Desktop - GNOME"* to be selected
54
 * More information available at [http://wiki.centos.org/Documentation CentOS Documentation]
55
56
h2. Add yourself to the sudoers file 
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
$ username ALL=(ALL)       ALL
65
</pre>
66
67
Logout and log back in with your username.
68
69
The CentOS installation is complete.
70
71
______
72
73
______
74
75
[[Download additional Software|Download additional Software >]]
76
77
______
78
79
______