Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Thanks @Aaron Miller (+1) - what backup tool might you recommend, and how does it work? Does it back my entire PC into some file that can then be used to overwrite the entire file system on the VM? Thanks again!
    – pnongrata
    Commented Oct 1, 2012 at 16:46
  • 1
    Glad to be of help! As for a backup tool -- man tar is what I'd recommend here; it's not the most welcoming interface, perhaps, but if you just tar up / on the dev box (making sure to avoid /proc, /sys, /dev, and /root via the --exclude option) and untar the result on your VM, you'll probably have about what you need. (I would, though, think hard in your shoes about whether it's possible to just bring across the development stuff without touching the rest -- perhaps copy /home/username across and do the rest via apt, for example. Always best to do the least amount of work necessary, I say.) Commented Oct 1, 2012 at 17:46
  • 2
    Though very informative and helpful, this suggestion should be a comment and not an answer. It does not answer the question.
    – dotancohen
    Commented Oct 2, 2012 at 6:13