| 1 | <?xml version='1.0' encoding="UTF-8"?> |
1 | <?xml version='1.0' encoding="UTF-8"?> |
| 2 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml,v 1.34 2005/04/16 20:22:02 swift Exp $ --> |
2 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-x86-quickinstall.xml,v 1.35 2005/05/23 17:01:12 swift Exp $ --> |
| 3 | |
3 | |
| 4 | <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
4 | <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
| 5 | |
5 | |
| 6 | <guide link="/doc/en/gentoo-x86-quickinstall.xml"> |
6 | <guide link="/doc/en/gentoo-x86-quickinstall.xml"> |
| 7 | <title>Gentoo Linux x86 Quick Install Guide</title> |
7 | <title>Gentoo Linux x86 Quick Install Guide</title> |
| … | |
… | |
| 16 | installing Gentoo Linux if they want to follow this guide. |
16 | installing Gentoo Linux if they want to follow this guide. |
| 17 | </abstract> |
17 | </abstract> |
| 18 | |
18 | |
| 19 | <license/> |
19 | <license/> |
| 20 | |
20 | |
| 21 | <version>1.27</version> |
21 | <version>1.28</version> |
| 22 | <date>2005-04-16</date> |
22 | <date>2005-05-23</date> |
| 23 | |
23 | |
| 24 | <chapter> |
24 | <chapter> |
| 25 | <title>Quick Install Guide</title> |
25 | <title>Quick Install Guide</title> |
| 26 | <section> |
26 | <section> |
| 27 | <body> |
27 | <body> |
| … | |
… | |
| 146 | </p> |
146 | </p> |
| 147 | |
147 | |
| 148 | <pre caption="Installing the Kernel"> |
148 | <pre caption="Installing the Kernel"> |
| 149 | (Install the kernel sources) # <i>emerge <comment><kernel-package-here></comment></i> |
149 | (Install the kernel sources) # <i>emerge <comment><kernel-package-here></comment></i> |
| 150 | (Configure your kernel using genkernel...) |
150 | (Configure your kernel using genkernel...) |
| 151 | # <i>emerge genkernel; genkernel --menuconfig all</i> |
151 | # <i>emerge genkernel; genkernel --udev --menuconfig all</i> |
| 152 | (<comment>or</comment> (1) manually build your kernel) |
152 | (<comment>or</comment> (1) manually build your kernel) |
| 153 | # <i>cd /usr/src/linux; make menuconfig;</i> |
153 | # <i>cd /usr/src/linux; make menuconfig;</i> |
| 154 | ( (2) Include VM fs, /proc fs) |
154 | ( (2) Include VM fs, /proc fs) |
| 155 | ( (3) Compile your kernel) |
155 | ( (3) Compile your kernel) |
| 156 | (for a 2.6 kernel) # <i>make && make modules_install</i> |
156 | (for a 2.6 kernel) # <i>make && make modules_install</i> |
| … | |
… | |
| 238 | splashimage=(hd0,0)/grub/splash.xpm.gz |
238 | splashimage=(hd0,0)/grub/splash.xpm.gz |
| 239 | |
239 | |
| 240 | title=Gentoo Linux |
240 | title=Gentoo Linux |
| 241 | root (hd0,0) |
241 | root (hd0,0) |
| 242 | <comment># genkernel users:</comment> |
242 | <comment># genkernel users:</comment> |
| 243 | kernel /kernel-<comment><kernel version></comment> root=/dev/ram0 init=/linuxrc real_root=/dev/hda3 ramdisk=8192 |
243 | kernel /kernel-<comment><kernel version></comment> root=/dev/ram0 init=/linuxrc real_root=/dev/hda3 ramdisk=8192 udev |
| 244 | initrd /initrd-<comment><kernel version></comment> |
244 | initrd /initrd-<comment><kernel version></comment> |
| 245 | <comment># non-genkernel users:</comment> |
245 | <comment># non-genkernel users:</comment> |
| 246 | kernel /kernel-<comment><kernel version></comment> root=/dev/hda3 |
246 | kernel /kernel-<comment><kernel version></comment> root=/dev/hda3 udev |
| 247 | </pre> |
247 | </pre> |
| 248 | |
248 | |
| 249 | <pre caption="Install and configure LILO"> |
249 | <pre caption="Install and configure LILO"> |
| 250 | # <i>emerge lilo</i> |
250 | # <i>emerge lilo</i> |
| 251 | # <i>nano -w /etc/lilo.conf</i> |
251 | # <i>nano -w /etc/lilo.conf</i> |
| … | |
… | |
| 256 | |
256 | |
| 257 | image=/boot/kernel-<comment><kernel version></comment> |
257 | image=/boot/kernel-<comment><kernel version></comment> |
| 258 | label=gentoo |
258 | label=gentoo |
| 259 | read-only |
259 | read-only |
| 260 | <comment># genkernel users:</comment> |
260 | <comment># genkernel users:</comment> |
| 261 | append="init=/linuxrc real_root=/dev/hda3 ramdisk=8192" |
261 | append="init=/linuxrc real_root=/dev/hda3 ramdisk=8192 udev" |
| 262 | root=/dev/ram0 |
262 | root=/dev/ram0 |
| 263 | initrd=/boot/initrd-<comment><kernel version></comment> |
263 | initrd=/boot/initrd-<comment><kernel version></comment> |
| 264 | <comment># non-genkernel users:</comment> |
264 | <comment># non-genkernel users:</comment> |
|
|
265 | append="udev" |
| 265 | root=/dev/hda3 |
266 | root=/dev/hda3 |
| 266 | |
267 | |
| 267 | # <i>/sbin/lilo</i> |
268 | # <i>/sbin/lilo</i> |
| 268 | </pre> |
269 | </pre> |
| 269 | |
270 | |