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