
Linux
爱代码的呆子
学而用,用而思,思则通,通则精,勿泛泛而学!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux shell脚本分割文件
使用bash脚本开发http://man.linuxde.net/ 指令网址原创 2017-03-30 19:18:48 · 3106 阅读 · 0 评论 -
ADB相关操作
adb shell /system/bin/screencap -p /sdcard/screenshot.png 手机截图看手机端口:adb devices //可显示设备代码找不到device时:adb kill-server adb start-server adb shell adb shell 进...原创 2018-05-15 12:03:56 · 1337 阅读 · 0 评论 -
Tomcat多项目部署与防火墙
一个服务器一个tomcat多项目部署<?xml version='1.0' encoding='utf-8'?><!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file d...原创 2018-05-11 11:28:41 · 443 阅读 · 0 评论 -
TXRX串口通信RAM版自己编译
引言:目前 javaxcomm(旧) gunio(新),目前rxtx-2.1-7-bins-r2.zip版本为32位的win或者x86或者x386,mfz-rxtx-2.2-32位-64位.rar有64位。但是不支持ARM架构的。下载source源码 http://mvnrepository.com/阅读学习移植指导文件 学习链接 http://blog.chinaunix....原创 2018-04-12 17:13:57 · 2272 阅读 · 0 评论 -
Linux安装SunJDK
Linux Arm-JDK安装 1.1 Oracle下载地址: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 1.2 arm-linux版下载 自解压或者win7解压后拖入(WinSCP)cd /usr/sudo mkdir javasudo chmod ...原创 2018-04-12 16:20:07 · 1275 阅读 · 0 评论 -
linux简单模块分析
“hello world”模块:#include <linux/init.h>#include <linux/module.h>MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){printk(KERN_ALERT "Hello, world\n");return 0;}static void hello_exit(v原创 2017-04-21 08:52:13 · 295 阅读 · 0 评论 -
Ubantu下实现Linux驱动程序开发环境(内核树)
Ubantu下实现Linux程序驱动开发环境搭建原创 2017-04-20 16:53:09 · 967 阅读 · 0 评论 -
VMware和Ubantu相关问题
1.Ubantu和Windows实现文件互传 1.VMware Tools 文件互传,复制粘贴 2.共享文件夹原创 2017-04-05 13:07:54 · 444 阅读 · 0 评论 -
Linux常用符号指令
’ ‘单引号”“双引号“ 反引号原创 2017-04-06 17:56:39 · 358 阅读 · 0 评论 -
字符设备驱动(一)
1.字符设备驱动基础知识图解链接:Linux 设备驱动之字符设备(一) http://blog.chinaunix.net/uid-26833883-id-4369060.html Linux 设备驱动之字符设备(二) http://blog.chinaunix.net/uid-26833883-id-4369117.html Linux 设备驱动之字符设备(三) http://blog.原创 2017-04-29 08:54:46 · 420 阅读 · 0 评论 -
字符设备驱动(三)
dev_fifo.c#include <linux/init.h>#include <linux/module.h>#include <linux/cdev.h>#include <linux/fs.h>#include <linux/device.h>#include <linux/slab.h>#include <linux/sched.h>#include <linux/expo原创 2017-04-29 08:41:51 · 664 阅读 · 0 评论 -
字符设备驱动(二)
mycdev.c/*字符驱动模块程序 2017年04月21日 星期五*/#include <linux/init.h> //模块所需的大量符号和函数定义#include <linux/module.h> //指定初始化和清除函数#include <linux/types.h> //dev_t 是用来在内核里代表设备号的类型.#include <linux/fs.h>原创 2017-04-24 08:35:59 · 332 阅读 · 0 评论 -
vmware +centos7 (二)
1.docker安装 uname -r yum -y install docker-io service docker start2.mongodb安装 docker search mongo docker pull mongo:3.2原创 2018-06-25 17:16:55 · 195 阅读 · 0 评论