Ubuntu 10.4 & openvz vps - suche erfahrungsberichte

  • Ubuntu hat direkt nach der installation probleme gemacht bezueglich apt-get.


    Es bleibt irgendwann haengen, wenn man packete installiert oder deinstalliert.
    Alles laeuft wunderbar, ausser halt das apt-get einfach haenger hat.



    Dann hilft nur noch das killen der processe aus einem anderen terminal, oder manchmal funktioniert auch ctrl+c.


    Kernel:
    Linux xx.yourvserver.net 2.6.33.7-vs2.3.0.36.30.4-netcup #1 SMP Tue Nov 16 08:24:31 UTC 2010 x86_64 GNU/Linux



    Mich wuerde interessieren ob andere Erfahrungen mit 10.4 gemacht haben.


    Normallerweise wuerde ich ja Centos oder Debian installieren, aber Python 2.6.x ist leider eine Vorraussetzung in diesem fall, daher die Wahl fuer ubuntu.


    Daher das interesse ob jemand anderes auch 10.4 nutzt.


    Danke schonmal :)

  • Mir ist es bei der "munin-node" installation passiert.


    Ich hab grad nochmal nachgefragt, scheinbar ist es nicht nur bei apt-get aufgetreten.
    Der Verwandte ist sich sicher das es auch im midnight commander einmal passiert is.



    Apache laeuft einwandfrei soweit.



    Schon irgendwie paradox.



    Ich kann mir noch gar keinen reim draus machen.

  • Hab' jetzt gerade 10.04 neu installiert. Und direkt nach der Installation, also noch bevor ich selber auch nur irgendwas gemacht habe, klappt "stop" und "start" und "initctl", also Upstart, nicht.


    Code
    root@server:~# stop cron

    Dh. es bleibt ganz einfach hängen. Egal ob ich da nun "cron" oder welchen Service auch immer nehme.


    Code
    root@server:~# uname -a
    Linux server.message-center.info 2.6.35.10-vs2.3.0.36.33-netcup #3 SMP Tue Dec 21 06:50:01 UTC 2010 x86_64 GNU/Linux


    Auch eher ungut finde ich, wieviele .dpkg-new Dateien es in /etc gibt - siehe Anhang bzw. http://pastebin.de/14237. Eigentlich denke ich ja, das es da 0 Dateien geben sollte, direkt nach einer Installation.


    Alexander

  • Hi,
    ich stand auch mal vor dem Problem aber im privatem Bereich.
    Frag mich nicht warum, aber ubuntu läuft einfach nicht so stable wie debian :D


    Jedenfalls hat mir das hier sehr geholfen:



    Installing Python 2.6/2.7 on Debian Lenny


    Just a quick note to Google-eyed installers of Python who can’t get python to start after compiling it from source. Debian 5 ships with Python 2.5.x and complains about libpython after you install 2.6 or 2.7. The solution is very simple and quick:
    Create the following 2 symlinks to sort yourselves out:
    [INDENT]ln -s /usr/local/lib/libpython2.6.so.1.0 /usr/lib/
    ln -s /usr/local/lib/libpython2.6.so /usr/
    [/INDENT] If you’re on a 64 bit OS replace /usr/lib/ with /usr/lib64/
    My full setup script for Python including threads etc is:
    [INDENT] # as sudo / root:
    wget http://python.org/ftp/python/2.6.4/Python-2.6.4.tgz
    tar -xvzf Python-2.6.4.tgz
    cd Python-2.6.4
    ./configure –with-threads –enable-shared
    make
    make install
    # fix libpython2.6 problem
    ln -s /usr/local/lib/libpython2.6.so.1.0 /usr/lib64/
    ln -s /usr/local/lib/libpython2.6.so /usr/



    Quelle: http://www.harelmalka.com/?p=159


    [/INDENT]