Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Ghosting utilities for Fedora?

  • 16-09-2004 1:52pm
    #1
    Closed Accounts Posts: 4,763 ✭✭✭


    A search of Google didn't dig up much...I need to ghost a system restore partition from a laptop at the weekend and copy it to another laptop. Is there any utility that comes reccommended? :D


Comments

  • Registered Users, Registered Users 2 Posts: 7 pixelbeat


    if hda3 is your partition for example:

    dd bs=1M if=/dev/hda3 | gzip | ssh user@remote 'dd of=hda3.gz'

    Note partimage may be more userfriendly, as it will auto
    skip unused blocks and will give you a progress bar.

    you may want to do a file level copy rather than the complete filesystem
    (for e.g. if you wanted to copy files to a different sized partition,
    or a different filesystem type). tar is probably best for this:

    ( cd /mnt/hda3/ && tar c . ) | gzip | ssh user@remote 'dd of=hda3.tar.gz'


  • Closed Accounts Posts: 4,763 ✭✭✭Fenster


    Just a copy of the files so I can burn to DVD. It comes to about 4gb.


Advertisement