Quote:
Originally Posted by jefro
|
in situation with no admin privilleges on windows remote -only its share can be accessed from local computer , no server/agent installation on remote is possible perhaps only running a command like dd copied to it(or existing on it-would be great to start somehow recycle bin from command line using psexec)
As for local it could be win or linux box,
above is mentioned netcat and I found this example
Image a partition to another machine:
(no mention of possible samba file problem ?)
On source machine:
dd if=/dev/hda bs=16065b | netcat < targethost-IP > 1234
On target machine:
netcat -l -p 1234 | dd of=/dev/hdc bs=16065b
this should take care of every disk cluster not just ones occupied with data but
what is the syntax for doing it in opposite direction-
image another machine's partition to local?
Yet another idea is copy and run nbdsrvr.exe on remote and than access it with ubuntu local which has nbd support built in