WAVE-694 IOS Image Backup Procedure

Dear all,
Hi, I'm trying to take IOS image backup of WAVE-694.
However, the normal router copy command(copy flash; tftp; or usbflash0;) doesn't work on the WAVE-694.
Please share me any procedure to take backup of IOS image for WAVE-694.
Thank you in advance.
Best Regards,
Hitoshi

Hi Hitoshi,
The WAAS software is not packed into a single file as the one of a router and you don't have access to the OS file system so there is no way to backup it.
What you can do is download the install packages/recovery ISO images from the following link and use them in case you need to rebuild a WAAS device:
http://software.cisco.com/download/release.html?mdfid=280484571&flowid=122&softwareid=280836712&release=4.4.5a
Regards,
Nicolas

Similar Messages

  • How do you backup a Cisco 2950 IOS image?

    I cant find anywhere on Cisco's website on how to do this or anywhere else for that matter.

    Hector,
    The copy tftp method is the most commonly used method to copy files from flash to a TFTP server or vice versa. But if you have CMS (cluster management suite) instlled on your flash, there will be an associated html folder and many other files that are extracted in flash. To upload these files, along with the IOS image, you will need to use the following command.
    archive upload-sw tftp:///IOS-CMS2950.tar
    This will compress all the files (IOS and CMS files) together in a tar (compressed) format and upload it to the TFTP server specified by
    Copying each of the above files individually will consume a lot of time.

  • Yoga 2 13 system image backup question

    Hello:
    I just bought a Yoga 2 13" ultrabook with 128Gb solid state drive. I tried to make an initial system image backup according to the steps in the manual, but could not do it. The manual instructs me to use the Novo button to invoke a menu with "System Backup" as an option. There is no such option on the menu. I found a post on this forum that directed another person to use the Windows 8.1 control panel system backup option.
    I did make a Windows 8.1 system image backup, but now I have no idea of what I should do to perform a restore, should I need one.
    Is there a conventional process by which I create a USB bootable disk that can then be used to restore the Windows 8.1 image? Or does the OneKey restore have that as an option?
    Bottom line problem is:
    I need to make a system image backup that I can use to restore all of my partitions, should I need to do so. And I need the procedure for doing the restore.
    Thanks!

    Hi Rudy1212,
    Welcome to Lenovo Community!
    I understand your concern and the OS (Operating System) can only be backed up in a USB Flash Drive. Below is the link to perform the same:
    How to Create a USB Recovery Drive and Use it to Recover Windows 8/8.1?
    Do post us back for further queries
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Is there some way to create a mirror image backup of iPhone and iPad ?

    Is there some way to create a mirror image backup of iPhone and iPad ? At this time our company has over 250 devices that are constantly being upgraded and passed down the line. it would speed things up considerably if there was a way to mirror the old device and then restore it on the new Phone or iPad. I don't care about any of the other features in iTunes, i just need something to speed up the process without having to walk them thru reintering their passwords, redownloadeing all the apps that didn't transfer ect.

    You would need to tell each user to make sure they backup their devices either thru itunes or icloud.
    With a company like yours, you should suggest backing up to icloud.
    IOS backup http://support.apple.com/kb/HT1766  then when the user gets a new phone, you or they can just restore from their icloud.
    The only hard part would be if the user has music (non purchased from itunes) which they would need to sync to itunes to get back on their phone.
    there is no easy process for this.  I'm in the same boat as you but way fewer people to deal with.

  • Deleting an image backup in Windows 8.1

    How to safely delete an image backup under Windows 8.1 to free up disk space?

    if your concern regarding disk space, rather than deleting image backup, you still can do this
    http://windows.microsoft.com/en-us/windows-8/free-up-disk-space
    but you can delete Windows Image Backup folder manually, only UAC prompt will be pop up
    you can read the whole document regarding your concern here
    http://www.eightforums.com/tutorials/8956-system-image-create-windows-8-a.html

  • Missing partitions after running Recovery from previous System Image Backup in Windows 8.1

    After running Recovery from a recent Sytem Image Backup the LRS_ESP partition is now missing and the Used space on the  PBR_DRV partition is reported as 95.20MB while it previously reported 9.52GB in use. The WINRE_DRV, SYSTEM_DRV, Windows8_OS and D:LENOVO partions appear to be OK. 
    I ran the Recover after replacing the original 500GB HDD with a 1TB. Any details/links/recommendations on recreating/correcting the LRS_ESP and PBR_DRV partitions? Thanks!

    Here are the before and after partition details obtained through Partition Wizard:
    Link to image 1
    Link to image 2
    Moderator note: large image(s) converted to link(s):  About Posting Pictures In The Forums

  • [Forum FAQ] Schedule multiple versions of System Image Backup in Windows 8.1

    As we known that there is no UI for user to configure Image backup in Windows 8.1, this is a guide for your to schedule multiple versions of System Image Backup.
    Step 1: Create a task to schedule an image backup with following command:
    SCHTASKS /Create /SC WEEKLY /D MON /TN WeeklyFullBackup /RL HIGHEST /ST 13:00 /TR “wbAdmin Start Backup -backupTarget:F: -include:C: -allCritical -quiet”
    Step 2: Schedule a robocopy to backup the saved image with BAT file:
    Please create a new folder (in this example, the new folder is e:\test2) to save your multiple copies of image backup:
    Write following batch file to copy backup and rename with backup date:
    *****************BAT********************
    @echo off
    robocopy e:\test1\ e:\test2\ test.wim
    ren e:\test2\test.wim  test_%date:~10,4%%date:~7,2%%date:~4,2%_%time:~0,2%%time:~3,2%.wim
    NOTE: e:\test2 is my location to save multiple copies of image backup; e:\test1 is the location I create the system image backup.
    This BAT can also help to rename the copy of image backup with date and time like below:
      3.  Set up a basic task in Task schedule:
    Note: please make sure the time you configured follows the time you set for image backup in Step 1.
    Action -> Create basic task (Name you task) -> Trigger (Set how often this task should be run) -> Action (Start a program) -> Under Program/script, point to your bat file you create in Step 2.b -> Finish
    At the end, you can know more about SCHTASKS and Robocopy via following links:
    Robocopy
    http://technet.microsoft.com/en-us/library/cc733145.aspx
    Schtasks
    http://technet.microsoft.com/en-us/library/cc725744.aspx
    Welcome to your feedbacks.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hi,
    Thanks for posting in Microsoft TechNet forums.
    I will try to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • System Image Backup in windows 8.1 not working

    Hi,
    I am trying to take system image backup on windows 8.1 with USB drive attached and I am getting the following error which is given at the end of the post. It always says the backup location is invalid.When I tried with -allCritical it fails with
    I tried to wbadmin enable backup, that also fails with "Warning:  The ENABLE BACKUP command is not supported in this version of Windows. The operation ended before completion."
    Can someone help with the wbadmin backup, please. It seems to be a red-herring.
    PS C:\WINDOWS\system32> wbadmin start backup -backupTarget:E: -include:c:
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2013 Microsoft Corporation. All rights reserved.
    Retrieving volume information...
    This will back up OS(C:) to E:.
    Do you want to start the backup operation?
    [Y] Yes [N] No Y
    ERROR - The specified backup location could not be found or is not a
    supported backup storage location.
    PS C:\WINDOWS\system32> wbadmin start backup -backupTarget:E: -include:c: -allCritical -quiet
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2013 Microsoft Corporation. All rights reserved.
    Retrieving volume information...
    This will back up ESP(EFI System Partition) (500.00 MB),OS(C:),(\\?\Volume{26a2e53d-6299-4ef1-a7e7-860f1e839ed6}\) to E:.
    ERROR - The specified backup location could not be found or is not a
    supported backup storage location.

    Hi,
    Thanks for posting in Microsoft TechNet forums.
    I will try to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • System Image Backups fails after upgrading to Windows 8.1 with 0x80040154

    Backed up a Windows 8.0 system to DVD with no issues. Upgraded the computer to 8.1, and now when we tried to backup the system to DVD, we are getting the error message "An error occurred, class not registered (0x80040154)"
    Anyone have any suggestions on how to fix this issue?
    Richard

    Hi,
    According to your description,did you format the BD-R disc ?
    Before you start system image backup, please format the BD-R disc.
    For more information, you may refer to:
    0x80040154 error may occur when you create a system image backup in Windows 8.1
    http://support.microsoft.com/kb/2934165/en-us
    Regards,
    Kelvin Xu
    TechNet Community Support

  • Is it possible to retrieve photos from an iPod Touch 5th Generstion iOS 7 backup to iTunes on a MacBook, without using any other iDevice?

    Is it possible to retrieve photos from an iPod Touch 5th Generation iOS 7 backup to iTunes on a MacBook, without using any other iDevice?
    I Backed up my iPod Touch 5th Generation iOS7 onti my MacBook using iTunes
    Later, I lost the iPod.
    I want to retrieve as much of the data, especially photos, as possible ftom the backup.
    I do not have another iPod to use the restore function.
    Is there any other way to retrieve the photos or any other data from the backup?

    You could restore an iPad or iPhone from the backup.
    Some of this apps are compatible with a Mac
    How to perform iPad recovery for photos, videos
    Wondershare Dr.Fone for iOS: iPhone Data Recovery - Wondershare Official     
    http://www.amacsoft.com/ipod-data-recovery.html

  • System Image Backup Failed During Backup

    I have a 2 year old HP pavilion g series notebook.  I was doing a system image backup onto dvd+r disks. It was nearly finished when on disk #99 I got this message "The Backup Failed. The system cannot find the path specified (0x80070003)  
    My computer is out of warranty and I'm out $60 in disks if they can't be used.  I need to know it there is a way to salvage what I saved and restart Image backup from where it left off?  
    Product: A6Z59UA #ABA
    Model: g61d60us
    This question was solved.
    View Solution.

    Hi CherylLyme,
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers.
    For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that you were doing an image backup and when it was nearly finished you received  the error (0x80070003).  Here is a link to a Microsoft answer to assist you. Windows backup error 0x80070003 ( Answered by Vinod N)
    I am unsure if you would be able to start again and pick up on disk 99, as once you have repaired it, it will have changed from when you first ran the backup.  The disk you used were not read, writeable, so you would not be able to reuse them.  You may find that an external drive would be a more economical way to do your backups. The data would be in one place and easier to store.  If you decide to use a USB stick it must not be more then 32GB and will not say Windows 8 on it.
    You can most likely purchase an External drive for about the cost of replacing the disks.  Here is a link to HP Shopping External storage , but you can purchase one at many places, computer shops, Staples,Walmart, and Office Depot are just a few.  I hope this helps.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • System Image Backup programmatically with c++

    Hi, is it possible with C++ to backup the whole system image of your PC, meaning not just coping files, but the whole
    operating system, with all its programs and files,
    and to schedule to do it like once a week, including all the drives specified, I
    have external HD 4TB, Seagate model (which i want to use as destination drive
    to store disk image on it). I was unable use to
    use Windows 7 System Image backup, since this type of HD (Seagate) is new and structured differently.
    I am aware of a software like DiskWizard which can be found at:
    http://www.seagate.com/support/internal-hard-drives/desktop-hard-drives/barracuda-xt/discwizard-master-dl/
    which does the job, however, they sell one license for 1 PC, and i would want for more then one PC, like for at least 3.
    Get back, thanks in advance.
    Gennady Gurin

    Actually the correct solution, is to get the free software :
    http://www.paragon-software.com/home/br-free/download.html
    Since i have an external drive which is 512E as i was told, and other my internal HDD(s) are 4k, so Windows 7 backup unable to do the job, however this software works together with different types of HDD(s), and you can even
    schedule a task, but the boot disk must be created first, then PDF file should be a great help, then backup VD, and add to schedule a task and
    after apply.
    Gennady Gurin

  • SYSTEM IMAGE BACKUP. WINDOWS 8.1

    Good day experts.
    When running Windows 8.1's 'System Image Backup', I recieve the attached error message:-
    I have ran SIB once sucessfully since upgrading to 8.1, but the second time I try to backup I get the error message.  I have tried formatting my backup drive & still the problem persists.  Could this be yet another glich with the os.
    Thanks for reading.  Can anyone help?
    This question was solved.
    View Solution.

    I ran this command:- wbAdmin start backup -backupTarget:E: -include:C: all sorted.

  • System image backup error (0x80070021)

    I have attempted to use the system image backup tool so I do not have to re-install everything in the event of HDD failure.
    However, I receive an error (specified in title) that a process has locked a file, and it fails.
    I have already tried closing every background task I can, but to no avail.
    I am backing up to a LAN drive. (Seagate Central 3TB)  It is running the latest firmware.
    Thanks.

    Using process monitor
    FWIW what I was imagining might be possible is finding a file name which is causing the problem symptom.  E.g. find where in the trace the message that you see is being written and then use that for context to see what was occurring just before that.
    I mostly use ProcMon as a guide to my analysis of the existing diagnostics and, since I don't have access to the source or support documentation, as a supplement to their meaning.  E.g. to get a list of all the files which are being written to
    while your trace was running you can use the Count... tool.  E.g. first filter on Operation Is Write then use Count... to see how many unique Path values there are associated with it.  Once you have inferred where a particular message was written
    you can then turn off your filter and go back to see what other registry and file accesses might have contributed to it.  Otherwise it is easy to be overwhelmed by all the possible red herrings in a ProcMon trace.   <eg>
    I suspect that the two processes that you have found doing stuff are supposed to be doing those things.  However, since I was unfamiliar with them I had to do a web search for each.  The results of that would suggest looking in the Event log for
    clues.  So, if ProcMon shows your processes writing to the Event log, definitely have a look at them.
    Good luck
    Robert Aldwinckle

  • System Image Backup fails in Surface Pro Win 8.1 with an error

    I'm trying to create a system image backup by using "System Image Backup" tool that comes with Windows 8.1 without any success.
    For this I went to "File History" tool and under this at the bottom-left hand side there is a link "System Image Backup". Then selected the drive and just clicked Next and Ok on the prompts.
    I get the below error message around the last stage of the backup since the progress bar will be just around the finish line when
    the below error pops up saying that the backup wasn't successful:
    ERROR: "There was a failure while compacting the virtual had disk on the backup location. (0x80780151) Additional Information: Incorrect
    function. (0x80070001)"
    I'm using Verbatim 500GB portable hard drive. I have formatted it in NTFS file system as required by the backup tool. It has nothing
    in it so it has enough space.
    Thanks
    Jay

    Hi,
    Based on my research, I suggest you try to delete mounted volume reparse point.
    Windows backup or restore errors 0x80070001, 0x81000037, or 0x80070003
    http://support.microsoft.com/kb/973455
    Let’s  have a try to check if the methods also apply to windows 8.1.
    Meanwhile, we can use the Recimg.exe command-line tool to create a system image.
    How to create a system image to refresh your Windows 8 PC
    http://support.microsoft.com/kb/2748351/en-us
    This article also applies to Windows 8.1.
    Regards,
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • IF Statement

    In a procedure in APEX, can you got to a page in an IF statement? eg IF a = b THEN INSERT ELSE go to page 1 ENDIF Thanks Fiona

  • Don't know what to do or who to ask??? GPS stopped working after 4.4.2 Kitkat update.

    Don't know what to do or who to ask??? GPS stopped working after 4.4.2 Kitkat update. I have been on the phone multiple times with Verizon, visited multiple stores and still getting different answers with every different person I talk to... Since the

  • Weblogic 7.0 workshop problem

    "Hi, I have installed BEA WebLogin on my Unix machine with the directory structure as given below. srx8:/export/home/bea (1507> ls jdk131/ logs/ UpdateLicense.sh utils/ license.bea registry.xml user_domains/ weblogic700b/ and srx8:/export/home/bea/we

  • Tray selection of printer doesn't work with printing order confirmation

    Hello, When we try to print output for the order confirmation document (BA00 and custom ZBA0) on a different paper tray (e.g. tray 2 for printer avbekyo-01_tray2 in SAP R/3) then the ouput is printed to tray 1 in stead. We have defined two different

  • SSLServerSocket problem

    I am trying to write a stand alone SSLSocket application. I created the certificate with this line: keytool -genkey -keystore serverkeys -keyalg rsa -alias chat The SSLServerSocket gets created with no issues. The server accepts connections from the