Gentoo Archives: gentoo-dev

From: Achim Gottinger <achim@××××××××.muc>
To: gentoo-dev@g.o
Subject: [gentoo-dev] Fw: Gentoo Linux 1.0_rc5 released
Date: Wed, 27 Jun 2001 02:35:57
Message-Id: 20010627105909.38fabe3a.achim@server.kentundo.muc
1 Begin forwarded message:
2
3 Date: Wed, 27 Jun 2001 01:39:50 -0600
4 From: "Daniel Robbins" <drobbins@g.o>
5 To: "achim@××××××××.de" <achim@××××××××.de>
6 Subject: Gentoo Linux 1.0_rc5 released
7
8
9 Hi All...
10
11 Well, on 26 Jun 2001 23:46 PST, Gentoo Linux 1.0_rc5 was finally released!
12 Here are preliminary install instructions for developers only; right now, we
13 want developers to test the 1.0_rc5 install process. Once everything's looking
14 OK, we'll announce on freshmeat.net, etc... but only after I've updated the Web
15 site and docs. OK, here are the install instructions:
16
17 First, head over to:
18 http://www.ibiblio.org/gentoo/releases/1.0_rc5/isos/
19
20 You will see two bootable iso images. One is 42Mb, and contains a ix86 build
21 image only. You can use this system to build a specially-optimized Gentoo
22 Linux system from scratch. The second is 618Mb, and contains a huge amount of
23 i686-specific binaries. To use this CD, you'll need a system with a P6 or
24 P6-compatible core, such as a Pentium Pro/II/III/4 or Athlon. Also, a note for
25 SCSI users: this new boot CD will boot from nearly any modern IDE CD-ROM, and
26 nearly any modern SCSI CD-ROM, and includes support for all Adaptec, Buslogic,
27 Initio, NCR, Symbios, Tekram controllers (and more!).
28
29 OK, here's how to install the gentoo-i686-exclusive-bin-1.0_rc5.iso.
30
31 1. Download and burn the ISO image.
32
33 2. boot your system with the CD in the drive :)
34
35 3. at the login: prompt, type "root" and hit enter.
36
37 4. at this point, you should create your partitions, LVM logical volumes or
38 software RAID volumes, as desired. LVM is supported, and we will have
39 instructions on how to create an LVM initrd soon. Until then, the LVM
40 option is only for the Sistina guys and those who are really LVM-saavy :)
41 fdisk and cfdisk are at your disposal.
42
43 5. mount your root partition to /mnt/gentoo and your boot partition to
44 /mnt/gentoo/boot (create this dir first). If you are setting up Gentoo
45 Linux with a separate /usr or /var, these would get mounted to
46 /mnt/gentoo/usr and /mnt/gentoo/var, respectively.
47
48 IMPORTANT NOTE: if your *boot* partition is reiserfs, be sure to mount it
49 with the "-o notail" option so GRUB gets properly installed. Make sure
50 that "notail" ends up in your new /etc/fstab boot partition entry, too.
51
52 6. Type:
53 # export ROOT=/mnt/gentoo
54 (This tells Portage where to install all the files)
55
56 7. Type:
57 # ln -s /usr/portage/profiles/default /etc/make.profile
58 (This tells Portage that we want to install the "default" system profile)
59
60 8. Type:
61 # emerge --usepkg system
62 (This tells Portage to install a basic system to ${ROOT})
63
64 9. OK; even if you'd like to custom-compile your own kernel from the bootcd
65 (yes, this is possible!) you need to emerge our default kernel package.
66 Everyone should do this:
67
68 # emerge /usr/portage/distfiles/linux-2.4.4.9.tbz2
69
70 If you want to compile your own kernel, I'll show you how in a bit.
71
72 10. If you need network connectivity for any reason, you should load the
73 appropriate NIC module now:
74 # modprobe 3c59x
75
76 11. Type:
77 # mount --bind /mnt/cdrom/gentoo/packages /mnt/gentoo/usr/portage/packages
78 # mount --bind /proc /mnt/gentoo/proc
79 (This gives you access to /proc and the packages even after the chroot)
80
81 12: Now, it's time to chroot:
82 # chroot /mnt/gentoo
83
84 13. Now, do some basic initialization:
85 # unset ROOT
86 # env-update
87 # source /etc/profile
88 # /etc/rc.d/init.d/initscripts-install
89
90 14. You can now emerge any packages in /usr/portage/packages/All that you'd
91 like to install:
92 # emerge --usepkg /usr/portage/packages/All/xfree-4.1.0.tbz2
93 (the --usepkg option is important)
94
95 15. If you want to compile your own kernel, do this:
96 *First*, edit /etc/make.conf (with vim; if you don't like vim, emerge
97 your favorite editor .tbz2 in /usr/portage/packages first)
98
99 *** set your USE variables appropriately (uncommenting the default USE ***
100 *** variable lines is the recommended approach ***
101
102 # emerge /usr/portage/packages/All/linux-sources-2.4.4.9.tbz2 (2.4.4-ac9)
103 # cd /usr/src/linux
104 # make menuconfig
105 # make dep; make clean; make bzImage; make modules; make modules_install
106 # depmod -a
107 # cd /boot/boot
108 # mv bzImage bzImage.orig
109 # cp /usr/src/linux/arch/i386/boot/bzImage .
110 ta da!
111
112 16. At this point, your Gentoo Linux system should be equivalent to a bare-bones
113 system image. A number of things still need to be set up, including:
114
115 /etc/fstab
116 /etc/localtime
117 /etc/make.conf (if you haven't already)
118 /etc/rc.d/config/basic (for keymap, etc)
119 /etc/rc.d/config/inet.eth0 (for ethernet)
120 /etc/hostname
121 /etc/resolv.conf
122 /etc/hosts
123
124 (For further instructions, see the "Gentoo Linux CD Installation Guide" at
125 http://www.gentoo.org, read from the "/etc/fstab" section onwards)
126
127 17. One last step -- configure GRUB to boot your system. Again, for further
128 detailed instructions on this, see the "Gentoo Linux CD Installation Guide"
129 at http://www.gentoo.org/doc/install.html -- GRUB configuration is covered
130 near the end of the document.
131
132 You're done! Reboot and enjoy Gentoo Linux 1.0_rc5! We'll be updating the Web
133 site with new documentation in a couple of days, and will be posting instructions
134 for the ix86 build iso soon.
135
136 Best Regards,
137
138 --
139 Daniel Robbins <drobbins@g.o>
140 President/CEO http://www.gentoo.org
141 Gentoo Technologies, Inc.

Replies

Subject Author
Re: [gentoo-dev] Fw: Gentoo Linux 1.0_rc5 released AGottinger@t-online.de (Achim Gottinger)
Re: [gentoo-dev] Fw: Gentoo Linux 1.0_rc5 released AGottinger@t-online.de (Achim Gottinger)