Tag: ssh

How to Access vCenter Remotely Using Putty

Here is a quick and easy way way to access your vCenter remotely using an ssh client like Putty.   Configure Home Network Open SSH on your router to a Linux or VM host and create Port Forwarding entry to forward SSH traffic to Linux or VM host       If using VM host …

Continue reading

Permanent link to this article: https://daherlabs.mywire.org/wordpress/?p=403

Copy directory from local host to remote host

Here is a simple and secure way to copy a directory structure from a local host to a remote host:   # tar -czf – . | ssh root@ubuntu “(cd /mnt/tegile;tar -xpzf -)” The – repersents stdin The . means current directory

Permanent link to this article: https://daherlabs.mywire.org/wordpress/?p=233

Example syntax for Secure Copy (scp)

Example syntax for Secure Copy (scp) What is Secure Copy? scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same authentication and same level of security as ssh. Examples Copy the file “foobar.txt” from a remote host to the local host $ scp …

Continue reading

Permanent link to this article: https://daherlabs.mywire.org/wordpress/?p=139