How to create incremental flash archive?

Hi all,
For ease of installation, I created an flash archive of an Solaris server using flarcreate. Since there are some changes to the system since the date of creation, I would like to update that flash archive the changes we have made. I understand that there is a way to update flash archive, but just don't know which command to use and its syntax. Would appreciate if someone can help, thanks!

Thanks Solarisfan. It works!
However, there is some error while generating the differential archive. Do you guys have any idea what it is?
Here is the command I use:
flar create -n wp22diffarchive1 -A /var/flashtest/S9.wp22.flashimage -c -x /var/flashtest/ wp22diffarchive1.flar
// where S9.wp22.flashimage is the original image which stored in /var/flashtest directory.
Here is the error message I got:
Differential Flash
Checking integrity...
Integrity OK.
WARNING: fdo: Ignoring duplicate filter entry. Choosen entry will be: /vol .
Running precreation scripts...
Precreation scripts done.
Determining the size of the archive...
fdo: ERROR: Error during file comparsion.
1 blocks
The archive will be approximately 384.49KB.
Creating the archive...
fdo: ERROR: Error during file comparsion.
1 blocks
Unable to write archive file.
ERROR: Unable to write archive.
//The differential archive is generated and size is about 384kb.
I am not sure whether these errors can be ignored or not. Any comments? Thanks!

