Project

General

Profile

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

Neil Voss, 05/25/2010 11:08 AM

1 1 Neil Voss
h1. Instructions for installing Fedora on your computer
2
3
h2. Why Fedora?
4
5 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.
6
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]]
7 1 Neil Voss
8 2 Neil Voss
Fedora is a cutting edge distribution produced by a community of programmers that is maintained by Red Hat.
9 1 Neil Voss
10 2 Neil Voss
h2. Download the DVD iso disk of Fedora 13
11 1 Neil Voss
12 2 Neil Voss
 # DVD iso files are available at
13
 ## http://fedoraproject.org/en/get-fedora-options
14
 # In the section, Fedora 13 DVD, click on i386 for 32bit machines or x86_64 for 64bit machines
15
 # Download the 64bit 'Fedora-13-x86_64-DVD.iso' file
16
<pre>
17
wget -c http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/x86_64/iso/Fedora-13-x86_64-DVD.iso
18
</pre>
19
 # Download the 32bit 'Fedora-13-x86_64-DVD.iso' file
20
<pre>
21
wget -c http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/i386/iso/Fedora-13-i386-DVD.iso
22
</pre>
23 1 Neil Voss
24
h2. Confirm download went correctly
25
26 2 Neil Voss
perform a SHA256SUM confirmation:
27 1 Neil Voss
28
<pre>
29 3 Neil Voss
sha256sum Fedora-13-x86_64-DVD.iso
30
dab657e1475832129ea3af67fd1c25c91b60ff1acc9147fb9b62cef14193f8d2
31 1 Neil Voss
</pre>
32
33 6 Neil Voss
The result should be the same as in the sha256sum file provided by Fedora:
34 1 Neil Voss
35 3 Neil Voss
* http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/x86_64/iso/Fedora-13-x86_64-CHECKSUM for 64bit
36
* http://download.fedoraproject.org/pub/fedora/linux/releases/13/Fedora/i386/iso/Fedora-13-i386-CHECKSUM for 32bit
37 1 Neil Voss
38 3 Neil Voss
h2. Burn DVD iso file to DVD disk 
39 1 Neil Voss
40
Use dvdrecord in Linux to burn disk
41
42
<pre>
43 3 Neil Voss
dvdrecord -v -dao gracetime=10 dev=/dev/dvd speed=16 Fedora-13-x86_64-DVD.iso
44 1 Neil Voss
</pre>
45
46 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
47
48 5 Neil Voss
h2. Install Fedora 13 with default packages 
49 1 Neil Voss
50
 * Setup network, root, password as desired
51 10 Neil Voss
 * This install will assume that only *"Graphical Desktop"* to be selected
52 5 Neil Voss
 * More information available at [http://docs.fedoraproject.org/en-US/Fedora/13/html/Installation_Guide/index.html Fedora Install Documentation]
53 1 Neil Voss
54 9 Neil Voss
bq. Note: In one case we had to use the option "Install with basic video driver", because after doing the normal install the screen went blank and it was not usable.
55
56 1 Neil Voss
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 13 Neil Voss
Look for the line: <pre>root	ALL=(ALL) 	ALL</pre>Add this line below the root version:<pre>
61
username	ALL=(ALL) 	ALL
62 1 Neil Voss
</pre>
63
64
Logout and log back in with your username.
65
66 10 Neil Voss
Your Fedora installation is complete.
67 1 Neil Voss
68
______
69
70 8 Neil Voss
[[Download additional Software (Fedora Specific)|Download additional Software (Fedora Specific) >]]
71 1 Neil Voss
72
______