Re: USB on Debian Potato?



Dances With Crows <danceswithcrows@xxxxxxx> wrote:
One of the machines has to be running an FTP server. Since it's not
that common to need one of those, you may not have one installed. It's
probable that you have sshd running on at least one machine, though.
With sshd, you can use scp, or rsync, or sftp, or any of a few GUI
frontends to those things. (Try typing sftp://user@host/ into a
Konqueror window, substituting a valid hostname and a valid username.)

If the OP wants to backup hard links, devices files and other tricky things
like that I'd be tempted to do something like this from the old machine:

tar cf - / | ssh userid@newmachine "cd /backup; tar xf -"

In other words, on the old machine start tarring up the filesystem starting
at / Then open an SSH session to the new machine, and pipe the tarfile thus
created over to it. Change to directory /backup and untar the stream
received from the pipe over SSH.

This just needs an SSH client and tar on the old machine, and needs no disc
space there.

You should be able to do something similar with cpio - just use '-' as input
or output filenames.

If there are lots of files you can tweak it by making tar send compressed
files, having SSH do the compression ( -C ), or choosing a faster cipher
( -c blowfish ). It depends on the relative speed of CPUs against network.

Theo
.



Relevant Pages

  • SV: [opensuse] ssh
    ... I have a suse 10.0 server running and OK. ... Now I have installed a new machine running suse 10.3 and I want to make ... When I try ssh -X it come with error that the option -X Fatal error, ... I did not have the sshd running on suse ver 10.3 I ...
    (SuSE)
  • Re: Firewall - Limit Geographic Area
    ... Ssh is currently loaded. ... You can leave sshd running and limit access with iptables if you wish. ... >> Just build the securest server you can. ... >> Warp Drive Networks ...
    (RedHat)
  • RE: reboot in single user
    ... more importantly* if I do reboot in single user mode can I still SSH in? ... possible- or do I need to go get the box and attach a keyboard monitor and ... /etc/rc.d to only have sshd running. ... That is the way I do it from a remote shell, it it only failed me once. ...
    (freebsd-questions)
  • ssh keys - howto?
    ... Just need to get ssh keys working. ... sshd running. ... create the keys and copied the key to .ssh directory on FBSD, ...
    (freebsd-questions)
  • Re: Speed of ssh for large transfers
    ... SSH can transfer at better than wire speed with compression on. ... to batch commands to the SFTP client for automation. ... ACK'ed where the network has a high latency. ...
    (comp.security.ssh)