Added text about "Limiting bandwidth" and "Exact file locations on re… (#27091)

* Added text about "Limiting bandwidth" and "Exact file locations on remote server"

* Fix formatting
This commit is contained in:
Swati Kanchan
2019-03-29 15:04:37 +05:30
committed by Manish Giri
parent a03fbe1dc2
commit 38c5039e00

View File

@ -34,3 +34,21 @@ scp -i <location of servers private key> <user1>@<host1>:<location of remote fil
```shell
scp -r root@hostname:/source_folder/* /destination_folder/
```
## Limiting scp Bandwidth when copying
* Bandwidth is specified in Kbit/sec, e.g., to limit the speed upto 20 Kbyte/sec, set the `bandwidthlimit` to 8*20 (=160)
* This is time-saving when a huge amount of data is to be copied over slow internet
```shell
scp -l bandwidthlimit root@hostname:/source_folder/* /destination_folder/
```
## Unknown exact file location on remote server
* `ssh` to the remote server
* Go to the file location using `cd`
* Get the file location using `pwd` command and copy the output. `pwd` stands for **Print Working Directory** and that makes it easier to remember.
* Leave the ssh shell by pressing `Ctrl + D`, and then paste the full directory path in your `scp` command. This saves a lot of remembering and typing!
## More information:
* [Tips and Tricks on SSH and SCP](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks/)