上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: 1、安装ntfs-3g-2009.4.4.tgz2、输入fdisk -l 看一下分区由此可见:/dev/sda5,6,7 即是windows下的D,E,F盘(NTFS格式)。3、vim /etc/fstab由此可见,我挂载的是windows下D、E、F盘,这样每次启动linux就会自动挂载上wind... 阅读全文
posted @ 2014-12-23 10:42 Qt小罗 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 一、进入目录#cd u-boot-1.1.6_sndk6410二、SD卡make cleanmake distcleanvim Makefile (/CROSS 修改cross-compile= ....)vim /include/configs/smdk6410.... 阅读全文
posted @ 2014-12-18 16:37 Qt小罗 阅读(543) 评论(0) 推荐(0) 编辑
摘要: C++静态库与动态库这次分享的宗旨是——让大家学会创建与使用静态库、动态库,知道静态库与动态库的区别,知道使用的时候如何选择。这里不深入介绍静态库、动态库的底层格式,内存布局等,有兴趣的同学,推荐一本书《程序员的自我修养——链接、装载与库》。什么是库库是写好的现有的,成熟的,可以复用的代码。现实中每... 阅读全文
posted @ 2014-12-17 09:08 Qt小罗 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 需要的安装包及下载地址: mplayer源代码包(MPlayer-1.0rc4.tar.bz2)下载:http://www.mplayerhq.hu/MPlayer/releases/ 解码器安装包(all-20110131.tar.bz2)下载:http://www.mplayerhq.hu/MP... 阅读全文
posted @ 2014-12-13 09:49 Qt小罗 阅读(766) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <unistd.h> 3 #include <linux/if_ether.h> 4 #include <linux/ip.h> 5 #include <linux/udp.h> 6 #include <linux/types.h> 7 阅读全文
posted @ 2014-11-11 19:10 Qt小罗 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <unistd.h> 3 #include <linux/if_ether.h> 4 #include <linux/ip.h> 5 #include <linux/udp.h> 6 #include <linux/types.h> 7 阅读全文
posted @ 2014-11-11 18:33 Qt小罗 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 int main() 4 { 5 int i = 9; 6 int j = 67; 7 int k = 34; 8 int max = 0; 9 #if 0 10 11 if(i >= j) 12 max = i; 13 else 14 max = 阅读全文
posted @ 2014-10-28 19:49 Qt小罗 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 struct person{ 4 int age; 5 struct person *next; 6 }; 7 8 struct person *insert(struct person *head, int 阅读全文
posted @ 2014-10-28 19:24 Qt小罗 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 int main() 4 { 5 char *source = "hello world\n"; 6 char dest[1024] = {0}; 7 char *p = dest; 8 char c = '\0'; 9 #if 0 10 loop: 阅读全文
posted @ 2014-10-28 19:20 Qt小罗 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 5 struct person{ 6 char *number; 7 char *name; 8 int score; 9 }; 10 11 int main() 1 阅读全文
posted @ 2014-10-23 18:31 Qt小罗 阅读(240) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页