本文主要是介绍linux-arm笔记1:ubuntu 下如何安装、破解SecureCRT 软件,连接arm开发板,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ubuntu 下如何安装、破解SecureCRT 软件,连接arm开发板
对于学习嵌入式,我们需要熟悉linux和windows两个系统下的secureCRT软件,以便操作arm开发板,windows下就不说如何安装了,下面说说如何在linux使用secureCRT啦(我以ubuntu为例)!
在ubuntu下没有用中文做笔记,将就着看看吧!
1 cross fall to download securecrt(ubuntu)
在官网http://www.vandyke.com/products/securecrt/ 下载secureCRT软件,下载时要翻墙下载,并且按要求注册一个账号,选择对应的系统下的secureCRT
2安装secureCRT软件,deb包比较容易安装推荐使用deb安装包
install securecrt (deb)
terminal下sudo dpkg -i xxxx.deb
3install ssh (使用securecrt时候建议 安装一个ssh软件)
sudo apt-get install openssh-server
ps -e|grep ssh to check if it's open,if open you'll see a sshd
if not open, /etc/init.d/ssh start,then it'll open
4 crack securecrt (破解软件)
下载破解包,并且安装到SecureCRT执行文件目录下
wget http://download.boll.me/securecrt_linux_crack.pl
sudo perl securecrt_linux_crack.pl /usr/bin/SecureCRT
then it will show crack successful and show Licence;
inpute Licence to software,next time you login,no 30 days warning
安装成功后会显示如下图片(在help菜单下About SecureCRT下也可以查看)
5check if your computer has usbserial(default it has a usbserial) 查看是否有usb串口驱动,默认有
lsmod | grep usbserial
-->usbserial 38972 1 pl2303
check if computer can recogonize usb 查看是否识别usb转串口
dmesg | grep ttyUSB0
-->usb 2-1.1.3: pl2303 converter now attached to ttyUSB0
6how to use SecureCRT to control arm(我的是Tiny6410,其它型号可以类似设置)
open secureCRT
open a Quick Connect
setting like this picture
click connect
友情提示:在这里经常出现 。。。。:Permission denied 提示,原因在于没有设置权限
设置一下权限就可以了,方法如下:
sudo chmod 777 /dev/ttyUSB0
如果不是ttyUSB0,修改为对应端口就行了
turn on arm,it will show load information like this picture!
至此,可以在linux下操作arm了!
这篇关于linux-arm笔记1:ubuntu 下如何安装、破解SecureCRT 软件,连接arm开发板的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!