Llevo un día peleando con la instalación del Arch.
Ayer me bajé el LiveCD. y lo hago desde el mismo.
Lo que tengo en el ordenador:
5 discos con 2 WinXP y un Ubuntu.
Que hago:
En el setup pongo el disco donde quiero instalar el Arch como disco de arranque.
Pongo el LiveCD y arranco. Selecciono la instalación. Con el km selecciono teclado y juego de carácteres.
Luego /arch/setup
Origen CD, zona horaria y hora.
El tema de particiones:
- Partición 1: EXT4 / y /boot
- Partición 2: Swap
- Partición 3: EXT4 /home
Paquetes: base, base-devel, sudo, sqlite
Instalo paquetes y luego le pongo pass al root
Le digo que ponga el GRUB en el disco donde estoy instalando y lo copia.
Reboto, saco el CD y me sale el GRUB con Archlinux y Archlinux Fallback
Selecciono el primero y me sale un error que me dice que la partición es del tipo 0x07 (NTFS?)
/etc/fstab
#
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
none /dev/pts devpts defaults 0 0
none /dev/shm tmpfs defaults 0 0
#/dev/cdrom /media/cd auto ro,user,noauto,unhide 0 0
#/dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
#/dev/fd0 /media/fl auto user,noauto 0 0
/dev/sde1 / ext4 defaults 0 1
/dev/sde2 swap swap defaults 0 0
/dev/sde3 /home ext4 defaults 0 1
/boot/grub/menu.lst
# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst
# DEVICE NAME CONVERSIONS
#
# Linux Grub
# -------------------------
# /dev/fd0 (fd0)
# /dev/sda (hd0)
# /dev/sdb2 (hd1,1)
# /dev/sda3 (hd0,2)
#
# FRAMEBUFFER RESOLUTION SETTINGS
# +-------------------------------------------------+
# | 640x480 800x600 1024x768 1280x1024
# ----+--------------------------------------------
# 256 | 0x301=769 0x303=771 0x305=773 0x307=775
# 32K | 0x310=784 0x313=787 0x316=790 0x319=793
# 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
# 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
# +-------------------------------------------------+
# for more details and different resolutions see
# http://wiki.archlinux.org/index.php/GRUB#Framebuffer_Resolution
# general configuration:
timeout 5
default 0
color light-blue/black light-cyan/blue
# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*
# (0) Arch Linux
title Arch Linux
root (hd4,0)
kernel /boot/vmlinuz26 root=/dev/disk/by-uuid/f9ac81c9-69f1-4386-a16f-9b343764a3f6 ro
initrd /boot/kernel26.img
# (1) Arch Linux
title Arch Linux Fallback
root (hd4,0)
kernel /boot/vmlinuz26 root=/dev/disk/by-uuid/f9ac81c9-69f1-4386-a16f-9b343764a3f6 ro
initrd /boot/kernel26-fallback.img
# (2) Windows
#title Windows
#rootnoverify (hd0,0)
#makeactive
#chainloader +1
Desde el Ubuntu miro el uuid de la partición donde he instalado el Arch y es el siguiente: f9ac81c9-69f1-4386-a16f-9b343764a3f6. El mismo que me sale en el menu.lst.
¿Donde me estoy equivocando?