Similar Messages

  • How to create a flash archive of cdrom -s boot?

    Hi All,
    I would like to create a flash image of a balde 100 with a SUNWrneq install. I tried to flash this install by booting off the cdrom in single user mode. I originally loaded the HD with 2 partitions; / on s0 and swap on s1, then I mounted so to /a on the cdrom and then I ran the following flarcreate command:
    flarcreate -n flash_root -c -S -R /a -e root_archive -x /aflash -x /tmp/root -a me /a/flash/SUNWCrneq-solaris-10-GA.flar
    The error message is as follows:
    File size of "flash/SUNWCrneq-solaris-10-GA.flar" has increased by 2121474920 blocks
    1 error(s)
    Archive creation complete
    flar -i against the archive says that the archive is unreadable.
    Please, can someone explain to me what I am doing wrong?
    Thanks in advance,
    Phil

    Hi Phil,
    Maybe a typo. Your command does not omit the directory /a/flash but /aflash. You could amending this or, try creating a filesystem with your original swap area and mounting the on /tmp/b and sending flar image there.
    flarcreate -n flash_root -c -S -R /a -e root_archive -x /aflash -x /tmp/root -a me /a/flash/SUNWCrneq-solaris-10-GA.flar
    Regards
    Will.

  • How to create dis flash slide down navigator

    hi to all flash fanatic,
    i'm novice in flash bt i can already create a simple
    animation in full flash.
    In my project ryt nw my client ask me to copy d design of
    this website "
    http://moniquelhuillier.com/index2.html"
    bt i dont knw how to create dis design specifically d its
    navigation design.
    f u go to dt site, wen u press d navigational link, it moves
    downward.
    It s d design dt iwant to ask on how to create dis kind of
    navigation in full flash site.
    many tnx an advnce for d help & hopefully asap.
    tnx
    - norman-RP -

    http://www.google.co.in/#hl=en&source=hp&q=republic+of+code+xml+gallery&oq=republic+of+cod e+&aq=1&aqi=g10&aql=1&gs_sm=c&gs_upl=120120l122229l0l135767l17l10l0l0l0l0l412l1811l4.2.3.0 .1l10&bav=on.2,or.r_gc.r_pw.&fp=bdf9e41683b1cd0a&biw=1024&bih=609

  • How to create a flash menu that links to specific slides with in a Captivate swf

    Hi,
    I was wondering if someone could step by step explain how to
    create a menu in flash that links to specific slides with in a
    captivate swf. I understand that there is a rdcmndGotoSlide
    command. I can't seem to get it to work.
    Thanks,

    pdp_1 wrote:
    Hi!
    I would like to create a DVD menu that offers two languages. So the first page gives two options: Language 1 and Language 2. Then depending on which language you choose, you go to a menu that proposes different videos and a photo slideshow.
    Regardless on which language button you click on initially, you get the same content but in different languages.
    I've been looking at Premiere's templates, which I can certainly customize, but I really don't see how to create the double menu. Does anybody have an idea?
    Put the video with the first language on the timeline followed by the video with the second language.  Use chapter markers so you can have each video as a chapter in the menu.
    I use Premiere Pro, so I can't give more specific directions. Perhaps somebody like ATR will chime in.
    Also, I have another question: can I put videos from different projects in the same DVD with Premiere or must all of the videos that go into the DVD be in the same project?
    Thank you very much!!!
    pdp1
    They must be in the same project.

  • How to create a flash automatization script?

    Here's the situation. I have a font support library, however for each font I have to manually create a new swf file, such as Tahoma_14_bold.swf - which is a lot of work.
    I need to create a Flash automatization script (extension or command, NOT AS3 code) that automatically opens up a file, changes the font of a pre-existing textfield on the stage to, for example, Tahoma Regular 10 with bitmap font setting, saves it as Tahoma_Regular_10.fla in a destination directory, compile, then change the font size to 11, save it as Tahoma_Regular_11.fla, compile and so on and so forth, up until all fonts are created.
    The end result would be 30 or so swf and fla files for each possible variation of the font.
    How would I go around doing this? Is this at all possible?

    1. Efficiency:
    Application has a fontStyle manager. The application never (outside of debugging purposes) creates textfields by itself. All textfields used to display text are created by a call to the fonts manager, like "fontsStyleManager.createFont("header1");"
    As such, each fontStyle has an associated font SWF and other textField parameters. The website owner can specify which particular font SWFs are to be loaded at start, and all unused font SWFs are highlighted, to be deleted of the list.
    2. Flash font embedding sucks
    Flash embedding sucks. I've had whole projects refuse to compile and not even display any messages. I had fonts that changes sizes and font faces. I've had fonts not embed at all, even though I specified explicitly for them to be included. Embeding by code and at runtime is cleaner, and it works
    3. Neccesity
    Embedding fonts from Flex embeds all European characters including German, Greek, Norwegian and so on.. except Polish. In here I can specify my own precise character set using the flash IDE.
    4. Fonts in Flash are complicated
    Normal, vector fonts are embedded easy. Size doesn't matter, as the font can clearly scale to any size and remain nicely anti-aliased. Embeding a Bold style doesn't mean yhou embed a Regular. Bitmap fonts are embeded by font size, that is, embeding a 14px bitmap won't make it possible to use a 16px. In addition, embedding a Bold doesn't embed a Regular bitmap font. What's interesting is that you can take a 12px embed font and set the TextFormat to, say, 22px, and get a very interesting-looking pixel effect, as the font gets scaled up.
    5. Flexibility - the ability to see a completely different set of fonts in your project without having to recompile - priceless.

  • How to create a flash button, for mobile phones?

    i want to know the way how i can create a flash button for mobile in flash CS4.

    Create a button of type "button",set the destination url property to the place u have kept the file.But ur file should be anywhere in Common_top.If this file is stored as blob u can use messagedownload bean.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to create a flash quiz based on circling the correct answer?

    Hi all,
    I am quite new to actionscripting and need to create a flash based quiz.
    The user will have to circle the correct answer in the quiz.
    I do know of drag and drop function but didn't know how to create circling function.
    Please advise how should I get started.
    Thank you in advance.
    Regards,
    Chewy

    Hi all,
    I am quite new to actionscripting and need to create a flash based quiz.
    The user will have to circle the correct answer in the quiz.
    I do know of drag and drop function but didn't know how to create circling function.
    Please advise how should I get started.
    Thank you in advance.
    Regards,
    Chewy

  • How to create a Flash skin/player

    Is there a way to create a flash player with
    play,pause,wd,ff,volume controls, that will work for all FLVs in
    one same location? something like the Windows player will pop up
    everytime you click on a movie or mp3 file. I'm just looking for a
    way to not to create 2 files (FLV and SWF) per movie. Thanks for
    your help!!!!!

    Yes you can with our tools and Flash.
    Please download the example file to see it working
    http://flashjester.com/index.php?section=faq_search&search=flv#385
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • How to create a Flash Sound On/Off Button

    I created a flash intro with background music, I want to be
    able to turn the sound off and on. I tried the tutorial (
    http://www.entheosweb.com/Flash/flash_sound_button.asp).
    This is the error I get.
    Target not found: Target="../sound" Base="_level0.music"
    Any tips would be a great help.

    search google for a tutorial on using the sound class. that
    tutorial you referenced is antiquated.

  • How to create Live and Archive Streaming URLs??

    Hello Pros,
    I am new to QT Streaming Server, and how it is setup and delivered. Please take it easy on me. Here are my questions.
    Our school has been using Helix (Real) Server to deliver some video content via Live/Archive streaming video. The school will be changing a format to QuickTime Streaming server to move away from Real. We would like to deliver MPEG4 file via Live Streaming and archive. We set up QT Streaming Server and we can deliver video now.
    How do you create and display URLs on a webpage to share live and archive movies? In RealServer, you can list URLs with live and archive, and RealPlayer opens separately and play movie. The videos are lectures so the website will have list of lecture links as we record every week.
    If I click this link, a RealPlayer opens and start playing. Currently, I know that “sdp” file is assigned under RealPlayer. When I changed it to QuickTime Player, the player does not open to play movie. Is there way for me to setup URL to open it in external player? We are not interested in making the movie playable inside webpage. We would like to let viewers have option to stretch the movie player to view larger image if they wish. Strange thing is that when the live movie is played in RealPlayer, the image size is smaller that what we stream (320x240). How is it possible? I am confused…
    How about archived streaming URLs? I have seen sites with embedded movie in the webpage, but how do you make links that when a viewer click the URL, it will start QuickTime Player externally instead of open it in new webpage? Is this possible? In RealServer, you can use “ramgen” code in a part of URL to open RealPlayer to play a movie.
    Any help will be appreciated it.
    Thank you.
    Reed
    G5, PB 17, Xserver, XSAN Mac OS X (10.4.7)
    G5, PB 17, XServe, XSAN   Mac OS X (10.4.7)  

    The Photoshop Forums (mac & PC) can be found here:
    Photoshop Windows
    Photoshop Macintosh

  • How to create a Flash player that multiply source.

    Hi,
    I am trying to create a embedded flash player that can have
    at least 2 source link of the FLV files. Which mean if the first
    source link of the FLV file is not accessiable, then the player
    will go to the second source. How can i do this? Thanks

    You CAN'T do it with Flash Player. You'd need Flash Professional and you'll need to learn Actionscript. I've been through the Lynda.com training for Flash, and it's not something you learn in a few minutes or even hours, or can be gleened from a guide. It takes days and possibly weeks, even if you're already good with Photoshop and/or Illustrator and Fireworks.

  • How to create uniform size archive logs?

    DB version 11.2.0.3
    OS solaris.
    i have 6 online redo log groups.
    i want that my archive logs file always create of uniform size of 50MB each?

    Asad99 wrote:
    DB version 11.2.0.3
    OS solaris.
    i have 6 online redo log groups.
    i want that my archive logs file always create of uniform size of 50MB each?Why do you care about the size of an individual archivelog? What problem does that solve?
    Archivelogs are simply "backup" copies of the online redologs. So in general, an archivelog will be the same size as the online redolog that it is archiving. It may happen to be be smaller in some circumstances that cause a log switch before an online redo log is full.

  • How to create a Flash Wrapper for Captivate 5.5

    I just run into the following articule, "Developing a Flash Wrapper for Adobe Captivate " The author told that it is based on Action Script 2.0. Is there any information available creating the wrapper using Action Script 3.0? Where can I find the information related to this topic?
    http://www.connectusers.com/tutorials/2009/02/certificates/index.php

    That article was, of course, written outside of Adobe... I don't know of any Adobe-specific resources to help develop such a 'wrapper'... But there may be other third-party options.
    The link you point to discusses doing this for sake of a certificate. Is that what you need? There are 'widgets' available for Captivate that may satisfy your need...
    Or here's an article discussing development of such a widget, which may apply to what you're looking for:
    http://blogs.adobe.com/captivate/2010/12/advanced-adobe-captivate-widget-creation-another- experience-in-vicarious-elearning.html

  • Creating a Flash Archive of a Zoned System and using it for JumpStart

    Hi,
    I've searched on Internet for this topic and so far found only infos that tell me this is not supported yet. Is it still the case or maybe there are some patches already avaialble which can help ?
    If this is still not possible to achieve, is there any way to effectivly clone system with zfs and zones ?
    Cheers,
    Tom

    Flash archive will not include zone configuration in the image, so it is not possible to use it in Jumpstart. No patches available for this.
    I have done cloning using Ops Center, need to explore doing it manually, something should be there.

  • Flash 9 How to create a new button?

    Hello there,
    I'm sure you've all been in my spot in the beginning and I'm
    hoping someone can please guide me thru to learn how to create in
    Flash 9 a new button. I was about to import a jpg to my stage and
    was able to create snow effects. Unfortunately, I don't know how to
    embed this to a url. Can someone please help me?
    Thank you in advance,
    RoboLeah

    Hi
    I believe that you should look at the Forms functionality for UCM . Under Content Management - Web Form Editor will show up the editor where in you can add buttons and attach functionalities to it . With UCM 11g this is not available thus you might need to use AJAX to build the requirement .
    Thanks
    Srinath

Maybe you are looking for

  • Factory Finder failure and _tmmsgrcv() SEGV

    Hello, we have a rather strange problem with WLE 5.1. One type of process, QD, occasionally experiences a SEGV inside _tmmsgrcv(). The SEGV is usually preceeded by a failure from the factory finder. QD is a process that converts /Q messages into Crob

  • Formatting source codes

    I don't if i post it in the correct forum. I am trying to find a way to break up a sources code so that it can be interpreted in the form of methods,fields,constructors so that i can exact out the information, like how Netbeans extract the informatio

  • I can't add my credit kart

    Hi Guys . I have a credit card for today. I wanted this just add, but now I am told I should look for a different payment method. Why not do that? can someone tell me? I do not quite understand that, unfortunately? pls help me thanks for help guys

  • Re: Qosmio x770-136 - How to watch movies in 3D using VLC player

    Hi I've just got a Qosmio X770-136 laptop. How do i work the 3d? I've got downloaded movies to play through VLC. Am i right in thinking the laptop changes them over to 3D? Mine doesnt seem to be working?

  • Data Extract - Partitioning

    Hello, I have a table containing 3 columns Department Name, RiskScenario and Cost. I am trying to create a data extract that contains the top 3 Risk Scenarios (sorted by Cost) per Department. I tried using this sql statement in MSQuery but it doesn't