linux相关
liuyh73
这个作者很懒,什么都没留下…
展开
-
CentOS_7升级系统内核
最近,在虚拟机中安装docker成功之后,尝试运行docker run hello-world时出现以下错误: $ sudo docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 1b930d010525: Pull comp...原创 2019-03-06 18:10:18 · 1088 阅读 · 0 评论 -
Vagrant
Vagrant介绍 Vagrant is a tool for building and managing virtual machine environments in a single workflow. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment ...原创 2019-03-02 17:39:05 · 568 阅读 · 0 评论 -
shell脚本编程
文章目录什么是shell脚本shell基本语法变量变量的定义变量的使用字符串单引号与双引号的区别?获取字符串长度提取子字符串数组定义、读取数组元素获取数组中所有元素获取数组长度条件控制条件表达式循环forwhile无限循环 什么是shell脚本 shell脚本是一种为shell编写的脚本程序,和python、php编程一样,只要有一个能编写代码的文本编辑器和一个能解释执行的脚本解释器就可以了。 通...原创 2019-03-25 21:07:04 · 763 阅读 · 0 评论 -
嵌入式Linux内核编译
实验环境 VMware Workstation Player Ubuntu16.04 s5p4418-kitkat.tar.bz2.aa 、 s5p4418-kitkat.tar.bz2.ab、android-patch.tgz、arm-2009q3.tar.bz2系统源码压缩包 【注意】虚拟机安装分配硬盘内存应当50G以上。 Linux内核配置与编译 将系统源码(s5p4418-kitka...原创 2019-04-10 11:16:49 · 2981 阅读 · 0 评论 -
Shell脚本编程 | 字符串操作
文章目录expr命令lengthindexmatchsubstr字符串大小写转换字符串切片字符串匹配截取字符串替换、删除字符串替换字符串删除 expr命令 expr引出通用求值表达式,可以实现算术操作、比较操作、字符串操作和逻辑操作等功能。 length 返回字符串长度 $ expr length “hello, shell” 12 index expr index str sub返回sub中...原创 2019-04-01 20:59:31 · 528 阅读 · 0 评论