How to import image file of OS

I was give an .img file of a server......I didn't receive a vm.vfg file at all, I the image was just simply copied from the running_pool on the oracle vm server after it was shut down.  Now...can I import this image into another oracle vm server using vm manager or some commands on the oracle vm server itself?  I was also sent the following information...
more dns
# Automatically generated xen config file
name = "dns"
memory = "256"
disk = [ 'file:/OVS/running_pool/dns.img,xvda,w', ]
vif = [ 'mac=00:16:3e:2a:4d:73, bridge=xenbr0', ]
vfb = ["type=vnc,vncunused=1"]
uuid = "4f91b207-a6a5-5bec-9ada-d60cc9254ce5"
bootloader="/usr/bin/pygrub"
vcpus=1
on_reboot   = 'restart'
on_crash    = 'restart'
This was generated on the original oracle vm server....should I edit that to reflect the uuid of the new oracle vm server and can I create my own vm.cfg file?  The server where this image come from does not have oracle vm manager controlling it, the admin has simply been using the oracle vm server interface itself to mount the domains..is there a way to generate a template from just the oracle vm server and not using the manager?

I would change the name if the image file to something meaningful and simply copy the image file to the storage repository /OVS/Repositories/[YOUR Repo]/VirtualDisks and then simply rescan the storage repo. That should "import" the new image to your repo and make it available for use.
The information shown about the VM indicates that the boot loader is pygrub - that would make this guest a PVM one, so you could simply create a new PVM in OVMM and choose the just imported vdisk as its first disk. The info for this guest also suggests that it's MAC-Address is 00:16:3e:2a:4d:73, so you will need to adjust the settings inside the guest once it is running on you new OVMs.
Hth

