摘要: tool function: Binwalk is a fast, easy to use tool for analyzing, reverse engineering, and extracting firmware images. how to install: apt-get install 阅读全文
posted @ 2018-12-21 16:32 嵌入式实操 阅读(181) 评论(0) 推荐(0) 编辑
摘要: install tools: wget https://github.com/resin-io/etcher/releases/download/v1.4.5/etcher-cli-1.4.5-linux-x64.tar.gz tar zvxf etcher-cli-1.4.5-linux-x64. 阅读全文
posted @ 2018-12-21 16:25 嵌入式实操 阅读(464) 评论(0) 推荐(0) 编辑
摘要: #! /bin/bash user=root password=12345678 remote_ip=192.168.3.140 remote_dir=/usr/bin/ local_file_dir=./ local_file_name=gps #sshpass -p 12345678 scp - 阅读全文
posted @ 2018-12-17 11:00 嵌入式实操 阅读(124) 评论(0) 推荐(0) 编辑
摘要: #! /bin/bash user=root password=12345678 remote_ip=192.168.3.140 sshpass -p $password ssh $user@$remote_ip #sshpass -p 12345678 ssh root@192.168.3.140 阅读全文
posted @ 2018-12-17 10:58 嵌入式实操 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 构建多LAN口多WAN口动态网络 【目的】 在AM335X定制动态网络功能,如下所示,在系统当中有两个以太网口,有4G模块,有wifi芯片8188eu支持AP+STA功能。 【实验环境】 1、 Ubuntu 16.04发行版 2、 MC183平台 3、 交叉编译器arm-linux-gnueabih 阅读全文
posted @ 2018-12-17 10:20 嵌入式实操 阅读(646) 评论(0) 推荐(0) 编辑
摘要: bridge-utils移植 【目的】 移植bridge-utils的目是在AM335X开发板上使用bridge功能。 【环境】 1、 Ubuntu 16.04发行版 2、 MC183平台 3、 交叉编译器arm-linux-gnueabihf-gcc-4.7.3 【步骤】 1、下载bridge-u 阅读全文
posted @ 2018-12-17 09:51 嵌入式实操 阅读(523) 评论(0) 推荐(0) 编辑
摘要: dhcpcd移植 【目的】 移植dhcpcd的目是在AM335X开发板上使用dhcp功能,获取WAN口设备的IP,并且可以通过参数指定其matric,matric值越小,其优先级越高。如设备可以以太网,WIFI,4G上网时,可定制外网功能,以太网优先级最高,WIFI次之,4G优先级最低。 【环境】 阅读全文
posted @ 2018-12-17 09:50 嵌入式实操 阅读(334) 评论(0) 推荐(0) 编辑
摘要: # svn delete etc/systemd/system/getty.target.wants/serial-getty@ttyS3.service@ D etc/systemd/system/getty.target.wants/serial-getty@ttyS3.service # sv 阅读全文
posted @ 2018-12-13 09:57 嵌入式实操 阅读(195) 评论(0) 推荐(0) 编辑
摘要: script context : #! /bin/bash for f in $(find . -name '*.c' -or -name '*.cpp' -or -name '*.h' -type f)do astyle --style=kr --indent=tab -p -P -k1 $fdo 阅读全文
posted @ 2018-12-10 17:39 嵌入式实操 阅读(131) 评论(0) 推荐(0) 编辑
摘要: url: http://www.asciiarts.net/ example : hello 阅读全文
posted @ 2018-12-10 17:30 嵌入式实操 阅读(148) 评论(0) 推荐(0) 编辑