Linux下使用SecureCRT的方法:破解&编码
1、下载SecureCRT软件 ubuntu64位:http://download.csdn.net/detail/cobps/7941145 ubuntu32位:http://download.csdn.net/detail/cobps/79412092、下载破解perl脚本: 网络资源,如果需要,可以到我的CSDN资源中寻找。 securecrt_linux_cra
1、下载SecureCRT软件
ubuntu64位:http://download.csdn.net/detail/cobps/7941145
ubuntu32位:http://download.csdn.net/detail/cobps/7941209
2、下载破解perl脚本:
网络资源,如果需要,可以到我的CSDN资源中寻找。
securecrt_linux_crack.pl:http://download.csdn.net/detail/cobps/7941231
3、破解方法:
参照方法:http://www.cnblogs.com/neujie/p/3980645.html
4、在试用SecureCRT工具登陆其他Linux服务器时,无法使用GB2312类似编码,可以采用bash设置编码,然后替代SecureCRT。
具体方法:
a、获取Linux服务器的.bashrc中设置的编码资源,如下所示:
export LC_CTYPE='zh_CN' export LC_ALL='zh_CN' export LANG='zh' export LANG='zh_CN'
b、编写脚本SecureCRT,代码如下所示:
#!/bin/bash
#--FileName SecureCRT
export LC_CTYPE='zh_CN'
export LC_ALL='zh_CN'
export LANG='zh'
export LANG='zh_CN'
/usr/bin/secureCRT
c、修改SecureCRT步骤:
a)找到SecureCRT,并改名位secureCRT:
$which SecureCRT
/usr/bin/SecureCRT
$sudo mv SecureCRT secureCRT
b)将脚本SecureCRT放到/usr/bin/下:
$sudo mv SecureCRT /usr/bin/
5、再次启动SecureCRT,登陆Linux服务器,字符编码OK了。
更多推荐
所有评论(0)