Install NethServer on OVH

So for those want to install NetServer on OVH, SoYouStart or KimSufi… this is an HowTo

  • Install any custom installation of CentOS and use the distribution kernel

  • Connect over SSH to you server

  • Execute those lines

    mkdir /centos-orig64
    cd /centos-orig64
    NOTE : Match your version, if you plan to use NethServer 6.6, install the CentOS 6.6.

    wget http://ftp.hosteurope.de/mirror/centos.org/6.6/os/x86_64/images/pxeboot/initrd.img
    wget http://ftp.hosteurope.de/mirror/centos.org/6.6/os/x86_64/images/pxeboot/vmlinuz
    mv vmlinuz /boot/vmlinuz.cent.pxe
    mv initrd.img /boot/initrd.img.cent.pxe

  • Edit your grub

    nano /boot/grub/menu.lst

  • Replace everything with, don’t forget to use your own IP, Gateway and Password,…

    default 0
    timeout 0
    title Centos Install (PXE)
    root (hd0,0)
    kernel /boot/vmlinuz.cent.pxe vnc vncpassword=***$pass123*** headless ip=***$serverip*** netmask=255.255.255.0 gateway=***$gatewayip*** dns=8.8.8.8 ksdevice=eth0 method=http://ftp.hosteurope.de/mirror/centos.org/6.6/os/x86_64/ lang=en_US keymap=us
    initrd /boot/initrd.img.cent.pxe

  1. Regenerate Grub by executing

    grub-install /dev/sda

  2. Reboot

  3. Wait few minute, you’ll be able to install a real CentOS over VNC

inspired : http://forum.ovh.co.uk/showthread.php?4991-CentOS-Stock-Install-Kimsufi-OVH-VNC-Method

5 Likes

Because now they release CentOS 6.7 this FTP don’t provide 6.6 anymore
but you could replace those two lines by

wget http://vault.centos.org/6.6/os/x86_64/images/pxeboot/initrd.img
wget http://vault.centos.org/6.6/os/x86_64/images/pxeboot/vmlinuz

where is the nethserver ?

In a three-year-old and outdated post. Instructions on how to install over CentOS can now be found in the manual.

1 Like

Oh! Thanks !