Similar Messages

  • IndesingCS2 server scriptable pluign: how to import image file into a frame.?

    Hello<br />I am creating a scriptable pluign for indesingcs2 server.<br />Now I am stuck at importing a image file in a image frame on a document.<br />The code which was running fine for indesingcs2 desktop is given below.<br />/////////////////////////////////////////////////////////////////////////////////////// ///////////<br />     IDFile sysFile = SDKUtilities::PMStringToSysFile(const_cast<PMString* >(&ImageFileNamewithcompletepath));     <br />     InterfacePtr<ICommand> importCmd(CmdUtils::CreateCommand(kImportAndLoadPlaceGunCmdBoss));<br />     if(!importCmd) <br />          return kFalse;          <br />InterfacePtr<IImportFileCmdData> importFileCmdData(importCmd, IID_IIMPORTFILECMDDATA); <br />     if(!importFileCmdData)<br />          return kFalse;<br /><br />     <br /><br />     //db is input.I got it using the techniques mentioned in the indesign-server-plugin-techniques.pdf<br />     //page 18..<br />     importFileCmdData->Set(db, sysFile, kMinimalUI);<br />     ErrorCode err = CmdUtils::ProcessCommand(importCmd);<br />     if(err != kSuccess) <br />          return kFalse;<br /><br />     InterfacePtr<IPlaceGun> placeGun(db, db->GetRootUID(), UseDefaultIID());<br />     if(!placeGun)<br />          return kFalse;<br /><br />     <br />     UIDRef placedItem(db, placeGun->GetItemUID());<br /><br />     InterfacePtr<ICommand> replaceCmd(CmdUtils::CreateCommand(kReplaceCmdBoss));<br />     if (replaceCmd == nil)<br />          return kFalse;<br /><br />     InterfacePtr<IReplaceCmdData>iRepData(replaceCmd, IID_IREPLACECMDDATA);<br />     if(!iRepData)<br />          return kFalse;<br />     <br />     iRepData->Set(db, imageBox.GetUID(), placedItem.GetUID(), kFalse);<br /><br />     ErrorCode status = CmdUtils::ProcessCommand(replaceCmd);<br />     if(status==kFailure)<br />          return kFalse;<br /><br />     return kTrue;<br />/////////////////////////////////////////////////////////////////////////////////////// //////////<br />I used the same code for making scriptable plugin for indesignCS2 server as it doesn't involve use of any UI element.<br />But this code is not working.It doesn't crash or returns kFalse.<br />What i see after executing the plugin through script is a grey region for image in the graphics frame.<br /><br />I request if anyone gives me solution to this i will be highly grateful to him.<br /><br />Thanks and Regards,<br />Yogesh Joshi

    Actually, your code is working fine, as there are no returned errors, asserts or crashes.
    The reason you are just seeing a gray box, is that the display performance is set to the lowest level in InDesign Server for performance reasons.
    Hint: Open the document in "desktop" InDesign, right click on the image, and look at the Display Performance settings for the image.
    See
    Ken Sadahiro, "[CS2 Server] Controlling display performance, how?" #1, 23 Feb 2006 8:01 am
    You can of course programmatically change it to the normal or high res settings from within your plug-in, but it might slow down the performance of InDesign Server a bit.
    One additional comment:
    In your code where you do this:
    importFileCmdData->Set(db, sysFile, kMinimalUI);
    I would do this, just to be safe:
    if (LocaleSetting::GetLocale().IsProductFS(kInDesignServerProductFS )) { importFileCmdData->Set(db, sysFile, kSuppressUI); } else { importFileCmdData->Set(db, sysFile, kMinimalUI); }

  • How to import multiple files to the frame area?

    How do I import multiple files to create animated GIF's. I
    know how to import multiple files into the Fireworks, but if I'm
    trying to create an animated gif that has alot of files, How do I
    get them into the frames area. It is really a pain importing each
    and every file one at a time frame by frame

    merry1
    after you bring in all your images to the canvas, select all
    and in the
    Frames Options drop down, select Distribute to Frames.
    You can bring multiple images onto the canvas by copy and
    pasting from
    the folder(s) where they exist.
    alex
    merry1 wrote:
    > How do I import multiple files to create animated GIF's.
    I know how to import
    > multiple files into the Fireworks, but if I'm trying to
    create an animated gif
    > that has alot of files, How do I get them into the
    frames area. It is really a
    > pain importing each and every file one at a time frame
    by frame
    >

  • How to store image files in oracle DB

    Hi,
    I am new to working with database.
    Please let me know how to store image files in Database using insert command.
    Thanks,
    Ramesh Yakkala.

    Hi,
    You need to create a directory object to import these files:
    Take a look on the example below:
    eg:
    CREATE TABLE MY_IMAGE_TABLE (
    ID NUMBER,
    NAME VARCHAR2(20),
    IMAGE BLOB);
    CREATE OR REPLACE DIRECTORY IMAGES AS '/tmp';
    GRANT READ, WRITE ON DIRECTORY IMAGES TO PUBLIC;
    CREATE OR REPLACE PROCEDURE load_file_to_my_table (p_file_name IN MY_IMAGE_TABLE.NAME%TYPE) AS
    v_bfile BFILE;
    v_blob BLOB;
    BEGIN
    INSERT INTO MY_IMAGE_TABLE (id, name, image)
    VALUES (1, p_file_name, empty_blob())
    RETURN doc INTO v_blob;
    v_bfile := BFILENAME('IMAGES', p_file_name);
    Dbms_Lob.Fileopen(v_bfile, Dbms_Lob.File_Readonly);
    Dbms_Lob.Loadfromfile(v_blob, v_bfile, Dbms_Lob.Getlength(v_bfile));
    Dbms_Lob.Fileclose(v_bfile);
    COMMIT;
    END;
    SQL> execute load_file_to_my_table('myfhoto.jpg');Cheers

  • Cannot Import Image Files

    Hello, I'm having a issue that has suddenly and unexpectedly happened. After Effects will no longer allow me to import image files. I'm running a Mac with Yosemite. I've deleted preferences, I've restarted the computer. The only thing I haven't done is uninstalled and reinstalled.
    Any thoughts on this perplexing issue would be great. Using After Effects CC14

    dlwatson86 wrote:
    Looks like a fresh install of the program has fixed the problem.
    That's bizarre. A reinstall used to be the first thing we'd do (back in ye olde AEv1.0 - v4.0 days). It's the last thing to try these days. But, AE is one of the more complex apps you'll ever have on your machine. I suppose it's possible still as brittle as the olden days.
    There are many dangerous methods Mac people try when trashing an application in Yosemite. Most of us have no clue where all of the fiddly bits are hidden. How did you accomplish your reinstall?
    I wonder if any of the AE wonks or Adobe folks have an opinion on when reinstalling is simply the easiest thing to do. Is reinstalling only a reasonable option for specific issues?

  • How to import MXF files to Final Cut Pro with smooth editing

    Summary: Follow this tutorial to learn how to import and edit MXF files in Final Cut Pro by converting MTS to FCP native format.
    If you have a Panasonic P2, Canon XF or Sony XDCAM series camcorder,
    you may be familiar with Material eXchange Format (MXF). Though MXF is a
    great video format to record high-definition videos, it is not easy to
    use in that they are not natively supported by most NLE systems like
    Final Cut Pro. In order to import MXF to FCP for editing, the easy workaround is to transcode MXF files to FCP compatible video formats.
    Along with some help from a top MXF Converter, it can be done. To
    help those who wanna edit MXF files in FCP without problems, here I
    share with you a simple guide on how to convert MXF files to edit in
    Final Cut Pro 6/7 or FCP X.
    First of all, downloading the App- Brorsoft MXF Converter for Mac
    Overall, the program is a professional yet easy-to-use MXF Converter
    on Mac (Mavericks included) which can not only convert XF100, Canon
    C300, XF105 and XF305, Panasonic P2 recorded MXF files, but also provide
    simple video editing functions for you. The MXF to FCP Converter not
    only can convert MXF to ProRes for FCP, but also can transcode MXF
    videos for editing in Avid MC, Adobe Premiere Pro, iMovie, FCE, etc.
    Just download it and follow the tutorial below to get the work done.
    Transcoding (P2) MXF files to ProRes for Final Cut Pro 6/7/X
    1. Import MXF files to the converter
    Launch the best MXF to FCP Converter, and then click the “add files” button to browse and import MXF videos from your camcorder or hard drive.
    2. Select FCP editable format
    Click the Format bar, and move mouse cursor to choose “Final Cut Pro > Apple ProRes 422 (*.mov)” as output format.
    Tips:
    a. Settings- click to set video
    resolution(1920×1080/1440×1080/1280×720/720×480), bitrate (from 1Mbps to
    20Mbps), frame rate (24p/30p)
    b. Editor (next to “Add” icon)- click to set deinterlace, trim, crop, add effect, attach subtitles, etc
    3. Start transcoding MXF video to FCP
    Click “Convert” button to start converting MXF files to Apple ProRes
    MOV for FCP 6/7/X under Mac OS. Once the MXF to ProRes 422 conversion
    is done, you can transfer MXF footage into Final Cut Pro (X) for editing
    smoothly on Mac with ease.
    Source:How to import MXF files to Final Cut Pro with smooth editing
    [quote] jacknjchn.tumblr.com/post/76914947404/cant-import-mxf-footage-to-fcp-transcoding-mxf-to-fcp [/quote]

    You may refer to this step by step guide on how to convert MXF to Final Cut Pro more supported Apple ProRes or DV at http://www.idealshare.net/imovie-fcp/mxf-final-cut-pro.html
    It also applies to convert MXF to other video or audio format. It even applies to convert other videos like AVCHD, MOD, TOD, AVI, and MPEG etc to FCP format.

  • How to import WAR files in NetBeans 6.1?

    Please any one tell me how to import WAR files in NetBeans 6.1?

    I have been using NetBeans for so many diff project but till now i didn't get chance to import WAR. But there i tried one wat as follows:
    New Project -----> Enterprise ----> package Archive ...... it shows me creating project bar at right bottom bur i cannot see any such project at project window as weel as specified location pecified at the time of creation.

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • How to import .pdf files into iBooks?

    How to import .pdf files into iBooks?

    Or send the file from your computer to your ipod by emailing yourself the pdf. Then if you open the Mail client and you open the pdf there is an option to select open in ibooks. It will save it to your device for remote viewing.

  • How to import DivX files???

    How to import DivX files??? File format not supported... Adobe Premiere Pro CS4.

    I am with you, as I get handed all sorts of "stuff." I have a normal workflow, with about anything but DV-AVI (I only do SD for now), and that is do a batch conversion with DigitalMedia Converter. I have also found that some other NLE's are more lenient, regarding odd CODEC's. I have used PrElements, CyberLink PowerDirector (does DivX pretty well, with the CODEC installed) and Magix MovieProducer Pro.
    Still, PrPro is my NLE of choice by a great stretch, and I just use the others as tools to get the media in the proper form. I have been amazed at the spectrum of formats/CODEC's that people come up with, but also by how well (when you factor out those heavily compressed deliver-only format/CODEC's and the quality loss) I can convert, and then edit some of this stuff.
    It's just the way that it goes. It's like the client, who comes in with a DVD, created in some DVR unit, and wants it edited and shipped off on another DVD. Quality loss with 2x MPEG-2 Transcodes, and the first VOB is going to also have cr*p Menus and navigation, that I have to rip around. Still, the job gets done.
    With the Moyea FLV Importer for Premiere, I can even edit that junk, when they pull something off of YouTube (only if the © issues can be handled).
    Good luck, and sorry for the bad news. PrPro is very sensitive to the CODEC's that it will edit with. Others, well not so much, but who would want to edit with them?
    Hunt
    [Edit] PS - I have never been able to Export to Xvid, though I can Export to DivX just fine. Xvid hangs PrPro, and PrE too.
    Message was edited by: Bill Hunt - Added [Edit]

  • How to import images in Application

    I know how to import images in Applet. Can anybody give me small example of how to import images in Application?

    import is a bad word to use in this context
    it's better to say 'how to load an image' i guess
    at any rate, there are 50 million articles, postings, samples, etc. that deal with loading images in Java
    search google

  • How to import *.dmp file Through Oracle SQL Developer (3.2.20.09)

    hi
    how to import *.dmp file Through Oracle SQL Developer (3.2.20.09) ?
    how to do it ?
    thanks

    You do not.
    .dmp files are created from our Export and Data Pump database utilities and are proprietary files. You use the corresponding Import (or Data Pump) utility to import the data.

  • How to import WMV file for use in adobe programs, especially After Effects and/or Premier?

    How to import WMV file for use in adobe programs, especially After Effects and/or Premier?

    I have the latest adobe creative cloud and i'm using Mac 10.8.2
    My client gave me a wmv file that she wants some people blurred out in the background but when I go to import the media, it's greyed out. I'm assuming that After Effects will be the best solution for this, but maybe there is another way.
    I can purchase a video converter and convert it to .mov but that costs extra money that I don't want to spend just to do this one project.

  • How to Import .txt files in ORACLE having 300 thousand records

    How to Import .txt files in ORACLE having 300 thousand records. Kindly help me in that context

    You can make use of Sql*Loader utility and You can also use External table technique for this puspose.
    For external table go through this link.
    http://www.oracle-base.com/articles/9i/ExternalTables9i.php
    Regards

  • How to Import AVCHD Files?

    I recently purchased a Sony HandyCam HDR-SR10 Camera. I love the camera overall but now i have video files that i need to put on my computer. After speaking with Sony Support they said that in order to transfer files i must use the camera as a hard drive basic stuff just click and drag. However i ran into the problem that all of my AVCHD Files were not able to be opened by any program. After reading up and looking around i found that it seems Final Cut Express 4 now has the ability to import AVCHD files DIRECTLY from the camera to Final Cut Express... I really would like to know how to do this in Final Cut Express.... Any Help, Insights, or Tutorials, would be GREATLY appreciated. I really just need to know how to import the files to my computer and be able to edit them.....
    -- thanks in advance.... charlie

    For starters, watch the FCE4 Built-In AVCHD Quicktour
    There are tutorials also.

Maybe you are looking for