Is there software which allows to hibernate (save state) of the specific application and then recreate it (maybe on other computer)?
Is it possible to write such type of application?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’d say this is not possible in general. This would be a very intrusive software 🙂
It’d require a lot of support from the underlaying OS and even with this support it’d be not that easy. Even if you manage to gather and save a process memory (user and kernel space) which some OSs will allow you to do with an existing APIs, it would be very difficult, well, even impossible to restore it just like this.
The only way to go without writing really complex stuff would be to use virtual machine software. Using this approach would allow you to achieve what you want.
Hope it helped.