Convertered VMDK Starting 10% of The Time

 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions Convertered VMDK Starting 10% of The Time
# 1  
Old 04-10-2014
Convertered VMDK Starting 10% of The Time

I created a vdmk image from a system that was having hardware issues using:

(How to create a Virtualbox image from a physical partition by one command)
Code:
sudo dd if=/dev/sda | VBoxManage convertfromraw stdin MyLinuxImage.vmdk 120034123776 --format VMDK

the next thing I did was install VM Player 6.0.1 build-1379776 on a windows 8 machine. The steps that I used was:

http://(http://smallbusiness.chron.c...le-44318.html)

So finally after all of this is done, VM Player will boot 10% of the time. Usually if I remove all the *.lck file from the virtualmachine directory and the directory where the actual VM resides, it will reboot. I have attached the log files to give you a better understanding on the inconsistency of this important VM.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep a log file starting from a specific time to the end of file

I have a log file which have a date and time at the start of every line. I need to search the log file starting from a specific time to the end of file. For example: Starting point: July 29 2018 21:00:00 End point : end of file My concern is what if the pattern of `July 29 2018 21:00:00`... (3 Replies)
Discussion started by: erin00
3 Replies

2. UNIX for Dummies Questions & Answers

How to grep a line not starting with # from a file (there are two lines starting with # and normal)?

e.g. File name: File.txt cat File.txt Result: #INBOUND_QUEUE=FAQ1 INBOUND_QUEUE=FAQ2 I want to get the value for one which is not commented out. Thanks, (3 Replies)
Discussion started by: Tanu
3 Replies

3. Shell Programming and Scripting

Convert UTC time into current UNIX sever time zone

Hi guys thanks for the help for my previous posts.Now i have a requirement that i download a XMl file which has UTC time stamp.I need to convert UTC time into Unix server timezone. For ex if the time zone of unix server is CDT then i need to convert into CDT.whatever may be the system time... (5 Replies)
Discussion started by: mohanalakshmi
5 Replies

4. Solaris

modifying date and time and time zone on solaris 5.10 with (redundant server) veritas

I have a cluster of two Solaris server (veritas cluster). one working and the other is standby I am going to change the date on them , and am looking for a secure solution as it is giving an important service. my opinion is that the active one doesn't need to be restarted (if I don't change the... (1 Reply)
Discussion started by: barry1946
1 Replies

5. Infrastructure Monitoring

Solaris 10 - starting snmpdx at boot time on a port other than 161

Hi All, Can we start the snmpdx on another port at boot time on solaris 10 instead of the default 161 port? What is the configuration file to set this? We can make it run in a different port after the system boots up by using snmpdx -p port_number This requirement is because i have an... (1 Reply)
Discussion started by: Mr. Zer0
1 Replies

6. Shell Programming and Scripting

Convert Epoch Time to Standard Date and Time & Vice Versa

Hi guys, I know that this topic has been discuss numerous times, and I have search the net and this forum for it. However, non able to address the problem I faced so far. I am on Solaris Platform and unable to install additional packages like the GNU date and gawk to make use of their... (5 Replies)
Discussion started by: DrivesMeCrazy
5 Replies

7. SuSE

Time resetting to 00 HRS on starting

I Have a SUSE Linux Enterprise server 9.0. When I start the server , using date command I daily find that the time it is showing is 00.00 Hrs. It shows the date correctly. Every day I have to set the time using the date command. I am facing this proble from last 3 weeks but couldn't find a... (4 Replies)
Discussion started by: V.V.KUMAR
4 Replies

8. UNIX for Advanced & Expert Users

How To Provide Time Sync Using Nts-150 Time Server On Unix Network?

can anybody tel lme,how to instal NTS -150 on a unix network,it needs some patch to fetch time frm serve,,?? (2 Replies)
Discussion started by: pesty
2 Replies
Login or Register to Ask a Question
xmount(1)							      xmount								 xmount(1)

NAME
xmount - Tool to crossmount between multiple input and output harddisk image files SYNOPSIS
xmount [[fopts] [mopts]] <ifile> [<ifile> [...]] <mntp> DESCRIPTION
xmount allows you to convert on-the-fly between multiple input and output harddisk image types. xmount creates a virtual file system using FUSE (Filesystem in Userspace) that contains a virtual representation of the input image. The virtual representation can be in raw DD, Vir- tualBox's virtual disk file format, Microsoft's Virtual Hard Disk Image format or in VmWare's VMDK file format. Input images can be raw DD, EWF (Expert Witness Compression Format) or AFF (Advanced Forensic Format) files. In addition, xmount also supports virtual write access to the output files that is redirected to a cache file. This makes it possible to boot acquired harddisk images using QEMU, KVM, VirtualBox, VmWare or alike. OPTIONS
fopts: (Options specific to FUSE) -d: Enable FUSE's and xmount's debug mode. -h: Display this help message. -s: Run single threaded. -o no_allow_other: Disable automatic addition of FUSE's allow_other option. -o <fmopts> : Specify fuse mount options. Will also disable automatic addition of FUSE's allow_other option! INFO: For VMDK emulation, you have to uncomment "user_allow_other" in /etc/fuse.conf or run xmount as root. mopts: (Options specific to xmount) --cache <file> : Enable virtual write support and set cachefile to use. --in <type> : Specify input image type. Type can be "dd" or "ewf". --info : Print out some infos about used compiler and libraries. --out <type> : Specify output image type. Type can be "dd", "vdi", "vhd", "vmdk(s)". --owcache <file> : Same as --cache <file> but overwrites existing cache. --rw <cache_file> : Same as --cache. --version : Same as --info. INFO: Input and output image type defaults to "dd" if not specified. ifile: Input image file. If you use EWF files, you have to specify all image segments! (If your shell supports it, you can use .E?? as file extension to specify them files) mntp: Mount point where virtual files should be located. BUGS
Hopefully none. If you find any, please e-mail to <bugs@pinguin.lu>. EXAMPLE
To xmount an EWF image from your acquired disk as a raw DD image under /mnt, use the following command: xmount --in ewf ./acquired_disk.E?? /mnt To xmount the same ewf image as vdi file, you would use a command like this: xmount --in ewf --out vdi ./acquired_disk.E?? /mnt And to enable virtual write support on a raw DD input image xmounted as VDI file: xmount --out vdi --cache ./acquired_disk.cache ./acquired_disk.dd /mnt Gillen Daniel May 9, 2012 xmount(1)