4

I have one semi-expendable (not production/mission critical) Debian VPS, which I use for my personal needs.

I have some problems with an applications new versions not working properly with old squeeze (I need to use some older packages, or older source code versions, which doesn't have some later versions features).

I am considering about upgrading Debian Squeeze to Wheezy. However I am not sure if that update is possible and would not break VPS completely (corrupt entire system image, some servers, DAEMONS down are OK as long they are fixable and ssh connection is working well).

Virtualization technology used on server is OpenVZ. AFAIK OpenVZ uses shared kernel which depends on VPS provider. I do not need to update it, but I have concern that wheezy will not work with old kernel. Kernel in server seems to be 2.6.32.

Are my concerns hold any truth? Is update feasible? Does anyone run in some kind of problems with updates like this?

IBr
  • 183

1 Answers1

4

For an OpenVZ VPS to change distribution and/or major release you would normally rebuild/reimage using whatever control panel your VPS provider has and choose from the list of Linux distribution and release/version templates they make available.

You lose all your data and configuration but it takes minutes to do and you then have a working VPS to update/configure as you like.

Looks like you can upgrade in place as well, though there could be problems migrating some configurations/data like nginx, mysqld etc, one way is:

sed -i 's/squeeze/wheezy/g' /etc/apt/sources.list
apt-get update
apt-get dist-upgrade

Ref: LowEndTalk : Debian 7.0 "Wheezy" released

Brian
  • 9,034