Results 1 to 6 of 6

Thread: Looking for a program to copy the system

  1. #1
    Join Date
    Sep 2019
    Beans
    2

    Looking for a program to copy the system

    Greetings!
    I am looking for a solution to a problem. We have a dedicated server with RAID 1 and Ubuntu 16.04. We want to copy the installed system with all the packages and settings to a virtual VDS-KVM server without a RAID. Copying must be done through the generation of an ISO image of the system and its further installation. At the same time, some folders that take up a lot of space should be excluded from copying.
    Please tell me, is there a program with which I can solve the problem?
    Maybe there is a commercial version to implement this?
    PS I tried using remastersys, but an error was immediately generated when the image was launched.
    Regards, Ivan

  2. #2
    Join Date
    Jan 2010
    Location
    Wheeling WV USA
    Beans
    2,023
    Distro
    Xubuntu 20.04 Focal Fossa

    Re: Looking for a program to copy the system

    are you doing a CDROM or DVD image?

    i recommend purchasing a large 2TB, 3TB, or 4TB external USB hard drive if your server can do high-speed USB 2.0 or better yet 3.0 (blue tab). this will solve lots of problems. if you are considering commercial software you must be open to spending money for this. i have 3 of the 2TB ones. they make it nice to move data around and take a backup to offsite (home).
    Mask wearer, Social distancer, System Administrator, Programmer, Linux advocate, Command Line user, Ham radio operator (KA9WGN/8, tech), Photographer (hobby), occasional tweetXer

  3. #3
    Join Date
    Oct 2005
    Location
    Lab, Slovakia
    Beans
    10,791

    Re: Looking for a program to copy the system

    Hmm, some suggestions:
    Copying over ethernet may be much easier and faster than over removable media.
    It is usually better to save the list of packages and then reinstall from scratch on the new hardware.
    You can copy the settings from /etc later once the new machine is running.

    The Debian auto install system is called Preseed:
    https://wiki.debian.org/AutomatedInstallation
    https://wiki.debian.org/DebianInstaller/Preseed

  4. #4
    Join Date
    Jun 2019
    Location
    Ba'aku
    Beans
    112

    Re: Looking for a program to copy the system

    One of my favorites is SystemBack. It allows you to make a bootable .iso of your installed system, and you can include your /home directory if you like.


    Learning American Sign Language - just for fun.


  5. #5
    Join Date
    Sep 2019
    Beans
    2

    Re: Looking for a program to copy the system

    Many thanks for the answers.

  6. #6
    Join Date
    Dec 2008
    Location
    Littleton, Colorado USA
    Beans
    362
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: Looking for a program to copy the system

    There is always the old standby:

    1) mkdir <TARGET DIR>

    2) cd <FROM DIR>

    3) tar cf - . | ( cd <TARGET DIR> ; tar xBf - )

    Tar has several ways to limit the size of files to copy and removing large directories.

    Making a bootable ISO will require running grub in one form or another because the address of the entry point of the kernel will need to be need added to the boot code.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •