Difference between pages "Convert images" and "Turn your physical computer into a virtual one"

From Linuxintro
(Difference between pages)
imported>ThorstenStaerk
 
imported>ThorstenStaerk
(New page: Imagine you want your lapTop to run in a virtual machine, maybe because you want to try some changes, maybe because you want to sell it. That's what this article is about. Your not...)
 
Line 1: Line 1:
To convert images, the graphviz package contains a utility called ''convert''.
+
Imagine you want your [[lapTop]] to run in a [[virtual machine]], maybe because you want to try some changes, maybe because you want to sell it. That's what this article is about. Your notebook can be on [[Windows]] or [[Linux]], no matter.
  
'''Example:'''
+
= How to =
convert -scale 300x150 -transparent white klingel.svg klingel.png
 
  
= Office files =
+
* Boot the computer you want to virtualize [[booting from usb|from usb]] or from [[knoppix]].
You can convert Office files (*.doc, *.ppt etc) using the [[command]] soffice:
+
* Use a [[USB]] [[disk]] to store an image of your computer's [[hard disk]]:
  soffice --invisible --convert-to png ''presentation.odp''
+
  dd if=''/dev/sda'' of=''/hdimage.img''
Converts ''presentation.odp'' to ''presentation''.png
+
This can be used if your harddisk is ''/dev/sda'' and you want your [[image]] [[file]] at ''/hdimage.img''.
 +
* Download and [[install]] [[vmWare]] on your host computer.
 +
* use qemu-img from the [[qemu]] [[package]] to transform your harddisk image to a vmware image:
 +
qemu-img /mnt/usb/hdimage.img -O vmdk /hdimage.vmdk
 +
* you can now use your vmware image to boot your virtual guest computer.
  
= Corel Draw files =
+
[[Category:Guides]]
To convert a Corel Draw file to a Linux-readable format, use [[uniconvertor]].
 

Revision as of 07:20, 26 August 2008

Imagine you want your lapTop to run in a virtual machine, maybe because you want to try some changes, maybe because you want to sell it. That's what this article is about. Your notebook can be on Windows or Linux, no matter.

How to

dd if=/dev/sda of=/hdimage.img

This can be used if your harddisk is /dev/sda and you want your image file at /hdimage.img.

  • Download and install vmWare on your host computer.
  • use qemu-img from the qemu package to transform your harddisk image to a vmware image:
qemu-img /mnt/usb/hdimage.img -O vmdk /hdimage.vmdk
  • you can now use your vmware image to boot your virtual guest computer.