WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

[Xen-users] Error: (28, 'No space left on device

To: Xen-user List <xen-users@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-users] Error: (28, 'No space left on device
From: CHERAMY Guillaume <guillaume.cheramy@xxxxxxxxx>
Date: Mon, 13 Oct 2008 10:01:21 +0200
Delivery-date: Mon, 13 Oct 2008 01:02:05 -0700
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=z9UkEWax1Vs4uvbbPvPliU/CvvTAlRS3xdoKo6nJEmU=; b=ZL9H7Ux17H1RvXW3am2adNQDoKFlTbt5kGR39bHCQGbaFjjCE1dRxrNws9mSLvxK+S T2nPMWcHuRveOWdVJH88yiQ+R4dPIZfGsbruiLZEKZELP4r1qyAxjJyKlumZif7Whvmp ZTGdVMtudJt7s78NWhnOdS0Hknr60UXvnTmiI=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=Iiq9a9BqayI1Vg4KFUHS0WKsNWeCpznxV3siztiMWmPvcorr4nQFfthQLmO1/qHz/i H/ZeMvvkzAwDY9cVukA2h7noU5fybWjbd1E9dIduT3LqLukgiFsw2dkpqKnmfTjU47q3 SPWcOM6ZWw1boHv2aMnMbJlm6bFJDmxr0eHEw=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Thunderbird 2.0.0.17 (X11/20080925)
Hello,

    I have a little problem with my Xen server.
Friday, I done a xm destroy on a Windows XP vm. But now when I want to
start this vm I have this error :
Error: (28, 'No space left on device, while writing
/vm/58c0159f-19c9-5e94-1ae7-eebd4205d520/image/cmdline : ')

so I done this :

xenstore-control check

I use this script to dump the tdb :
----------------------------------
#!/bin/sh

function dumpkey() {
   local param=${1}
   local key
   local result
   result=$(xenstore-list ${param})
   if [ "${result}" != "" ] ; then
      for key in ${result} ; do dumpkey ${param}/${key} ; done
   else
      echo -n ${param}'='
      xenstore-read ${param}
   fi
}

for key in /vm /local/domain /tool ; do dumpkey ${key} ; done
----------------------------------

I then used xenstore-rm to erase the wrong keys (related to my vm).
After removing of all wrong keys, I cannot start this domain anymore. I
still have the same error.
I cannot reboot the whole Xen Server as he desserve a lot of vm :-(

Could you help me please, anyone ? need some other information?

-- 
                         ''~``
                        ( o o )
+------------------.oooO--(_)--Oooo.---------------------+
| Guillaume Chéramy - Guidtz                             |
| E-Mail : guillaume.cheramy@xxxxxxxxx                   |
|                    (   )                               |
+---------------------\ (----(   )-----------------------+
                       \_)    ) /
                             (_/


_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-users] Error: (28, 'No space left on device, CHERAMY Guillaume <=