Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
 Post subject:
PostPosted: Tue Jul 12, 2011 10:19 am 
Offline
Senior Member

Joined: Wed May 13, 2009 1:32 pm
Posts: 737
Location: Italy
I would like to upgrade but I do not want to reconfigure al the services I need.

:?


Top
   
 Post subject:
PostPosted: Tue Jul 12, 2011 8:10 pm 
Offline

Joined: Tue May 10, 2011 10:07 pm
Posts: 1
Count me among those awaiting Centos 6.


Top
   
 Post subject: CentOS6
PostPosted: Thu Jul 14, 2011 1:19 am 
Offline

Joined: Thu Jul 14, 2011 1:14 am
Posts: 1
+1 for C6


Top
   
 Post subject: CentOS 6
PostPosted: Thu Jul 14, 2011 6:19 am 
Offline

Joined: Thu Jul 14, 2011 6:17 am
Posts: 1
get me on the list too


Top
   
 Post subject: Re: CentOS6
PostPosted: Thu Jul 14, 2011 6:45 am 
Offline

Joined: Thu Jul 14, 2011 6:42 am
Posts: 1
ICQ: 25262848
Website: http://www.toysdesk.com/
Location: Italy, EU
bleeter wrote:
+1 for C6


me too!!! :)

_________________
Flourescent lights are generating negative ions. If turning them off doesn't work, take them out and put tin foil on the ends.


Top
   
 Post subject:
PostPosted: Thu Jul 14, 2011 7:09 am 
Offline
Senior Member

Joined: Sun Aug 02, 2009 1:32 pm
Posts: 222
Website: https://www.barkerjr.net
Location: Connecticut, USA
We need Google+ +1 buttons in this forum.


Top
   
 Post subject:
PostPosted: Thu Jul 14, 2011 4:45 pm 
Offline
Senior Newbie

Joined: Wed Dec 16, 2009 4:57 am
Posts: 7
Location: Fort Worth, TX
I'm in for +1 on a node! More if it performs better than Squeeze.


Top
   
 Post subject:
PostPosted: Fri Jul 15, 2011 7:12 am 
Offline

Joined: Fri Jul 15, 2011 7:10 am
Posts: 1
Another vote for CentOS 6 availability ASAP please.


Top
   
 Post subject:
PostPosted: Fri Jul 15, 2011 1:07 pm 
Offline
Junior Member

Joined: Sun Mar 01, 2009 10:48 am
Posts: 20
Please Linode I want Centos 6. It would make me very happy. :D :D :D


Top
   
 Post subject:
PostPosted: Sun Jul 17, 2011 12:34 am 
Offline
Senior Member

Joined: Fri Sep 21, 2007 4:12 pm
Posts: 78
CentOS6 means I'm no longer building packages for my boxes...

1) MySQL enabled Postfix (instead of just LDAP)!
2) Sieve plugin for Dovecot!

I'd be a pretty happy guy if this appeared...


Top
   
 Post subject:
PostPosted: Sun Jul 17, 2011 2:54 pm 
Offline
Junior Member

Joined: Wed Feb 09, 2011 7:41 am
Posts: 28
Another vote for Centos 6 here


Top
   
 Post subject:
PostPosted: Sun Jul 17, 2011 4:42 pm 
Offline
Senior Newbie

Joined: Sun Jul 17, 2011 4:40 pm
Posts: 14
AOL: 3521+IVY+COMMONS+DR+APT+302
sblantipodi wrote:
can't wait to install it on my linode.


Have you done it through the recovery console yet? If so please send directions my way :)


Top
   
 Post subject:
PostPosted: Sun Jul 17, 2011 6:04 pm 
Offline
Senior Member

Joined: Fri Sep 21, 2007 4:12 pm
Posts: 78
There isn't that much to it.

I created two partitions, one for /boot, and one for /. From here, I booted into finnix and dropped the kernel and initrd into /boot/install (just a directory I made, nothing fancy -- I just didn't want any conflicts). A simple reboot into pv_grub, and type three lines:

Code:
root (hd0)
kernel /install/vmlinuz
initrd /install/initrd.img


... and it will kick off the installer. I'll give you a warning though: it isn't going to be pretty over lish.

If you have the RAM, you can pull off a GUI install over VNC, and specify a password on the kernel boot line. See this for all of the options: http://fedoraproject.org/wiki/Anaconda_Boot_Options

PS: Pull the vmlinuz and the initrd.img file from almost any mirror... such as this one: http://mirrors.kernel.org/centos/6.0/os ... /isolinux/

edit: so there are issues with the lish console and the installer, namely the disk selection part. So, I wrote a kickstart file. This will install almost nothing -- a grand total of 208 packages -- and if you know what you're doing with respect to partitioning and etc, you can probably have a C6 install up and running in 10 minutes.

You'll probably have to play with the partition options unless you have yours setup identically like mine (xvda = /boot, xvdb = /, xvdc = swap). Note that this will blow away all existing partitions as well, so if you botch it then you get to re-download the kernel and initrd.

Code:
install
url --url=http://mirrors.kernel.org/centos/6.0/os/x86_64/
text
lang en_US.UTF-8
keyboard us
network --device eth0 --bootproto dhcp
rootpw  --plaintext **REPLACEME**
firewall --service=ssh
authconfig --enableshadow --passalgo=sha512 --enablefingerprint
selinux --enforcing
timezone --utc Etc/UTC
firstboot --disabled
bootloader --location=mbr --driveorder=xvda,xvdb --append="crashkernel=auto rhgb quiet"
clearpart --all
part /boot --ondisk=xvda --size=1 --grow --fstype=ext2
part / --ondisk=xvdb --size=1 --grow --fstype=ext4
part swap --ondisk=xvdc --size=1 --grow --fstype=swap
%packages --nobase
vim-enhanced
openssh-clients
@core
%end


Top
   
 Post subject:
PostPosted: Sun Jul 17, 2011 9:58 pm 
Offline
Senior Newbie

Joined: Sun Jul 17, 2011 4:40 pm
Posts: 14
AOL: 3521+IVY+COMMONS+DR+APT+302
WORKED LIKE A CHARM.

Thanks man, I'm a newbie when it comes to some of this, but I was able to get it installed using the method you mentioned.

kbrantley wrote:
There isn't that much to it.

I created two partitions, one for /boot, and one for /. From here, I booted into finnix and dropped the kernel and initrd into /boot/install (just a directory I made, nothing fancy -- I just didn't want any conflicts). A simple reboot into pv_grub, and type three lines:

Code:
root (hd0)
kernel /install/vmlinuz
initrd /install/initrd.img


... and it will kick off the installer. I'll give you a warning though: it isn't going to be pretty over lish.

If you have the RAM, you can pull off a GUI install over VNC, and specify a password on the kernel boot line. See this for all of the options: http://fedoraproject.org/wiki/Anaconda_Boot_Options

PS: Pull the vmlinuz and the initrd.img file from almost any mirror... such as this one: http://mirrors.kernel.org/centos/6.0/os ... /isolinux/

edit: so there are issues with the lish console and the installer, namely the disk selection part. So, I wrote a kickstart file. This will install almost nothing -- a grand total of 208 packages -- and if you know what you're doing with respect to partitioning and etc, you can probably have a C6 install up and running in 10 minutes.

You'll probably have to play with the partition options unless you have yours setup identically like mine (xvda = /boot, xvdb = /, xvdc = swap). Note that this will blow away all existing partitions as well, so if you botch it then you get to re-download the kernel and initrd.

Code:
install
url --url=http://mirrors.kernel.org/centos/6.0/os/x86_64/
text
lang en_US.UTF-8
keyboard us
network --device eth0 --bootproto dhcp
rootpw  --plaintext **REPLACEME**
firewall --service=ssh
authconfig --enableshadow --passalgo=sha512 --enablefingerprint
selinux --enforcing
timezone --utc Etc/UTC
firstboot --disabled
bootloader --location=mbr --driveorder=xvda,xvdb --append="crashkernel=auto rhgb quiet"
clearpart --all
part /boot --ondisk=xvda --size=1 --grow --fstype=ext2
part / --ondisk=xvdb --size=1 --grow --fstype=ext4
part swap --ondisk=xvdc --size=1 --grow --fstype=swap
%packages --nobase
vim-enhanced
openssh-clients
@core
%end


Top
   
 Post subject:
PostPosted: Mon Jul 18, 2011 12:20 am 
Offline
Senior Newbie

Joined: Sun Jul 17, 2011 4:40 pm
Posts: 14
AOL: 3521+IVY+COMMONS+DR+APT+302
I was overly enthusiastic. The install proceeded fine, I even ran it through VNC and a graphical install, but when the system rebooted Linode gave me an error saying it could not start for some reason. I made a CentOS profile with a paravirt kernel to boot it under with /dev/hda being boot (where the graphical installer installed the bootloader) and /hdb being the root partition. /hdc is the swap partition (I think). Any ideas? lish won't even give me an error.

tesmar wrote:
WORKED LIKE A CHARM.

Thanks man, I'm a newbie when it comes to some of this, but I was able to get it installed using the method you mentioned.

kbrantley wrote:
There isn't that much to it.

I created two partitions, one for /boot, and one for /. From here, I booted into finnix and dropped the kernel and initrd into /boot/install (just a directory I made, nothing fancy -- I just didn't want any conflicts). A simple reboot into pv_grub, and type three lines:

Code:
root (hd0)
kernel /install/vmlinuz
initrd /install/initrd.img


... and it will kick off the installer. I'll give you a warning though: it isn't going to be pretty over lish.

If you have the RAM, you can pull off a GUI install over VNC, and specify a password on the kernel boot line. See this for all of the options: http://fedoraproject.org/wiki/Anaconda_Boot_Options

PS: Pull the vmlinuz and the initrd.img file from almost any mirror... such as this one: http://mirrors.kernel.org/centos/6.0/os ... /isolinux/

edit: so there are issues with the lish console and the installer, namely the disk selection part. So, I wrote a kickstart file. This will install almost nothing -- a grand total of 208 packages -- and if you know what you're doing with respect to partitioning and etc, you can probably have a C6 install up and running in 10 minutes.

You'll probably have to play with the partition options unless you have yours setup identically like mine (xvda = /boot, xvdb = /, xvdc = swap). Note that this will blow away all existing partitions as well, so if you botch it then you get to re-download the kernel and initrd.

Code:
install
url --url=http://mirrors.kernel.org/centos/6.0/os/x86_64/
text
lang en_US.UTF-8
keyboard us
network --device eth0 --bootproto dhcp
rootpw  --plaintext **REPLACEME**
firewall --service=ssh
authconfig --enableshadow --passalgo=sha512 --enablefingerprint
selinux --enforcing
timezone --utc Etc/UTC
firstboot --disabled
bootloader --location=mbr --driveorder=xvda,xvdb --append="crashkernel=auto rhgb quiet"
clearpart --all
part /boot --ondisk=xvda --size=1 --grow --fstype=ext2
part / --ondisk=xvdb --size=1 --grow --fstype=ext4
part swap --ondisk=xvdc --size=1 --grow --fstype=swap
%packages --nobase
vim-enhanced
openssh-clients
@core
%end


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group