AT300-101 - how to make a back up of the operating system?

Hi
I am tearing my hair out ! i am sending my AT300-101 toshiba tablet away tomorrow to have the battery changed but have only just realised the email booking the repair has said i have to make a back up of the operating system / replacement recovery media. after trawling the web trying to work out how to do it I am still stuck. can anyone help me with this please. It would be a big help.
Thanks.
Kate

Hi
There are many different ways to backup the date from android device.
You can use some 3rd party backup apps (check the Google Play store for available apps) or you can use the Android internal option to backup the data, application, Wifi passwords and other settings to google servers.
Such option can be found in App Apps -> Settings -> Backup & Restore

Similar Messages

  • How to make a bootable backup of the operating system

    Hi,
    I am given the task to make a bootable backup of the OS (Solaris 9). I know I can use ufsdump to backup the system in single user mode. However, to make a backup bootable, shall I backup the file system to a DVD? Any advice will be greatly appreciated!
    Cinderella

    i call it cloning the disk . you can install boot block as mentioned in second solution of cloning disk
    e.g
    # /usr/sbin/installboot /usr/platform/`uname -i`/lib/fs/ufs/bootblk /dev/rdsk/c1t2d1s0
    ################## solution 1 ####################################
    dd if=/dev/rdsk/c0t1d0s2 of=/dev/rdsk/c0t4d0s2 bs=2048
    ############### solution 2 #####################3333
    Now this is through but if the disk are from the same vendor (I tested also
    dd on disks with different vendors and it function well) and if it the disk
    are the same size my opinion is to use the dd command because it is easier
    to be done. Anyway if the disk are not from the same size or vendor it could
    be done also with ufsdump and ufsrestore. Here how it works and what I did
    if your would like to clone a disk with ufsdump and ufsrestore:
    For testing we have two disks:
         c1t2d0     (Source Disk)
         c1t2d1     (Destination Disk)
    The source disk has the following layout (slice 4 and 5 are for Disksuite
    metadb's but are not initialized or configured):
         0 root wm 0 - 634 471.29MB (635/0/0)
    965200
         1 var wm 635 - 2014 1.00GB (1380/0/0)
    2097600
         2 backup wm 0 - 2732 1.98GB (2733/0/0)
    4154160
         3 swap wu 2015 - 2704 512.11MB (690/0/0)
    1048800
         4 unassigned wm 2705 - 2718 10.39MB (14/0/0)
    21280
         5 unassigned wm 2719 - 2732 10.39MB (14/0/0)
    21280
         6 unassigned wm 0 0 (0/0/0)
    0
         7 unassigned wm 0 0 (0/0/0)
    0
    On our testsystem the disk are the same size. Firstable the layout/label
    from the source disk must be copied to the destination disk because with
    ufsdump and ufsrestore this information will not be transfered to the
    destination disk because this commands are based on filesystem. This is also
    a difference between dd and ufsdump because dd copies also the information
    from labels and layouts because this command is based on blocks and not on
    filesystem. Here it is how it wors to copy the information from
    layout/label:
         # prtvtoc /dev/rdsk/c1t2d0s0 > /tmp/z
         # fmthard -s /tmp/z /dev/rdsk/c1t2d1s0
         fmthard: New volume table of contents now in place.
    The slice 0 from the destination disk has now the same layout like the
    source disk. This could be controlled with the command:
         # format
    To transfer the information from slice 0 source disk to the slice 0
    destination disk the destination disk must be prepared to work on it. It
    means at the moment there is no filesystem on this disk. To do this use the
    command newfs. No option are neccessary because for default the filesystem
    would be ufs. Only the raw device/slice must given to the command that newfs
    knows what exactly must be don:
         # newfs /dev/rdsk/c1t2d1s0
         newfs: /dev/rdsk/c1t2d1s0 last mounted as /
         newfs: construct a new file system /dev/rdsk/c1t2d1s0: (y/n)? Y
    Now we have a filesystem on slice 0 and we could mount the slice 0. This
    would be made with the command mount and option -F for filesystem = ufs and
    -o for read or write = rw and at least which slice = 0. At the end of the
    command is the device with the slice which must be mounted:
         # mount -F ufs -o rw /dev/dsk/c1t2d1s0 /mnt
    Now the device is mounted. With the following command ufsdump 0f = slice 0
    and / = partition the filesystem / would be dumped. The whole dump would be
    piped (I hope this is the correct english word) to the command ufsrestore
    which would be executed in the mounted directory ufsresore and extracts the
    dump.
         # ufsdump 0f - / | ( cd /mnt ;ufsrestore xvf - )
         Add links
         Set directory mode, owner, and times.
         set owner/mode for '.'? [yn] y
         Directories already exist, set modes anyway? [yn] y
         DUMP: 405886 blocks (198.19MB) on 1 volume at 406 KB/sec
         DUMP: DUMP IS DONE
    After given the command, the partition / from source disk and / from the
    destination disk looks based on files absolutly the same but there is a
    information which MUST be changed and it is the information in "/etc/vfstab"
    because on the destination disk in this file are the information from the
    source disk (it means source disk will be mounted on the device c1t2d0 and
    the destination diks on the device c1t2d1). This information must be changed
    in "/etc/vfstab" on the destination disk:
         # vi /mnt/etc/vfstab
         ---------- /mnt/etc/vfstab ----------
         #device device mount FS fsck
    mount mount
         #to mount to fsck point type pass at
    boot options
         #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes
         fd - /dev/fd fd - no -
         /proc - /proc proc - no -
         /dev/dsk/c1t2d1s3 - - swap - no -
         /dev/dsk/c1t2d1s0 /dev/rdsk/c1t2d1s0 / ufs 1
    no
         /dev/dsk/c1t2d1s1 /dev/rdsk/c1t2d1s1 /var ufs 1
    no
         swap - /tmp tmpfs - yes -
         ---------- /mnt/etc/vfstab ----------
    Now we changed the information and the work is done on slice 0. We can now
    umount the slice 0:
         # umount /mnt
    Proceed with the other slice similar like explained before. In our example
    it would be:
         # newfs /dev/rdsk/c1t2d1s1
         newfs: /dev/rdsk/c1t2d1s1 last mounted as /var
         newfs: construct a new file system /dev/rdsk/c1t2d1s1: (y/n)? y
         # mount -F ufs -o rw /dev/dsk/c1t2d1s1 /mnt
         # ufsdump 1f - /var | ( cd /mnt ;ufsrestore xvf - )
         Set directory mode, owner, and times.
         set owner/mode for '.'? [yn] y
         Directories already exist, set modes anyway? [yn] y
         # umount /mnt
    Slice 4 and 5 are in our example not importante because this slice as
    explained are for Disksuite metadb's and on the source disk there are at the
    moment no information and no filesystem because Disksuite was not
    initialized or configured.
    It is a good idea to check the slices which where transfered files before.
    This could be done with the command fsck:
         # fsck /dev/rdsk/c1t0d1s0
         # fsck /dev/rdsk/c1t0d1s1
         # fsck /dev/rdsk/c1t0d1s2
         # fsck /dev/rdsk/c1t0d1s4
         # fsck /dev/rdsk/c1t0d1s5
    Now it seems that all what done but something is missing!? The destination
    disk looks now like the source disk with one exception; there is NO
    boot-block on the destination disk. If you don't create a boot-block the
    destination disk would never be bootable. To do this the system where it
    must be done must be from the same architecture like the source disk it
    means if the source disk is based on sun4m and you give now the command from
    a architecture like sun4u to the destination disk the boot-block would not
    work. This is what by me happens by the test (source disk based system on
    sun4m > to install boot-block I tried to give the command from sun4u based
    system and after I tried to boot the destination disk > result = destination
    disk was not able to boot). Ok we set now the command for boot-block to the
    destination disk to create there a boot-block:
         # /usr/sbin/installboot /usr/platform/`uname -i`/lib/fs/ufs/bootblk
         /dev/rdsk/c1t2d1s0
    Now you could boot the destination disk with the correct alias or the
    correct device alias. If you don't know what the alias is give on the system
    the following command:
         # ls -la /dev/dsk/c1t2d1s0
         /dev/dsk/c1t2d1s0 ->
    ../../devices/iommu at 0,10000000/sbus at 0,10001000/SUNW,soc@
    1,0/SUNW,pln at a0000000,753a58/ssd at 2,1:a
    End the OS with init 6 and stop the system reboot if the banner of OBP
    appears with stop + A. After that you are on the ok prompt. To set an alias
    give following command:
         # nvalias clone1 /iommu at 0,10000000/sbus@
         0,10001000/SUNW,soc@,0/SUNW,pln at a0000000,753a58/ssd at 2,1:a
    Use the alias with:
         ok boot clone1
    Have fun with you new clone...! I hope I did not forgett something but I
    tested it several times and it worked every time absolutly nice with no
    errors.

  • How do i go back to my old operating system? now i can't play my photos on apple tv with lion os

    how do i go back to my old operating system? now i can't play my photos on apple tv with lion os

    There's an overview here
    http://applehelpwriter.com/2011/09/10/how-to-turn-a-lion-into-a-snow-leopard/

  • HT201210 How can I go back to my previous operating system I hate this new update to 7 please help I want my apple back! Not this androidian mess!

    How can I uninstall and go back to my old system I hate 7 it's terrible
    Please help me get back to my apple

    Downgrading the iOS is not supported, and will void your warranty and forfeit any further support on your phone.
    Next time don't rush in to upgrade to an iOS that's been completely redesigned without checking it out first.

  • How much space on the hard/flash drive does the Operating System use on the macbook

    I Would like to buy a MacBook but the actual space on the flash hard drive is quite minimal. How much of this small space does the operating system use?

    In order for Yosemite needs to have at least 10 GB of free space for the use of OS X and the things it does. If you have less then that the performance with start to degrade until eventually OS X will freeze up.
    If you think you will be getting close to that you might want to consider getting and external disk drive where you can store some of your file such as music, videos movies and photos.

  • How to make a back up of OS in macBook Pro 13 inch.

    How to make a back up of OS in macBook Pro 13 inch.
    Step by step please,i am a new user to OS X Mountain Lion.

    Welcome to the Apple Support Communities
    You have two ways:
    1. Using Time Machine. See > http://support.apple.com/kb/HT1427
    2. Clone the disk using Carbon Copy Cloner
    You can use the one you want, but I recommend to do both of them, so your files will be safe

  • HT1414 my iPad did not came out the slide botton , how to make it back to normal , currently unable to used my ipad .

    Hi ,
    my iPad did not came out the slide botton , how to make it back to normal , currently unable to used my ipad .
    History is my son try to enter too many time on wrong password .

    Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • I wanna ask you something. My bro has an iPhone 5s that disabled for 23 million because of the time changed to 1976. So, how to make it back into 2015, make it enabled without erase the data

    I  wanna Ask you something. My brother has an iPhone 5s that disabled for about 23 millions minutes  the time changed to 1976. So how to make it back into 2015 without waiting for 23 millions minutes later and enabled it without erasing any data? Please answer me ASAP because I really need it. Thank you for answer!

    Hello theshadowhunters,
    There is not much you can do to change the time back because he will not have access to change the time. The only option to get passed this is to restore the iPhone. Once the iPhone is restored and have a back up, you can put that back on once the restore is complete. For more information, take a look at the article below. 
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled
    https://support.apple.com/en-us/HT204306
    Regards,
    -Norm G.  

  • HT1918 I am trying to set up my new replacement iphone 5 and i dont know how to transfer my back up to the new phone.

    I am trying to set up a new iphone 5 replacement and i don't know how to get my back up to the new phone.

    Well you would be first need to be using the ITUNES program. Not be on itunes the internet page. The program will usually be a music note icon on your desktop. IF YOU ARE GOING TO THE INTERNET = safari , internet explorer, firefox, etc ....your not using the program itunes. YOur surfing the web.
    with that said , always make sure your running the latest version of itunes. If on a mac  >in the upper left , next to the little Apple, click on the word itunes> check for updates.
    windows users > where it says FIle EDIT View Controls Store Help across the top> select help > check up updates
    >Then plug your phone in
    > then when it appears in the itunes window , click on the iphone > it will bring up the option to restore from back up

  • Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the rows? Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the records?
    Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    The Oracle documentation has a good overview of the options available
    Generating XML Data from the Database
    Without knowing your version, I just picked 11.2, so you made need to look for that chapter in the documentation for your version to find applicable information.
    You can also find some information in XML DB FAQ

  • I created a signature ID and customized the signature; however, when I go to sign it only shows the name layout or graphic image? How do I go back to using the certificate?

    Dear Forum
    I was using Adobe version XI and the signature feature disappeared from the menu. Now I downloaded Acrobat Reader DC. Using the menu and instructions I created a signature ID and customized the signature; however, when I go to sign a document it only shows the name layout or graphic image? How do I go back to using the certificate that I created?
    Any help would be greatly appreciated.
    Regards
    Carlos

    Firefox works fine on Windows 2000 SP4 for me.
    Any chance you have a dial-up connection that uses a web accelerator to speed the loading of content?

  • HT1338 Purchased a used macbook pro with Mountain Lion. My old Mac runs Snow Leopard is backed up to Time machine. How do I register the operating system to me and how do I use Time Machine to move my files to the new used computer?

    Purchased a used macbook pro with Mountain Lion. My old Mac runs Snow Leopard is backed up to Time machine. How do I register the operating system to me and how do I use Time Machine to move my files to the new used computer?

    If you look at the User Tips tab, you will find a write up on just this subject:
    https://discussions.apple.com/docs/DOC-4053
    The subject of buying/selling a Mac is quite complicated.  Here is a guide to the steps involved. It is from the Seller's point of view, but easily read the other way too:
    SELLING A MAC A
    Internet Recovery, and Transferability of OS & iLife Apps
    Selling an Old Mac:
    • When selling an old Mac, the only OS that is legally transferable is the one that came preinstalled when the Mac was new. Selling a Mac with an upgraded OS isn't doing the new owner any favors. Attempting to do so will only result in headaches since the upgraded OS can't be registered by the new owner. If a clean install becomes necessary, they won't be able to do so and will be forced to install the original OS via Internet Recovery. Best to simply erase the drive and revert back to the original OS prior to selling any Mac.
    • Additionally, upgrading the OS on a Mac you intend to sell means that you are leaving personally identifiable information on the Mac since the only way to upgrade the OS involves using your own AppleID to download the upgrade from the App Store. So there will be traces of your info and user account left behind. Again, best to erase the drive and revert to the original OS via Internet Recovery.
    Internet Recovery:
    • In the event that the OS has been upgraded to a newer version (i.e. Lion to Mountain Lion), Internet Recovery will offer the version of the OS that originally came with the Mac. So while booting to the Recovery Disk will show Mountain Lion as available for reinstall since that is the current version running, Internet Recovery, on the other hand, will only show Lion available since that was the OS shipped with that particular Mac.
    • Though the Mac came with a particular version of Mac OS X, it appears that, when Internet Recovery is invoked, the most recent update of that version may be applied. (i.e. if the Mac originally came with 10.7.3, Internet Recovery may install a more recent update like 10.7.5)
    iLife Apps:
    • When the App Store is launched for the first time it will report that the iLife apps are available for the user to Accept under the Purchases section. The user will be required to enter their AppleID during the Acceptance process. From that point on the iLife apps will be tied to the AppleID used to Accept them. The user will be allowed to download the apps to other Macs they own if they wish using the same AppleID used to Accept them.
    • Once Accepted on the new Mac, the iLife apps can not be transferred to any future owner when the Mac is sold. Attempting to use an AppleID after the apps have already been accepted using a different AppleID will result in the App Store reporting "These apps were already assigned to another Apple ID".
    • It appears, however, that the iLife Apps do not automatically go to the first owner of the Mac. It's quite possible that the original owner, either by choice or neglect, never Accepted the iLife apps in the App Store. As a result, a future owner of the Mac may be able to successfully Accept the apps and retain them for themselves using their own AppleID. Bottom Line: Whoever Accepts the iLife apps first gets to keep them.
    SELLING A MAC B
    Follow these instructions step by step to prepare a Mac for sale:
    Step One - Back up your data:
    A. If you have any Virtual PCs shut them down. They cannot be in their "fast saved" state. They must be shut down from inside Windows.
    B. Clone to an external drive using using Carbon Copy Cloner.
    1. Open Carbon Copy Cloner.
    2. Select the Source volume from the Select a source drop down menu on the left side.
    3. Select the Destination volume from the Select a destination drop down menu on the right
    side.
    4. Click on the Clone button. If you are prompted about creating a clone of the Recovery HD be
    sure to opt for that.
    Destination means a freshly erased external backup drive. Source means the internal
    startup drive. 
    Step Two - Prepare the machine for the new buyer:
    1. De-authorize the computer in iTunes! De-authorize both iTunes and Audible accounts.
    2, Remove any Open Firmware passwords or Firmware passwords.
    3. Turn the brightness full up and volume nearly so.
    4. Turn off File Vault, if enabled.
    5. Disable iCloud, if enabled: See.What to do with iCloud before selling your computer
    Step Three - Install a fresh OS:
    A. Snow Leopard and earlier versions of OS X
    1. Insert the original OS X install CD/DVD that came with your computer.
    2. Restart the computer while holding down the C key to boot from the CD/DVD.
    3. Select Disk Utility from the Utilities menu; repartition and reformat the internal hard drive.
    Optionally, click on the Security button and set the Zero Data option to one-pass.
    4. Install OS X.
    5. Upon completion DO NOT restart the computer.
    6. Shutdown the computer.
    B. Lion and Mountain Lion (if pre-installed on the computer at purchase*)
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because
    it is three times faster than wireless.
    1. Restart the computer while holding down the COMMAND and R keys until the Mac OS X
    Utilities window appears.
    2. Select Disk Utility from the Mac OS X Utilities window and click on the Continue button. 
    3. After DU loads select your startup volume (usually Macintosh HD) from the left side list. Click
    on the Erase tab in the DU main window.
    4. Set the format type to Mac OS Extended (Journaled.) Optionally, click on the Security button
    and set the Zero Data option to one-pass.
    5. Click on the Erase button and wait until the process has completed.
    6. Quit DU and return to the Mac OS X Utilities window.
    7. Select Reinstall Lion/Mountain Lion and click on the Install button.
    8. Upon completion shutdown the computer.
    *If your computer came with Lion or Mountain Lion pre-installed then you are entitled to transfer your license once. If you purchased Lion or Mountain Lion from the App Store then you cannot transfer your license to another party. In the case of the latter you should install the original version of OS X that came with your computer. You need to repartition the hard drive as well as reformat it; this will assure that the Recovery HD partition is removed. See Step Three above. You may verify these requirements by reviewing your OS X Software License.

  • Apple recently replaced my broken iPhone 5 with a new one. I backed up all my stuff in iCloud. When I set up the new phone I apparently used a back up from an earlier date. Now I am missing some of my stuff. How do I go back and use the most current I cln

    Apple recently replaced my broken iPhone 5 with a new one. I backed up the contents of my phone with iCloud.
    When setting up my new phone I used an iCloud back up from an earlier date. Now I am missing some of my most recent stuff. How
    Do I go back to use the proper iCloud back up to set up my new phone?

    Tap settings> general> reset> erase all content and settings...then you'll have a chance to setuo your phone again

  • How to make a photo STAY in the assets panel for future use for In browser editing?

    How to make a photo STAY in the assets panel for future use for In browser editing?
    When I delete a photo from a page, it does not stay in the assets panel. My client uses in browser editing daily. Once a week he changes a photo just for a day, then needs the previous photo to replace it. The original photo is not in the asset panel (or folder) for him to choose.
    When you upload a photo, it has an arrow in the asset panel. How do you use this as an asset?

    Sure ... right mouse click on  your page and choose 'Exclude Page from Menus' :-)

  • MOVED: how to make a good flow in the case?

    This topic has been moved to Off Topic Technical.
    how to make a good flow in the case?

    Browser variation is something we must all deal with.  For best results, begin projects with a clear idea of what type of layout you need (1-column, 2-column, 3-column or Multi-column grid).  Then get a CSS Layout that meets your requirements.
    PVII CSS Templates are rock solid & thoroughly tested to perform well in all browsers (commercial product)
    http://www.projectseven.com/products/index.htm
    CSS Layout Magic (commercial extension for Dreamweaver)
    http://www.projectseven.com/products/templates/pagepacks/cssmagic/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • Can I print small calendars in iCal or from some other program?

    I have a calendar in iCal that is used to keep track of my girlfriend's class and work schedule (which is wildly different from day to day). I would love to have this calendar on my iPhone but it must be in a different color like it is in iCal so tha

  • How do I create a form in Adobe Reader

    Adobe retiring Forms Central on July 28, 2015. I would like to know what other alternatives Adobe offers.

  • Many threads on application.onDisconnect not firing but seemingly no solution

    I've dug some threads up and included links at the end of this post. Have some more work to do researching it but figured I'd get the ball rolling. Essentially one can't depend on application.onDisconnect() firing at the close of a client's browser. 

  • Contingent worker expense claim

    Hi, We are contemplating the following steps to implement contingent worker expense claim process in R12.1.3. 1. Contractor request and PO having a line for expenses ($1000). 2. Contingent worker logs an iExpense claim ($100). 3. The claim gets appro

  • Splash screen for web forms

    I am following the release notes for dev 6.0 that say that you can replace the splashscreen that comes up with your own by specifying <param name="splashScreen" value="custom.gif"> in the html no luck, I can't remove it by specifying value="no" eithe