2011
07.08
What ravages of spirit
conjured this temptuous rage
created you a monster
broken by the rules of love
and fate has lead you through it
you do what you have to do
and fate has led you through it
you do what you have to do …
But I have the sense to recognize that
I don’t know how to let you go
every moment marked
with apparitions of your soul
I’m ever swiftly moving
trying to escape this desire
the yearning to be near you
I do what I have to do
the yearning to be near you
I do what I have to do
but I have the sense to recognize
that I don’t know how
to let you go
I don’t know how
to let you go
A glowing ember
burning hot
burning slow
deep within I’m shaken by the violence
of existing for only you
I know I can’t be with you
I do what I have to do
I know I can’t be with you
I do what I have to do
and I have sense to recognize but
I don’t know how to let you go
I don’t know how to let you go
I don’t know how to let you go.
Category Random thoughts |
2010
12.18

Please consider making a donation today.
Category Random thoughts |
2010
09.02
Virtualization Technology (VT) is a set of enhancements to newer processors that improve performance for running a virtual machine by offloading some of the work to the new cpu extensions. Both AMD and Intel have processors that support this technology, but how do you tell if your system can handle it?
It’s quite simple: We’ll need to take a peek inside the /proc/cpuinfo file and look at the flags section for one of two values, vmx or svm.
- vmx – (intel)
- svm – (amd)
You can use grep to quickly see if either value exists in the file by running the following command:
egrep ‘(vmx|svm)’ /proc/cpuinfo
If your system supports VT, then you’ll see vmx or svm in the list of flags. My system has two processors, so there are two separate sections:
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
VT technology can still be disabled in your computer’s BIOS, however, so you’ll want to check there to make sure that it hasn’t been disabled. The flags in cpuinfo simply mean that your processor supports it.
Source: http://www.howtogeek.com
Tags: Unix, Virtualization, VT Category Linux |