Habe eine bestehende XP Partition, die ich gerne in eine QtEmu Maschine unter Ubuntu 8.04 LTS übernehmen möchte.
Gibt es ein Tool, das mir aus der bestehenden Partition ein einspielbares / installierbares Image für QtEmu erstellt?
I only know English, but google translator thinks you mean:
I have an existing XP partition, which I would like to incorporate into a QtEmu machine under Ubuntu 8.04 LTS.
Is there a tool that can create from the existing partition ?einspielbares? / an installable image for QtEmu?
You can use "dd" to copy your XP partition directly to a raw format image. You can then convert the image to a qcow image in qtemu to enable suspend / resume and other features. There are other ways you could accomplish the same thing, but this is the process I would reccommend.
So, the specific command line you would use is this:
replace /dev/sda1 with the actual partition you want to copy and make sure it is unmounted first! The image will be at ~/MyMachines/imagename.qcow
IMPORTANT:
This will use a fair amount of space (up to twice the size of your XP partition to run the above commands!), and so I would suggest booting into XP first, and running the defragment tool to make free space contiguous. Then you can use sdelete -c c:, still in windows, to zero out all your free space. Zeroing out the free space will make the image file take up less space, since qcow (and the Linux file system for raw images) deflate all the zeroes so they don't take up additional space. You can get sdelete here: http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx.
I am running Debian Lenny 5.02 kernel 2.6.26-2-amd64
Executing:
cmake -DCMAKE_INSTALL_PREFIX=/usr .
I get:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
LIBVNCCLIENT_LIBRARIES
exisitng XP Partion taken in ISO for QtEmu
Habe eine bestehende XP Partition, die ich gerne in eine QtEmu Maschine unter Ubuntu 8.04 LTS übernehmen möchte.
Gibt es ein Tool, das mir aus der bestehenden Partition ein einspielbares / installierbares Image für QtEmu erstellt?
exisitng XP Partion taken in ISO for QtEmu
I only know English, but google translator thinks you mean:
I have an existing XP partition, which I would like to incorporate into a QtEmu machine under Ubuntu 8.04 LTS.
Is there a tool that can create from the existing partition ?einspielbares? / an installable image for QtEmu?
You can use "dd" to copy your XP partition directly to a raw format image. You can then convert the image to a qcow image in qtemu to enable suspend / resume and other features. There are other ways you could accomplish the same thing, but this is the process I would reccommend.
So, the specific command line you would use is this:
replace /dev/sda1 with the actual partition you want to copy and make sure it is unmounted first! The image will be at ~/MyMachines/imagename.qcow
IMPORTANT:
This will use a fair amount of space (up to twice the size of your XP partition to run the above commands!), and so I would suggest booting into XP first, and running the defragment tool to make free space contiguous. Then you can use sdelete -c c:, still in windows, to zero out all your free space. Zeroing out the free space will make the image file take up less space, since qcow (and the Linux file system for raw images) deflate all the zeroes so they don't take up additional space. You can get sdelete here: http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx.
Cmake error: LIBVNCCLIENT_LIBRARIES
I am running Debian Lenny 5.02 kernel 2.6.26-2-amd64
Executing:
cmake -DCMAKE_INSTALL_PREFIX=/usr .
I get:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
LIBVNCCLIENT_LIBRARIES
LibVNCServer is installed, ver 0.9.8.
Any ideas??
use libvncserver-dev package
Hi,
I'm using Ubuntu Jaunty and i have had the same problem. The solution:
apt-get install libvncserver-dev
Good luck
Paul