ubuntu下ssh使用 與 SCP 使用

2022-09-16 20:12:24 字數 1235 閱讀 7236

1 ssh

遠端登入伺服器

ssh username@remote_ip #

將username

換成自己的使用者名稱,將

remote_ip

換成遠端伺服器的

ip位址

2 將檔案

/資料夾從遠端伺服器拷至本地

(scp)

scp-r username@remote_ip:/home/username/remotefile.txt ./

3 將檔案

/資料夾從本地拷至遠端伺服器

(scp)

scp-r

localfile.txt username@remote_ip:/home/username/

4 將檔案

/資料夾從遠端伺服器拷至本地

(rsync)

rsync

-v -u -a --delete --rsh=ssh –stats

username@remote_ip:/home/username/remotefile.txt .

5 將檔案

/資料夾從本地拷至遠端伺服器

(rsync)

rsync

-v -u -a --delete --rsh=ssh --stats

localfile.txt username@remote_ip:/home/username/

6 連線遠端ssh非22埠的伺服器(ssh埠為12345)

ssh-p 12345

username@

remote_ip

7 遠端拷貝ssh非22埠的伺服器檔案(ssh埠為12345)

scp-p 12345 local_file username@remote_ip:remote_dir

scp-p 12345 username@remote_ip:remote_filelocal_dir

scp -o

port=12345 username@remote_ip:remote_filelocal_dir

scp -p 12345

-r local_dir/.* 

username@remote_ip:remote_dir

拷貝目錄,-r是將目錄下的目錄遞迴拷貝。".*"是將隱藏檔案也拷貝過去。需要先在遠端建立好相應的目錄。

sftp用法

sftp

-o port=12345 username@remote_ip:remote_dir

ubuntu下ssh服務的安裝與使用

ssh 全稱secure shell 是一種加密的網路協議,如果在傳輸中資料洩漏,也可以確保沒人讀出有用的資訊。ubuntu預設沒有安裝ssh,如需使用,需要自己安裝。判斷是否安裝ssh服務,可以通過以下命令進行 ps e grep ssh kyxu kyxu cvrs ps e grep ssh ...

ubuntu下如何安裝使用SSH?

ubuntu預設並沒有安裝ssh服務,如果通過ssh鏈結ubuntu,需要自己手動安裝ssh server。判斷是否安裝ssh服務,可以通過如下命令進行 xjj xjj desktop ssh localhost ssh connect to host localhost port 22 conne...

ubuntu下如何安裝使用SSH

ubuntu預設並沒有安裝ssh服務,如果通過ssh鏈結ubuntu,需要自己手動安裝ssh server。判斷是否安裝ssh服務,可以通過如下命令進行 xjj xjj desktop ssh localhost ssh connect to host localhost port 22 conne...