Announcement

Collapse
No announcement yet.

linux image software

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    linux image software

    Hi all, anyone know linux image software? I want to take image of linux software
    from flash memory. I dont know which is best and simple use? thank for help.

    #2
    Re: linux image software

    Originally posted by klkmalik View Post
    Hi all, anyone know linux image software? I want to take image of linux software
    from flash memory. I dont know which is best and simple use? thank for help.
    How about dd? It should be preinstalled on most distros.

    Comment


      #3
      Re: linux image software

      clonezilla

      Comment


        #4
        Re: linux image software

        Yes, dd is the way to go. First you need to identify the correct disk.

        Code:
        sudo fdisk -l
        Find the correct device in the output by looking at the sizes of the devices. Then, say it is /dev/sdh, enter this:

        Code:
        sudo dd if=/dev/sdh of=sd_image.img
        Let it run, and it may take a while. This will make an exact copy of the card. If it is a bootable card, that is copied to.

        Comment

        Working...
        X