Txt

Byte sized tech know-how.

  • Home
  • About

Tag Archives: remote

22 Feb

Backup HDD To Remote Host

Make a backup of a local hard disk on remote host via ssh


dd bs=1M if=/dev/hda | gzip | ssh user@ip_addr 'dd of=hda.gz'
admin Posted in Command Line, Linux backup, command, dd, filler, gzi, harddisk, hdd, image, iso, Linux, remote, ssh Leave a comment
06 Feb

rsync Local Folder with Remote

Synchronize a local directory with a remote directory via ssh and compression


rsync -az -e ssh --delete ip_addr:/home/public /home/local
admin Posted in Command Line, Linux command, filler, folder, Linux, local, remote, rsync, sync 1 Comment
30 Jan

FTP Using Curl

Copy a file to a remote system using FTP with the Curl command…


curl -T filename.txt -u username:password ftp://example.cot/filename.txt

Original Article

admin Posted in Command Line, Linux command, copy, curl, ftp, Linux, remote, server Leave a comment
26 Jan

SCP Copy from Remote to Local System

Copy files/folder from a remote server to this system.


scp -r binnyva@192.168.0.100:/home/binnyva/folder_to_copy . 
admin Posted in Command Line, Linux copy, file, local, remote, rsync, scp, ssh Leave a comment
24 Jan

Copy Files using SCP

Copy files/folder to a remote server.


scp <file> binnyva@192.168.0.100:/home/binnyva/
scp -r <folder> binnyva@192.168.0.100:/home/binnyva/
admin Posted in Command Line, Linux comand, copy, file, folder, Linux, remote, scp, ssh Leave a comment
23 Dec

Run Remote App Locally

Run a remote GUI tool in a local system


ssh -X neo@192.168.0.30 /usr/bin/kate
admin Posted in Command Line, Linux app, command, gui, Linux, remote, ssh, tool, x, xserver Leave a comment
27 Nov

Connecting to a Remote MySQL Host

You can connect to a remote mysql server if you have the necessary permissions…


mysql -h mysql.remote.com -u user 
admin Posted in Command Line, Linux cli, command, host, mysql, remote, server Leave a comment
15 Feb

Backup Using Rsync

Backups the script folder to a remote location. Original Article…

rsync -avze ssh Scripts/ binnyva@binnyva.com:backup/Scripts/
admin Posted in Command Line, Linux backup, cli, command, Linux, remote, rsync, ssh Leave a comment

Post navigation

Categories

  • Code
  • Command Line
  • Configuration
  • CSS
  • HTML
  • internet
  • JavaScript
  • Linux
  • Mobile
  • Perl
  • PHP
  • Python
  • Ruby
  • Uncategorized

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Fruitful theme by fruitfulcode Powered by: WordPress
↑