会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
clovershell
如无必要,勿增实体
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
下一页
2020年9月25日
git代码库初始化
摘要: The repository for this project is empty 用户名 :小明 邮箱 :xiaoming@example.com git代码库地址 :192.168.1.2:10001 git代码库 :test Command line instructions You can a
阅读全文
posted @ 2020-09-25 09:28 clovershell
阅读(532)
评论(0)
推荐(0)
2020年9月17日
virtualbox增强工具中未能加载虚拟光驱
摘要: 参考 https://blog.csdn.net/zhaihaifei/article/details/40055383 https://blog.csdn.net/yaolong336/article/details/78030500 是否要强制分配该介质(VERR_PDM_MEDIA_LOCKE
阅读全文
posted @ 2020-09-17 17:14 clovershell
阅读(1416)
评论(0)
推荐(0)
2020年6月15日
查看Linux下库文件(a, so)中函数、变量
摘要: 1. so库 1)命令 nm -D,如下所示: nm -D libtest.so //列出 libtest.so 的函数 2)命令 objdump -tT,如下所示: objdump -tT libtest.so //列出 libtest.so 的函数 2. a库 1) 查看文件: ar -t *.
阅读全文
posted @ 2020-06-15 16:11 clovershell
阅读(5348)
评论(0)
推荐(0)
2020年5月25日
[转]在Ubuntu 18.04系统上安装Systemback的方法
摘要: [转自 https://ywnz.com/linuxjc/3877.html] 简介 Systemback是一个简单的系统备份和恢复应用程序,根据GPLv3许可条款发布。Systemback的功能包括: 创建系统备份和用户配置文件。 将系统还原到以前的状态,就像Virtualbox的快照功能一样。
阅读全文
posted @ 2020-05-25 21:09 clovershell
阅读(1608)
评论(0)
推荐(0)
2020年3月27日
[转]grep
摘要: 转自 https://www.cnblogs.com/xiangtingshen/p/10927081.html 1.作用 Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来。 grep全称是Global Regular Expression P
阅读全文
posted @ 2020-03-27 17:08 clovershell
阅读(247)
评论(0)
推荐(0)
2020年3月3日
解决 Android 输出Logcat时报错[ read: unexpected EOF! ]
摘要: 1.问题描述:在源码开发是,烧写完系统启动之后,adb logcat会自动断掉,在串口里pgrep logcat ,找不到logcat服务。在串口里输入logcat,也会在输出一段log后自动断掉,结尾是read: unexpected EOF! 2.原因:Logcat的Buffer不够用 3.解决
阅读全文
posted @ 2020-03-03 14:44 clovershell
阅读(5639)
评论(0)
推荐(0)
2020年1月19日
[转载]Linux下C程序执行shell命令并获取返回结果的方法
摘要: 本文转自 https://blog.csdn.net/qq_27664167/article/details/82194391 Linux下的C编程有以下几种方法可以执行shell命令 system()函数 exec函数簇 popen()函数 如果还需要获取返回结果,有两种较简单方便的方法 pope
阅读全文
posted @ 2020-01-19 18:55 clovershell
阅读(3636)
评论(0)
推荐(0)
2019年9月11日
AWK命令使用
摘要: 1. 去掉某字符串前面所有的字符 test 1 aaaaatest 2 test 3tesbbbbbtest test 4 每行去掉test前面所有字符之后,输出:test 1test 2test 3test test 4 处理:awk -F'test' -vOFS="test" '{$1="";$
阅读全文
posted @ 2019-09-11 10:48 clovershell
阅读(305)
评论(0)
推荐(0)
正则表达式
摘要: 1. 匹配一段字符中的数字 [0-9]{4} : [0-9]表示匹配数字,{4}大括号4表示前面的数字有4位。这个是不管为0001还是9999,都能匹配到 2 .
阅读全文
posted @ 2019-09-11 10:38 clovershell
阅读(151)
评论(0)
推荐(0)
2019年8月13日
谷歌浏览器离线安装包下载
摘要: 下载地址 https://www.google.com/intl/en/chrome/?standalone=1
阅读全文
posted @ 2019-08-13 11:19 clovershell
阅读(997)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告