有没有类似Xmanager的ssh软件呀
Tofloor
poster avatar
po_po1
deepin
2018-04-25 23:37
Author
需要通过ssh联接服务器,进行终端访问和文件传输,putty感觉不好用。
wine一个Xmanager失败了。
Reply Favorite View the author
All Replies
avatar
po_po1
deepin
2018-04-25 23:39
#1
那个remmina还连不上
Reply View the author
avatar
JJRDC
deepin
2018-04-26 00:26
#2
系统自带终端,命令行操作ssh username@server

或者安装商店里的gFTP,协议可以ssh,可以ftp
Reply View the author
avatar
solarflare
deepin
2018-04-26 00:37
#3
本帖最后由 solarflare 于 2018-4-25 16:39 编辑

Remmina也不可以吗……那就不知道了(我没用过,一般连远程都是直接命令行)
话说从原理上讲,xorg在设计的时候就贯通了本地图形界面和远程图形界面,不用特意装第三方程序吧?
Reply View the author
avatar
muzilee
deepin
2018-04-26 01:06
#4
用SecureCRT for Linux一直在用,很好用,支持4K屏,打开速度比在windows10上快。
Reply View the author
avatar
zhengxiaochuang
deepin
2018-04-26 01:26
#5
filezilla 蛮好用的
Reply View the author
Comments
yutent
2018-04-26 04:29
1024
avatar
iseric
deepin
2018-04-26 03:02
#6

  1. mkdir ~/.ssh
  2. touch ~/.ssh/config
  3. nano ~/.ssh/config
Copy the Code


内容如下(请删除所有注释)

  1. Host YourHostName #主机别名
  2.     HostName xxx.com #主机IP/地址
  3.     IdentityFile ~/Documents/id_rsa.key #密钥文件位置,若无需密钥文件则删除此行
  4.     Port xxx #端口
  5.     User eric #用户名
Copy the Code


写好配置之后就可以直接

  1. ssh YourHostName
  2. scp YourHostName:~/something ~
  3. scp ~/something YourHostName:~/
Copy the Code

这样来连接了,方便,简洁,优雅
Reply View the author
Comments
po_po1
2018-09-03 18:49
多谢
avatar
pikachuhy
deepin
2018-04-26 03:12
#7
用深度自己终端 写得非常好 功能也很好
Reply View the author
avatar
186******26
deepin
2018-04-26 18:00
#8
官方曾推荐electerm。
https://github.com/electerm/electerm
Reply View the author