Ssh
如何通過快速連接加速 X?(尤其是通過 ssh)
關於通過本地快速(千兆位)連接加速 X 應用程序的建議是什麼?(對於慢速連接的類似問題)
目前我跑過來了
ssh -Y
,這很好,但我想知道關閉壓縮是否可以加快速度。如果是這樣,我如何關閉壓縮、加密和設置您推薦的任何內容:
- 在伺服器端修改配置時不更改預設 sshd 行為
- 最好在客戶端使用命令行選項
關於壓縮的部分答案,來自 OpenSSH 的手冊頁
ssh_config(5)
(您可以使用(ie ) 或的-o
選項進行配置):ssh``ssh -oCompression=no``~/.ssh/config
Compression Specifies whether to use compression. The argument must be “yes” or “no”. The default is “no”.
在伺服器端 (
sshd_config(5)
),Compression Specifies whether compression is allowed, or delayed until the user has authenticated successfully. The argument must be “yes”, “delayed”, or “no”. The default is “delayed”.
壓縮可以被禁止,但不能強制,所以這裡無事可做。但是,由於這是預設設置,它可能無法幫助您加快任何速度。
(根據您的網路情況,我想您可能會通過使用不安全的東西來獲得加速,例如普通的 X11 連接
DISPLAY=myothercomputer:0.0
等,或者也可以考慮使用 VNC。)