一般的配置方法过程如下:
1、安装软件
sudo apt-get install minicom
2、查看端口
找到端口:
这里要注意下,我们用的是USB 转串口,所以其设备是名称要注意,输入以下命令找到USB转串口的位置
dmesg | grep usb
假如有以下内容:
[ 7415.893942] usbserial: USB Serial Driver core ...
分类:
其他好文 时间:
2014-06-09 23:29:39
阅读次数:
242
这文章太简单,大家只看我写中文的地方就可以了
Installing RHEL EPEL Repo on Centos 5.x or 6.x
How to install RHEL EPEL repository on Centos 5.x or 6.x
The following article will describe how to configure a...
分类:
其他好文 时间:
2014-06-08 18:10:54
阅读次数:
250
1. LAMP 的安装
sudo apt-get install apache2 mysql-server mysql-client
php5 php5-gd php5-mysql
2. 由于LAMP大部分操作与/var/www目录相关,为了方便,修改该目录的权限为普通用户可访问。
sudo chmod 777 /var/www/
3...
分类:
其他好文 时间:
2014-06-08 18:00:11
阅读次数:
313
安装 现在可以通过ppa的方法来安装sublime text3 了,个人感觉就是有有点儿慢,毕竟要update一下。sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer配置插件 安装完成之...
分类:
其他好文 时间:
2014-06-08 15:04:52
阅读次数:
247
1. sudo apt-get install mysql-server, input administrator password , '123'
2. enter mysql promot in command line, 'mysql -u root -p', input password
3. create database "CREATE DATABASE xoops...
分类:
数据库 时间:
2014-06-08 10:26:14
阅读次数:
356
1 Supervisord的安装
Supervisord是运行在python环境下的服务监控程序。所以在安装supervisord之前必须有python环境。
如果系统没有PYTHON,键入:yum install python(CENTOS)或者apt-get installpython(UBUNTU)
键入:yum install python-setuptools...
分类:
其他好文 时间:
2014-06-08 08:35:43
阅读次数:
235
安装Python依赖
pip3.4 install nose
pip3.4 install selenium
pip3.4 install Appium-Python-Client
运行测试用例android_contacts.py
import os
import unittest
from appium import webdriver
from time import slee...
分类:
移动开发 时间:
2014-06-08 05:55:17
阅读次数:
482
1.安装编译环境gcc
使用yum install gcc在线安装
2.安装ruby开发环境
先下载linux版安装文件:ruby-1.8.6-p111.tar.gz
执行
tar -zxvf ruby-1.8.6-p111.tar.gz
cd ruby-1.8.6-p111
./configure --prefix=/usr/local/ruby
ma...
分类:
系统相关 时间:
2014-06-08 05:01:48
阅读次数:
445
1. 安装、启动Appium
bixiaopeng@bixiaopeng ~$ npm install -g appium
Password:
npm http GET https://registry.npmjs.org/appium
npm http 200 https://registry.npmjs.org/appium
npm http GET https://registry.npm...
分类:
移动开发 时间:
2014-06-08 04:50:57
阅读次数:
265
突然回想起了往事,那是2007年的冬天的一个周五,我在看我的老湿调试Linux协议栈的IP层,只见他修改了路由查找的逻辑,然后直接make install了一下就即时生效了,当时我只知道的是,修改了这个逻辑需要重新编译内核,而他并没有重新编译,好像只是编译了一个文件...编译内核这个耗时又无聊的工作阻碍了我对Linux内核的探索进度,直到今天,我依然对编译内核有相当的恐惧,不怕出错,而是怕磁盘空间...
分类:
其他好文 时间:
2014-06-08 03:43:31
阅读次数:
361