<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar/11356004?origin\x3dhttp://openrent.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Does my CPU support Xen?

For a para-virtualized guest, your CPU only needs to support the PAE flag:

$ grep pae /proc/cpuinfo

For a fully-virtualized guest, your CPU must support either the "vmx" flag for an Intel processor, or the "svm" flag if your processor is from AMD. Run this command to find out:

grep '^flags.*(vmx|svm)' /proc/cpuinfo