08 2020 档案

摘要:答: 在/lib/systemd/system/vnc.service指定以某用户登陆即可, 模版如下: $ cat /lib/systemd/system/vnc.service [Unit] Description=Vnc Server [Service] ExecStart=/sbin/run 阅读全文
posted @ 2020-08-28 22:27 Jello 阅读(5251) 评论(0) 推荐(0) 编辑
摘要:参考链接: https://blog.csdn.net/astrotycoon/article/details/52317288 阅读全文
posted @ 2020-08-28 14:05 Jello 阅读(434) 评论(0) 推荐(0) 编辑
摘要:openwrt中补丁命名规则如下 The patches-* subdirectories contain the kernel patches applied for every OpenWrt target. All patches should be named 'NNN-lowercase_ 阅读全文
posted @ 2020-08-28 13:54 Jello 阅读(481) 评论(0) 推荐(0) 编辑
摘要:答:为vncserver添加-geometry 1920x1280类似的参数启动 如: $ vncserver -geometry 1920x1280 阅读全文
posted @ 2020-08-27 23:01 Jello 阅读(2531) 评论(0) 推荐(0) 编辑
摘要:答:定义在<openwrt源码>/include/image-commands.mk 阅读全文
posted @ 2020-08-27 17:29 Jello 阅读(270) 评论(0) 推荐(0) 编辑
摘要:安装tmux的插件resurrect $ git clone https://gitee.com/Jello_Smith/tmux_configuration.git 保存tmux会话的快捷键 Ctrl+B+S 恢复tmux会话的快捷键 Ctrl+B+R 阅读全文
posted @ 2020-08-25 21:28 Jello 阅读(1150) 评论(0) 推荐(0) 编辑
摘要:答: 修改zstd包的Makefile,将tar.zst替换为tar.gz $ cat package/feeds/packages/zstd/Makefile ... PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=htt 阅读全文
posted @ 2020-08-21 13:40 Jello 阅读(1315) 评论(0) 推荐(0) 编辑
摘要:答:使用--proxy选项指定代理,示例如下: $ pip3 --proxy="http://USERNAME:PASSWORD@PROXYIP:PROXYPORT" install pycrypto (自行替换USERNAME,PASSWORD,PROXYIP,PROXYPORT) 注意:如果US 阅读全文
posted @ 2020-08-21 10:10 Jello 阅读(3315) 评论(0) 推荐(0) 编辑
摘要:答: 操作步骤如下: $ cd <submodule dir> (进入子模块的源码目录) $ git checkout my-branch (切换到要使用的分支) $ cd .. (退出子模块) $ git status (检查commit的修改) a/submodule +++ b/submodu 阅读全文
posted @ 2020-08-18 13:46 Jello 阅读(4152) 评论(0) 推荐(1) 编辑
摘要:答: cat /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq (单位为Hz) 阅读全文
posted @ 2020-08-18 11:34 Jello 阅读(18097) 评论(0) 推荐(0) 编辑
摘要:答: cat /etc/banner 阅读全文
posted @ 2020-08-18 11:28 Jello 阅读(10850) 评论(0) 推荐(0) 编辑
摘要:答: 在编译时有以下选项: -> Image configuration -> Separate feed repositories <*> Enable feed packages <*> Enable feed luci <*> Enable feed telephony <*> Enable 阅读全文
posted @ 2020-08-17 18:18 Jello 阅读(1213) 评论(0) 推荐(0) 编辑
摘要:答: 在/etc/sysctl.d/10-default.conf中 阅读全文
posted @ 2020-08-14 15:15 Jello 阅读(836) 评论(0) 推荐(0) 编辑
摘要:答: 定义在openwrt源码的rules.mk中 STAGING_DIR:=$(TOPDIR)/staging_dir/$(TARGET_DIR_NAME) 阅读全文
posted @ 2020-08-12 23:44 Jello 阅读(1389) 评论(0) 推荐(0) 编辑
摘要:mtdparts的语法 mtdparts=<mtddef>[;<mtddef>] mtddef由哪些内容组成? <mtddef> := <mtd-id>:<partdef>[,<partdef>] <partdef> := <size>[@<offset>][<name>][ro][1k] 示例解析 阅读全文
posted @ 2020-08-10 21:35 Jello 阅读(621) 评论(0) 推荐(0) 编辑
摘要:答: 往/etc/yum.conf加入以下内容 $ sudo vi /etc/yum.conf proxy="协议://代理服务器地址:端口" (如: proxy="https://www.helloworld.com:7680") proxy_username="hello" proxy_pass 阅读全文
posted @ 2020-08-07 18:13 Jello 阅读(728) 评论(0) 推荐(0) 编辑
摘要:答: 在virtualbox的设置里面设置网络为桥接网络(bridge-adapter), 设置完后,虚拟机和宿主机就在一个网段了 阅读全文
posted @ 2020-08-06 18:52 Jello 阅读(577) 评论(0) 推荐(0) 编辑
摘要:答:请参考linux内核文档 https://www.kernel.org/doc/Documentation/networking/tuntap.txt 阅读全文
posted @ 2020-08-05 17:43 Jello 阅读(574) 评论(0) 推荐(0) 编辑
摘要:答:往libubox的Makefile中加入+librt即可解决依赖关系 示例如下: $ cat <openwrt source code>/package/libs/libubox/Makefile ... define Package/libubox ... DEPENDS:=+librt en 阅读全文
posted @ 2020-08-05 15:36 Jello 阅读(1057) 评论(0) 推荐(0) 编辑
摘要:答: 示例如下: cd old-repo (进入旧的仓库目录) git remote set-url origin ssh://git@bitbucket.sw.nxp.com/dash/nfc-module.git (设定新的远程仓库地址) git push -u origin --all (将所 阅读全文
posted @ 2020-08-03 13:55 Jello 阅读(450) 评论(0) 推荐(0) 编辑
摘要:答: 使用sha256sum即可生成,示例如下 $ sha256sum jello.tar.gz 阅读全文
posted @ 2020-08-03 10:55 Jello 阅读(2333) 评论(0) 推荐(0) 编辑