02 2019 档案

摘要:答: git config user.name (获取用户名) git config user.email (获取邮箱) 阅读全文
posted @ 2019-02-28 18:45 Jello 阅读(5746) 评论(0) 推荐(0) 编辑
摘要:答:sort -u 阅读全文
posted @ 2019-02-28 18:20 Jello 阅读(805) 评论(0) 推荐(0) 编辑
摘要:答: 阅读全文
posted @ 2019-02-28 18:11 Jello 阅读(2280) 评论(0) 推荐(1) 编辑
摘要:答:使用git log master..diff_master 这样就可以列出在diff_master分支中包含的commit而在master分支中不包含的commit 阅读全文
posted @ 2019-02-28 17:14 Jello 阅读(965) 评论(0) 推荐(0) 编辑
摘要:答:修改~/.gitconfig(修改这个文件将全局有效)或项目目录中的.git/config(修改此文件只是使当前项目默认使用vim)中增加以下内容: [core] editor=vim 或者执行以下命令: $ git config --global core.editor "vim" 阅读全文
posted @ 2019-02-28 16:20 Jello 阅读(7558) 评论(0) 推荐(0) 编辑
摘要:答: git checkout filename 阅读全文
posted @ 2019-02-28 11:54 Jello 阅读(528) 评论(0) 推荐(0) 编辑
摘要:答: git push origin --delete branch_name 阅读全文
posted @ 2019-02-28 11:15 Jello 阅读(369) 评论(0) 推荐(0) 编辑
摘要:答: cat jello.txt | awk 'END {print}' 阅读全文
posted @ 2019-02-27 16:36 Jello 阅读(5490) 评论(0) 推荐(0) 编辑
摘要:答:在子shell执行,那么变量的值总是不能如愿以偿的改变,示例如下: 看见示例中的管道了吗!这是个陷阱,会导致while在子shell 中执行,以至于var的值并没有被改变 解决方法: 阅读全文
posted @ 2019-02-26 17:53 Jello 阅读(373) 评论(0) 推荐(0) 编辑
摘要:答:cat file | awk '{$1=null;print $0}' (删除第一列) 阅读全文
posted @ 2019-02-26 15:42 Jello 阅读(4205) 评论(0) 推荐(0) 编辑
摘要:答:git log --oneline --no-decorate --oneline: 将commit显示成一行 --no-decorate: 将tag和head名隐藏掉 阅读全文
posted @ 2019-02-26 15:38 Jello 阅读(900) 评论(0) 推荐(0) 编辑
摘要:答:git log --name-status 阅读全文
posted @ 2019-02-26 15:17 Jello 阅读(1647) 评论(0) 推荐(0) 编辑
摘要:答:一共分成以下几个步骤: 注:笔者使用的是ubuntu 1.设置ip sudo ifconfig eth0 192.168.1.121 2.设置网关 sudo route add default gw 192.168.1.1 eth0 3.设置dns sudo -i echo "nameserve 阅读全文
posted @ 2019-02-23 21:52 Jello 阅读(4598) 评论(0) 推荐(0) 编辑
摘要:答:使用一下命令即可: sudo dpkg --add-architecture i386 阅读全文
posted @ 2019-02-22 15:56 Jello 阅读(296) 评论(0) 推荐(0) 编辑
摘要:答:使用netstat工具 在命令行下输入netstat -atun即可列出当前机器提供的服务 netstat各选项解析: -a 列出所有服务 -t 列出tcp相关 -u 列出udp相关 -n 以数字形式显示主机、端口或用户名 阅读全文
posted @ 2019-02-21 18:24 Jello 阅读(2265) 评论(0) 推荐(0) 编辑
摘要:答:往~/.vimrc或/etc/vimrc的最后添加以下行: hi comment ctermfg=6 阅读全文
posted @ 2019-02-21 14:57 Jello 阅读(496) 评论(1) 推荐(0) 编辑
摘要:答:这个与i2c驱动有关,应该使能i2c驱动相关的配置项 阅读全文
posted @ 2019-02-20 11:35 Jello 阅读(558) 评论(0) 推荐(0) 编辑
摘要:答:spi/qspi flash 阅读全文
posted @ 2019-02-19 11:50 Jello 阅读(650) 评论(0) 推荐(0) 编辑
摘要:背景: 在openwrt的编译框架下无法正确打上补丁,而单独使用git却可以成功 这个补丁到底与其它补丁有何不同? 该补丁的生成的过程解析: 旧文件:vi 打开旧文件会提示no newline at end of file 在旧文件上的修改: 仅仅在文件的中间添加了一点内容,并没有修改结尾 修改后使 阅读全文
posted @ 2019-02-18 19:48 Jello 阅读(298) 评论(0) 推荐(0) 编辑
摘要:答:make package/boot/uboot-<chip series>/compile 阅读全文
posted @ 2019-02-18 12:46 Jello 阅读(2943) 评论(0) 推荐(0) 编辑
摘要:答:在include/configs目录下 阅读全文
posted @ 2019-02-18 11:24 Jello 阅读(536) 评论(0) 推荐(0) 编辑
摘要:注意:服务端的sshd服务已经正常开启 (可以正常进行连接) 1.在服务端负载比较高的情况下客户端请求连接时会出现连接被拒绝的情况 阅读全文
posted @ 2019-02-15 17:45 Jello 阅读(1318) 评论(0) 推荐(0) 编辑
摘要:答:使用ssh密钥对 示例如下: 如果A机想要获取B机上的文件,那么需要将在A机上生成的公钥放置到B机上的指定位置~/.ssh/authorized_keys 问题一: 如何在A机上生成ssh密钥对? A:请看如何生成ssh密钥对 问题二: 将A机上的公钥如何传送到B机上? (假设B机ip地址为10 阅读全文
posted @ 2019-02-15 17:13 Jello 阅读(1258) 评论(0) 推荐(0) 编辑
摘要:1.作用 自动交互。比如如果用ssh登陆服务器,每次都输入密码,然而你觉得麻烦,那你就可以使用expect来做自动交互,这样的话就不用每次都输入密码 2.依赖 依赖tcl 3.获取源码 wget https://liquidtelecom.dl.sourceforge.net/project/exp 阅读全文
posted @ 2019-02-15 16:41 Jello 阅读(1251) 评论(0) 推荐(0) 编辑
摘要:1.这款插件有何作用? 方便浏览github上的源码 2.安装方法 通过以下链接进行安装: https://chrome.google.com/webstore 阅读全文
posted @ 2019-02-15 14:57 Jello 阅读(369) 评论(0) 推荐(0) 编辑
摘要:答:请看include/image.mk中的以下定义: define Image/mkfs/squashfs $(STAGING_DIR_HOST)/bin/mksquashfs4 $(call mkfs_target_dir,$(1)) $@ \ -nopad -noappend -root-ow 阅读全文
posted @ 2019-02-01 16:59 Jello 阅读(2303) 评论(0) 推荐(0) 编辑
摘要:1.MKUBIFS_OPTS的作用 传递参数给mkfs.ubifs 2.MKUBIFS_OPTS传递了哪些参数? 传递了最小输入输出单元大小、逻辑擦除块大小、最大物理擦除块的个数,分别由选项-m、-e、-c来指定 3.BLOCKSIZE的作用 传递物理擦除块的大小给ubinize 4.PAGESIZ 阅读全文
posted @ 2019-02-01 16:51 Jello 阅读(1478) 评论(0) 推荐(0) 编辑
摘要:答:使用quilt工具 步骤如下: 1. 配置quilt $cat> ~/.quiltrc <<EOF QUILT_DIFF_ARGS="--no-timestamps --no-index -pab --color=auto" QUILT_REFRESH_ARGS="--no-timestamps 阅读全文
posted @ 2019-02-01 16:41 Jello 阅读(1493) 评论(0) 推荐(0) 编辑
摘要:1.错误解析 ubi的EC header中有一个字段data_offset来记录数据偏移,数据偏移必须正确才能正确读取每一个物理擦除块中的数据 2.解决方法 擦除整块flash,然后再重新烧写包含ubi的镜像 阅读全文
posted @ 2019-02-01 14:27 Jello 阅读(739) 评论(0) 推荐(0) 编辑