2005-10-03 17:44:10 +02:00
|
|
|
NixOS installation HOWTO -- October 3, 2005
|
|
|
|
|
|
|
|
This is small HOWTO of how to build and install the current version of
|
|
|
|
NixOS.
|
|
|
|
|
|
|
|
|
|
|
|
Building
|
|
|
|
|
|
|
|
Install Nix. Checkout nixpkgs from Subversion, as well as nixu. Adapt the
|
|
|
|
scripts in nixu to reflect the location of nixpkgs (default /nixpkgs).
|
2005-10-11 12:48:10 +02:00
|
|
|
Make sure mktemp is installed. Run ./make-disk.sh. Wait.
|
2005-10-03 17:44:10 +02:00
|
|
|
|
|
|
|
Burning
|
|
|
|
|
|
|
|
Use your favourite tool to burn the ISO image to a CD.
|
|
|
|
|
|
|
|
Preparing the host machine
|
|
|
|
|
|
|
|
Currently NixOS can only be installed with machines that have a specific
|
|
|
|
hardware set up:
|
|
|
|
|
|
|
|
An ATA harddisk on the first ATA controller (hda) with:
|
|
|
|
- data partition (hda1)
|
|
|
|
- swap partition (hda2)
|
|
|
|
|
|
|
|
All data on these two partitions will be wiped and the bootloader in the
|
|
|
|
Master Boot Record (MBR) will be overwritten with GRUB.
|
|
|
|
|
|
|
|
Booting
|
|
|
|
|
|
|
|
Insert the CD, make sure it can boot from CD and reboot. Let it run for a
|
|
|
|
while.
|
|
|
|
|
|
|
|
Configuring
|
|
|
|
|
|
|
|
To get NixOS in a working state, do the following:
|
|
|
|
|
|
|
|
- load the networkdriver. This is machine dependent. On the labmachines this
|
|
|
|
is the e1000 driver:
|
|
|
|
|
|
|
|
# modprobe e1000
|
|
|
|
|
2005-10-11 21:39:41 +02:00
|
|
|
In vmware the driver is "pcnet32".
|
|
|
|
|
2005-10-03 17:44:10 +02:00
|
|
|
- bring the interface up:
|
|
|
|
|
|
|
|
# ifconfig eth0 up
|
|
|
|
|
|
|
|
If the interface is different (say, eth1) replace eth0 with the right
|
|
|
|
interface.
|
|
|
|
|
2005-10-13 00:40:10 +02:00
|
|
|
- if DHCP is used, run a DHCP client to obtain an IP address, routing
|
|
|
|
and resolving information:
|
2005-10-03 17:44:10 +02:00
|
|
|
|
|
|
|
# dhclient eth0
|
|
|
|
|
2005-10-13 00:40:10 +02:00
|
|
|
Otherwise, do this yourself:
|
2005-10-03 17:44:10 +02:00
|
|
|
|
|
|
|
# ifconfig eth0 <ip address> netmask <netmask>
|
|
|
|
# route add default gw <gateway ip address>
|
|
|
|
# vim /etc/resolv.conf
|
|
|
|
|
2005-12-14 01:46:59 +01:00
|
|
|
Making syslog work.
|
2005-10-03 17:44:10 +02:00
|
|
|
|
|
|
|
- copy /etc/services from a working Linux machine to /etc/services on the
|
|
|
|
NixOS machine (needed for sysklogd)
|
|
|
|
- copy /etc/syslog.conf from a working Linux machine to /etc/syslog.conf on the
|
|
|
|
NixOS machine (needed for sysklogd)
|
|
|
|
- launch sysklogd
|
2005-12-14 01:46:59 +01:00
|
|
|
|
|
|
|
Making logins on virtual consoles work.
|
|
|
|
|
|
|
|
Logins on virtual consoles are disabled by default. To make them work:
|
|
|
|
|
|
|
|
- edit /etc/inittab and outcomment the lines with "mingetty" in them
|
2005-10-03 17:44:10 +02:00
|
|
|
- copy /etc/login.defs from a working Linux machine to /etc/login.defs on the
|
2005-12-14 01:46:59 +01:00
|
|
|
NixOS machine (needed for mingetty). Alternatively, do:
|
|
|
|
|
|
|
|
# touch /etc/login.defs
|
|
|
|
|
2005-10-03 17:44:10 +02:00
|
|
|
- relaunch init
|