草莓视频性福宝_久久综合88中文色鬼_亚洲一区不卡_免费观看成年在线视频网站

  • IDC銷售:020-66849165/66849090/66849088
  • 云服務銷售:020-66849108/9091 | 客服(備案,域名,虛機,郵箱):020-66849000-2

登錄 | 會員注冊 | 控制面板 | 幫助中心 | 購物車 | 舉報中心

? ? 域名活動
幫助中心FAQ


- LinuxA192.168.81.130

```

[root@localhost test]# ls

hello.txt

 

```

 


- LinuxB192.168.81.131


```

[root@localhost ~]# ls

anaconda-ks.cfg

```

 

- LinuxA192.168.81.130

 

 

```

[root@localhost test]# tar -cvf - hello.txt | ssh 192.168.81.131 "cd /home/ ; tar xvf -"

hello.txt

root@192.168.81.131's password:

hello.txt

 

```

 

- LinuxB192.168.81.131

 

```

[root@localhost ~]# ls

anaconda-ks.cfg  hello.txt

 

```

 

> 將要拷貝的目錄或文件進行打包,-代表標準輸出,然后再ssh傳輸到目標主機,運行相應的命令,tar xvf -將前面的標準輸出內容作為解包對象