Intel Galileo Debian Image Prequits
Intel Galileo开发板 Debian镜像
在原发布者的基础上进行了更新,附带开发入门套件,打包内容:
-intel_galileo_debian_xfce4镜像 -约3GB
-putty
-firmwire updater 固件更新工具
-win32diskmanager烧写工具
--------------------------------------------------------------
考虑到galileo-debian的更新比较慢,cpu频率比较低。因此上传搭建好的版本供大家使用。
-软件包更新至2017年1月29日
-安装了vncserver远程桌面
-安装了xfce4桌面
-python环境
--------------------------------------------------------------
原galileo-debian镜像地址:galileo-debian 大小约140mb
更新好的镜像包:链接:http://pan.baidu.com/s/1miAuNDe 密码:rbyq 大小约:2.89GB
--------------------------------------------
README
* ************************************************
* Author : Liutianchen
* Desciption : Packaged Debian Image for Intel Galileo Board
* Environment : Intel Galileo Gen1
* Date : Version:
* 2017-01-29 V1.0
* ************************************************
Funtion
*****************
Update based on galileo-debian
Package several tool for galileo startup
Build Instruction
*****************
step tool
1. FirmWare update : IntelGalileoFirmwareUpdater-1.0.4
2. Flash Binary Image : Win32DiskImager-0.9.5-install
3. Sign up via serial port : putty
4. Remote VNC Desktop : VNCViewer
Update Details
*****************
Based Image: galileo-debian https://sourceforge.net/projects/galileodebian/
Addtional Item:
- galileo-debian version 1.2
- Software update to 2017-01-29 ubuntu wheezy
- Gcc & G++
- VNC Server (default passwd:12345678)
- Xfce4 desktop environment
--------------------------------------------
*注:内容较大,百度云网速比较慢的朋友还是下载原版镜像比较方便
使用更新后的镜像烧写内存卡请不要小于8GB
Intel_galileo开发板请不要在接着其他端口的情况下拔掉电源
Intel_galileo搭建请参考我的另一篇文章 http://www.cnblogs.com/liutianchen/p/6357625.html
本文永久地址:http://www.cnblogs.com/liutianchen/p/6357622.html
Intel Galileo Debian Image Prequits的更多相关文章
- Intel Galileo development documentation
Intel Galileo development Documentation Author:Liutianchen 1552227, Department of Computer Science,E ...
- x86 构架的 Arduino 开发板Intel Galileo
RobotPeak是上海的一家硬件创业团队,团队致力于民用机器人平台系统.机器人操作系统(ROS)以及相关设备的设计研发,并尝试将日新月异的机器人技术融入人们的日常生活与娱乐当中.同时,RobotPe ...
- x86 版的 Arduino Intel Galileo 开发板的体验、分析和应用
1.前言 在今年(2013)罗马举办的首届欧洲 Make Faire 上,Intel 向对外发布了采用 x86 构架的 Arduino 开发板:Intel Galileo.这无疑是一个开源硬件领域的重 ...
- Using 1-Wire device with Intel Galileo
Using 1-Wire device with Intel Galileo 3 Replies Many people have had trouble with getting 1-Wire de ...
- Intel Galileo驱动单总线设备(DHT11\DHT22)(转)
Intel Galileo一代的IO翻转速度不够,无法直接驱动单总线设备,二代听说改进了,但没有库,于是国外开发者想出了另一种法子,转过来给大家学习下.如果后面有时间,再来翻译.原文地址:http:/ ...
- Intel processor brand names-Xeon,Core,Pentium,Celeron----Quark
http://en.wikipedia.org/wiki/Intel_Quark Intel Quark From Wikipedia, the free encyclopedia Intel ...
- Python 资源大全中文版
Python 资源大全中文版 我想很多程序员应该记得 GitHub 上有一个 Awesome - XXX 系列的资源整理.awesome-python 是 vinta 发起维护的 Python 资源列 ...
- UP Board 妄图启动ubilinux失败
前言 原创文章,转载引用务必注明链接. 经历了上次的上电开机失败,我们终于发现需要手动为UP板安装系统,因为没有显示器的Headless模式时,使用Linux比较方便,另外熟悉Debian系的,所以选 ...
- [转载]Python 资源大全
原文链接:Python 资源大全 环境管理 管理 Python 版本和环境的工具 p – 非常简单的交互式 python 版本管理工具. pyenv – 简单的 Python 版本管理工具. Vex ...
随机推荐
- mysql 乱码 utf8
my.ini [mysql]default-character-set=utf8 [mysqld]character-set-server=utf8 show variables like '%cha ...
- windows版mongodb不知道安装在哪儿
情景还原: 从官网:点击打开链接 下载了 MongoDB-win32-x86_64-2.6.12-signed.msi文件后, 右键安装,各种Next后,没有选择路径,就安装结束了!! 任务管理器里面 ...
- 新手C#ListView使用记录2018.08.03
在使用C#的ListView时,感觉有一些部分需要自己注意. ListView1.Clear()这条指令在使用时,用于Click后在ListView中显示数据,应该放在输入数据的前面. 在ListVi ...
- Oracle 下基于 DBMS_RESOURCE_MANAGER 包估算数据库存储 IO 性能
:first-child { margin-top: 0; } blockquote > :last-child { margin-bottom: 0; } img { border: 0; m ...
- git的突出解决--git rebase之abort、continue、skip
(1)应用实例描述 假设在github或者gitoschina上建立了一个项目,默认分支为master分支,远程master分支上c.sh文件内容: 开发者A.B分别将项目拷贝到自己本地进行开发 某一 ...
- 01-nginx介绍及编译安装
第一天的时候学过apache,nginx和apache一样都是一个WEB服务器.也就是说你的网站之所以可以在网上运行,总得有一台机器在为你提供服务,这台机器就是服务器.这台服务器通过什么软件在为你提供 ...
- Nginx 源码完全注释(11)ngx_spinlock
Nginx 是多进程模式的,一个 master 与多个 workers,一般工作在多核 CPU 上,所以自旋锁就是必须用到的.Nginx 中的自旋锁的定义,位于 ngx_spinlock.c 中,如下 ...
- 混合开发之iOS快速集成DSBridge
DSBridge-IOS github:https://github.com/wendux/DSBridge-IOS 使用 Native 实现API 代理类 //JsApiTest.m @implem ...
- 297. Serialize and Deserialize Binary Tree二叉树的序列化和反序列化(就用Q)
[抄题]: Serialization is the process of converting a data structure or object into a sequence of bits ...
- hadoop开发环境部署——通过eclipse远程连接hadoop2.7.3进行开发
一.前言 环境: 系统:centos6.5 hadoop版本:Apache hadoop2.7.3(Windows和centos都是同一个) eclipse版本:4.2.0(juno版本,window ...