OVH Forum  

Go Back   OVH Forum > Specific forum > HOW-TO
Register FAQ Guides Search Today's Posts Mark Forums Read

Reply
 
Thread Tools
Old 01-28-2010, 08:00 PM   #21
Ashley
Senior Member
 
Join Date: Jun 2008
Location: Croydon, London
Posts: 442
Send a message via AIM to Ashley Send a message via MSN to Ashley
Re: How-To: Remote Debian installation

Ok I've achieved it, managed to set up RAID1 (i hope) and done it all using vKVM and not rescue pro.
__________________
I currently have: 2 servers with OVH
SP BestOf #1: loot.listy.li
and an RPS...
Ashley is offline   Reply With Quote
Old 01-28-2010, 09:08 PM   #22
Ashley
Senior Member
 
Join Date: Jun 2008
Location: Croydon, London
Posts: 442
Send a message via AIM to Ashley Send a message via MSN to Ashley
Re: How-To: Remote Debian installation

Err hangon I'm stuck on installing grub at 50%
__________________
I currently have: 2 servers with OVH
SP BestOf #1: loot.listy.li
and an RPS...
Ashley is offline   Reply With Quote
Old 01-29-2010, 06:14 PM   #23
Lilpaul340
Junior Member
 
Join Date: Jan 2010
Posts: 9
Re: How-To: Remote Debian installation

Great Guide
Lilpaul340 is offline   Reply With Quote
Old 03-05-2010, 11:03 PM   #24
monkey56657
Senior Member
 
Join Date: Jul 2008
Posts: 1,138
Re: How-To: Remote Debian installation

Thanks. Used this as a helper to installing ubuntu. Will post ubuntu guide within a few hours

Last edited by monkey56657; 03-06-2010 at 05:08 PM.
monkey56657 is offline   Reply With Quote
Old 03-10-2010, 11:39 PM   #25
IainK
Senior Member
 
Join Date: Apr 2008
Location: Edinburgh, United Kingdom
Posts: 595
Re: How-To: Remote Debian installation

Doesn't work well with soft raid on the EG 10 Hybrid. Played with a few things but couldn't get it to work. Not really got the time to play any more just thought I would post.
__________________
Iain Kay
www.iainkay.co.uk

Any Stock OS installed on your server, to your specification, for £20. No success = Fast 100% Refund.
Email/Add me to MSN messenger i.kay[at]me.com

www.dedidemon.com <-- OVH/Kimsufi Reseller
IainK is offline   Reply With Quote
Old 03-11-2010, 10:02 AM   #26
derchris
Senior Member
 
Join Date: Jun 2008
Location: Reading
Posts: 584
Send a message via ICQ to derchris Send a message via AIM to derchris Send a message via MSN to derchris Send a message via Yahoo to derchris Send a message via Skype™ to derchris
Re: How-To: Remote Debian installation

And what is not working?
I don't have a server with Soft Raid, but obviously, setting up Raid before doing the Debian install is a requirnment, and shouldn't be covered by this guide.
__________________
perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
derchris is offline   Reply With Quote
Old 03-11-2010, 03:58 PM   #27
monkey56657
Senior Member
 
Join Date: Jul 2008
Posts: 1,138
Re: How-To: Remote Debian installation

Software raid worked fine for me.. My ubuntu install was using soft raid.
monkey56657 is offline   Reply With Quote
Old 04-06-2010, 08:15 PM   #28
Matt
Junior Member
 
Join Date: Apr 2010
Posts: 2
Re: How-To: Remote Debian installation

hmm, does anyone know if this is possible with an RPS?
i tried the following a few times and it doesn't seem to want to come back online..

i set rescue mode in ovh-manager, then ssh'd my RPS and rebooted, then ssh again with the new rescue mode pass, then:

Code:
cfdisk /dev/sda
mkfs.ext3 /dev/sda1
mkfs.ext3 /dev/sda2
mkfs.ext3 -m 0 /dev/sda3
mkdir /di
mount /dev/sda2 /di
mkdir /di/boot
mount /dev/sda1 /di/boot
debootstrap --arch i386 lenny /di ftp://ftp.uk.debian.org/debian/
echo "127.0.0.1 localhost" > /di/etc/hosts
echo "namerps" > /di/etc/hostname
nano /di/etc/network/interfaces
then entered (which i copied from the ovh RPS debian install):

PHP Code:
auto lo
iface lo inet loopback

auto eth0
:0
iface eth0
:0 inet static
address 178.rps.ip
netmask 255.255.255.255 
Code:
nano /di/etc/fstab
PHP Code:
/dev/sda2    /    ext3    errors=remount-ro    0    1
/dev/sda1    /boot    ext3    errors=remount-ro    0    1
proc        
/proc    proc    defaults    0    0 
Code:
nano /di/etc/apt/sources.list
PHP Code:
deb http://ftp.uk.debian.org/debian/ lenny main non-free
deb http://security.debian.org/ lenny/updates main non-free
deb http://volatile.debian.org/debian-volatile lenny/volatile main non-free 
i did use "mount --bind" and not "mount -obind" assume its a typo in the tut?

Code:
mount --bind /dev /di/dev
chroot /di
mount none /proc -t proc
apt-get update
apt-get install linux-image-2.6-686 openssh-server module-init-tools grub
mkdir /boot/grub
grub-install /dev/sda
update-grub 
nano /boot/grub/menu.lst
PHP Code:
title           Debian GNU/Linuxkernel 2.6.26-2-686
root            
(hd0,0)
kernel          /vmlinuz-2.6.26-2-686 root=/dev/sda2 ro quiet
initrd          
/initrd.img-2.6.26-2-686 
Code:
passwd
exit
umount /di/dev
umount /di/proc
umount /di/boot
umount /di
then i went to ovh-manager and set the RPS to boot from the hd, and finally entered:

Code:
reboot
anyone spot any holes in what im doing
i waited an hour and it didnt come back
Matt is offline   Reply With Quote
Old 04-18-2010, 04:54 PM   #29
Matt
Junior Member
 
Join Date: Apr 2010
Posts: 2
Re: How-To: Remote Debian installation

Ttt
Matt is offline   Reply With Quote
Old 05-07-2010, 09:30 PM   #30
enigmajr
Junior Member
 
Join Date: May 2010
Posts: 1
Re: How-To: Remote Debian installation

I'm fine up until I try to configure grub. The command update-grub returns:

Quote:
Searching for GRUB installation directory ... found: /boot/grub
The file /boot/grub/stage1 not read correctly.
Any ideas?

Quote:
Originally Posted by Matt View Post
i did use "mount --bind" and not "mount -obind" assume its a typo in the tut?
I'm pretty sure it wasn't a typo, so that could be causing some problems.

Last edited by enigmajr; 05-07-2010 at 09:52 PM.
enigmajr is offline   Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT. The time now is 05:28 AM.


© OVH 1999-2010