On Wed, Nov 30, 2011 at 12:20:24AM +0100, mattias wrote:
> are it possible from the host?

It's not ideal, but I use a script like this:

#!/bin/bash

for pid in  $(ps aux |grep uml |awk '{print $2}') ; do
        echo "Killing $pid..."
        kill -9 $pid
done


This assumes that only one UML VM is running.

I'm assuming there is a better way, but I don't know it.

- Chris


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
User-mode-linux-user mailing list
User-mode-linux-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-user

Reply via email to