Google announces that Duolingo, Sight words, Evernote and Vine run natively on Chrome OS now. It seems that Chromebooks and Android devices are more connected than ever as Android apps are starting to be natively compatible with Chrome OS. It seems that Google is working with certain app developers at the moment to add more […]
Tag Archives: port
secure copy ( SCP ) howto 102
Secure Copy (SCP) provides a secure and authenticated method for copying files between hosts. SCP relies on Secure Shell (SSH). Copy the file “somefile.txt” from a remote host to the local host
1 | scp your_username@example.com:somefile.txt /some/local/directory |
Copy the file “somefile.txt” from the local host to a remote host scp somefile.txt your_username@example.com:/some/remote/directory Copy the directory “somedir” from the local […]