Sponsored Content
Operating Systems Linux Fedora Creating Windows 7 image to run in VirtualBox Post 302741579 by jimbob01 on Sunday 9th of December 2012 06:55:17 AM
Old 12-09-2012
Creating Windows 7 image to run in VirtualBox

Hey guys,

Not sure if this is the best place for this question, but, after using Fedora now for about a year, I'm still getting used to it but I'm using it practically all the time now and instead of having a dual boot with Windows 7, I want to create an image of my Windows 7 installation, format the drive, install a clean version of Fedora 17 and then install VirtualBox and run my Windows installation from there (only need Windows for certain software and don't need a dual boot, only used it a few times in the past year!).

Anyone any ideas or good tutorial for doing so ? I've done a few google searches but there is a lot of conflicting information about how it should be done and although I've asked in other places about this, I've kinda come up empty and then figured this was probably the best place to ask!

Seen some blog posts about using CloneZilla, but other posts about using the 'dd' command from a LiveDVD, but to be honest, I'm not sure of the best way to go . . . . . and none of the articles I found were idiots guides, which I probably need Smilie

Thanks for any help.

Jim
 

5 More Discussions You Might Find Interesting

1. Solaris

help needed in creating an image from a 7za compressed file

Hi all, I have been working on a few files that have been 7za compressed.(which are a part of an OS) Now after extracting the file and doing manipulations i did a putback. But when i create an image and burn it onto the disk to check if my changes are working... I get error at boot time. Now... (0 Replies)
Discussion started by: wrapster
0 Replies

2. Solaris

Creating an image of a mirrored disks

Hi guys, I havent done this before but iam trying to create an image of a mirrorred drive. Correct me if iam wrong, but when i have two disks setup in raid configuration and have them mirrored in solaris. It then defines at one entity. How would i create a "flar" image of that one entity... (3 Replies)
Discussion started by: tlee
3 Replies

3. Virtualization and Cloud Computing

Creating VirtualBox-Image as "harddisk" by shell-script

Hello, I'm trying to create a VirtualBox "harddisk" and put an dd-image into it. This image shoudn't work as a virtual maschine, I just want to be able to mount it to an folder. How can I do this with an shell script? Sebi ---------- Post updated at 10:36 AM ---------- Previous update... (0 Replies)
Discussion started by: Sebi0815
0 Replies

4. Solaris

Creating soalris 9 ISO image with use of downloaded OS

Hi Folks, I have downloaded OS on one of my server and i want to create bootable solaris 9 ISO image with use of this...I need to use this image to other server.,Could you please let us know how we will create ISO image with below OS image.. # cd solaris_9 # ls -alrt total 128 drwxr-xr-x ... (3 Replies)
Discussion started by: susindram
3 Replies

5. Red Hat

Trouble creating RHEL 6.5 bootable image with custom kickstart file

Hi everyone, I have a custom kickstart file from a software vendor and I'm trying to package that with a RHEL 6.5 and then attach it to a VM and install RHEL with the settings in the kickstarter file. I'm doing this from a windows PC using an app called InfraRecorder. I've extracted the... (0 Replies)
Discussion started by: 911Eric
0 Replies
IMAGECREATETRUECOLOR(3) 						 1						   IMAGECREATETRUECOLOR(3)

imagecreatetruecolor - Create a new true color image

SYNOPSIS
resource imagecreatetruecolor (int $width, int $height) DESCRIPTION
imagecreatetruecolor(3) returns an image identifier representing a black image of the specified size. Depending on your PHP and GD versions this function is defined or not. With PHP 4.0.6 through 4.1.x this function always exists if the GD module is loaded, but calling it without GD2 being installed PHP will issue a fatal error and exit. With PHP 4.2.x this behaviour is dif- ferent in issuing a warning instead of an error. Other versions only define this function, if the correct GD version is installed. PARAMETERS
o $width - Image width. o $height - Image height. RETURN VALUES
Returns an image resource identifier on success, FALSE on errors. EXAMPLES
Example #1 Creating a new GD image stream and outputting an image. <?php header ('Content-Type: image/png'); $im = @imagecreatetruecolor(120, 20) or die('Cannot Initialize new GD image stream'); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color); imagepng($im); imagedestroy($im); ?> The above example will output something similar to:[NOT DISPLAYABLE MEDIA]Output of example : Creating a new GD image stream and outputting an image. NOTES
Note This function requires GD 2.0.1 or later (2.0.28 or later is recommended). SEE ALSO
imagedestroy(3), imagecreate(3). PHP Documentation Group IMAGECREATETRUECOLOR(3)
All times are GMT -4. The time now is 07:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy