会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jello
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
11
12
13
14
15
16
17
18
19
···
77
下一页
2020年4月6日
linux下如何删除空行?
摘要: 答: sed -i '/^$/d'
阅读全文
posted @ 2020-04-06 23:42 Jello
阅读(492)
评论(0)
推荐(0)
2020年4月1日
vi下什么快捷键可以完成大小写转换?
摘要: 答:gu(转换为小写), gU(转换为大写) 操作步骤: 1. 按Esc键进入命令行模式 2. 按下Ctrl键和v键,然后按上下左右键对要修改的内容进行选中 3. 按下gu两个键可将选中的内容转换为小写
阅读全文
posted @ 2020-04-01 14:52 Jello
阅读(761)
评论(0)
推荐(0)
2020年3月30日
uboot下如何在环境变量bootargs中配置cma?
摘要: 答:示例如下: =>setenv bootargs "root=/dev/ram0 ramdisk_size=0x10000000 cma=64M@0x0-0xa0000000"
阅读全文
posted @ 2020-03-30 20:41 Jello
阅读(1026)
评论(1)
推荐(0)
2020年3月27日
执行git pull命令报告"fatal: early EOF fatal: index-pack failed error: Could not fetch origin fatal: read error: Connection timed out"如何处理?
摘要: 答: 改变仓库的地址(<source code dir>/.git/config中的[remote "origin"]),如: .git/config中的[remote "origin"]如下: [remote "origin"] url= git://git.kernel.org/pub/scm/
阅读全文
posted @ 2020-03-27 16:36 Jello
阅读(2521)
评论(0)
推荐(0)
2020年3月25日
执行./script/checkpatch.pl my.patch来检查补丁时报错"perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL=(unset),"如何处理?
摘要: 1. 情形 linux-kernel$ ./scripts/checkpatch.pl my.patchperl: warning: Setting locale failed.perl: warning: Please check that your locale settings: LANGUA
阅读全文
posted @ 2020-03-25 19:59 Jello
阅读(808)
评论(0)
推荐(0)
2020年3月24日
linux内核Kconfig语法
摘要: 请参考此处
阅读全文
posted @ 2020-03-24 17:50 Jello
阅读(175)
评论(0)
推荐(0)
2020年3月22日
ubuntu18.04下如何开启特定端口?
摘要: 1. 查看防火墙状态 $ sudo ufw status 2. 允许访问特定端口666 $ sudo ufw allow 666
阅读全文
posted @ 2020-03-22 22:49 Jello
阅读(4602)
评论(0)
推荐(0)
cygwin下执行dd命令总是提示"dd: writing to '/dev/sdx': Permission denied"如何处理?
摘要: 答: 将命令中的/dev/sdx替换为对应设备的DeviceID 1. 如何获取对应设备的DeviceID? 在powershell下执行以下命令:C:/> Get-WmiObject Win32_diskdrive Partitions : 2 DeviceID : \\.\PHYSICALDRI
阅读全文
posted @ 2020-03-22 12:19 Jello
阅读(1179)
评论(0)
推荐(0)
2020年3月20日
使用gdb如何获取内核crash的具体位置?
摘要: $ gdb vmlinux (gdb) l *your_function_name+offset_address 例如内核的call trace如下: [ 3.218641] Call trace: [ 3.221081] jello_probe+0xaaa/0xddd 那么执行如下命令 $ gdb
阅读全文
posted @ 2020-03-20 18:46 Jello
阅读(777)
评论(0)
推荐(0)
2020年3月18日
uboot下如何重置环境变量?
摘要: 答: => env default -a
阅读全文
posted @ 2020-03-18 11:06 Jello
阅读(2433)
评论(0)
推荐(0)
上一页
1
···
11
12
13
14
15
16
17
18
19
···
77
下一页
公告