01 2019 档案
摘要:答:使用openwrt编译系统中编译的ubinize,那么这个工具在哪个目录下?在staging_dir/host/bin目录下
阅读全文
摘要:1.ubinize支持哪些选项 Usage: ubinize [options] <ini-file> Generate UBI images. An UBI image may contain one or more UBI volumes whichhave to be defined in t
阅读全文
摘要:1.详细错误报告如下: ubi0 error: validate_ec_hdr: bad VID header offset 256, expected 64 ubi0 error: validate_ec_hdr: bad EC header ubi0 error: ubi_io_read_ec_
阅读全文
摘要:答:分成两个步骤,如下: 1.列出当前的tmux窗口 jello@jello:~$ tmux ls 1: 1 windows (created Tue Jan 17 09:28:05 2019) [207x86]13: 1 windows (created Tue Jan 17 17:49:10 2
阅读全文
摘要:答:一共有两个步骤,如下: 1.列出打开的终端 who 2.kill需要kill的tty终端 pkill -kill -t pts/2
阅读全文
摘要:1.退出(detach)当前tmux ctrl+d 2.重新进入tmux tmux attach -t <target-session> 如:当前有很多session,那么选择哪一个呢? 2.1 使用命令tmux ls来获取target-session jello@jello:~$ tmux ls
阅读全文
摘要:答:git format-patch -1 <commit-id>
阅读全文
摘要:答: 1.安装zsh sudo apt-get install zsh 2.zsh替换bash sudo chsh -s `which zsh` 3.重启 (注:重启后打开一个终端会自动进入zsh的配置界面) sudo shutdown -r 0
阅读全文
摘要:答:sed 's/^[ \t]*//g'
阅读全文
摘要:答:使用-N来指定,如: git format-patch -N <commit-id> 生成的补丁中Subject将以[PATCH]的格式呈现,例如:Subject: [PATCH] add a file
阅读全文
摘要:答:在staging_dir目录下,示例如下: 编译一个arm64架构所生成的编译器在staging_dir/toolchain-aarch64_generic_gcc-7.4.0_musl/bin/目录下
阅读全文
摘要:答:使用选项--start-number,用法如下: git format-patch 1f43be --start-number=2 这样就可以生成起始编号为2的补丁名,类似0002-me.patch,0003-your.patch 参考资料 git format-patch的使用方法
阅读全文
摘要:1.获取脚本来使能增强模式 2.使脚本具有可执行权限 chmod u+x install.sh 3.执行脚本 $sudo ./install.sh 4.关闭ubuntu虚拟机 shutdown now 5.在宿主机中以管理员权限启动powershell并输入以下命令来使能增强模式(参数-Enhanc
阅读全文
摘要:答:git am --reject jello.patch (如果打补丁失败,会自动生成rej文件)
阅读全文
摘要:注意:笔者未能在Ubuntu18.04 64bit下成功从源码编译cpu版本的tensorflow Ans: 1.You are likely running out of memory. Try reducing number of parallel builds by passing '--lo
阅读全文
摘要:解决:pip install pyyaml
阅读全文
摘要:答:1. 从Serving 可以看出,与服务有关; 2. 那么为啥还有TensorFlow的前缀?肯定与TensorFlow有着很大的关系; 3. 那么Tensorflow是用来干什么的呢?Tensorflow是用来训练模型的; 4. 模型训练好了,那么如何使用训练好的模型呢?通过TensorFlo
阅读全文
摘要:1,install dependencies sudo apt-get install openjdk-8-jdk git python-dev python3-dev python-numpy python3-numpy build-essential python-pip python3-pip
阅读全文
摘要:Ans:pip install tensorflow (note: version number of pip and python must be consistent)
阅读全文
摘要:答:使能AVX,AVX2和FMA来进行源码编译,这样可以提速噢 具体编译方法,请参考windows10下如何进行源码编译安装tensorflow
阅读全文
摘要:1.获取python3.5.x https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe 2.安装python3.5.x,默认安装即可,安装后将路径添加到环境变量PATH中 笔者安装后python的路径为:C:\Users\jell
阅读全文
摘要:1.获取anaconda https://repo.continuum.io/archive/Anaconda3-2018.12-Windows-x86_64.exe (这个版本内置python3.7) 2.安装anaconda 3.启动Anaconda Prompt 4.安装python3.5 c
阅读全文
摘要:解决方法:减少提交的内容即可
阅读全文
摘要:注:笔者的ubuntu18.04 64bit已经安装好了显卡驱动,因此没有此步操作 1.获取cuda(https://developer.nvidia.com/cuda-downloads,选择ubuntu相关的runfile,cuda_9.0.176_384.81_linux.run) 2.安装c
阅读全文
摘要:答:为pip换源,如换成清华源 cat ~/.pip/pip.conf(没有此文件,自行创建即可,然后加入以下内容) [global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple
阅读全文
摘要:答:cat hello.* > hello
阅读全文
摘要:答: 切割文件hello,以每个文件最大10MiB来切割,切割好的文件名前缀为hello.,后缀为二位的数字,切割之后的名字为hello.01,hello.02等等 split -b 10M -d hello hello.
阅读全文
摘要:1. 为什么会出现这种技术? 为了安全,例如:保护指纹虹膜的生物特征数据 2. 为了确保数据安全各家公司都做了些什么? Arm公司提出的了trustzone技术,用一根安全总线(称为NS位)来判断当前处于secure world还是non-secure world状态,状态的切换由ATF(arm t
阅读全文
摘要:1.获取 wget http://mirrors.163.com/kernel/v4.x/linux-4.15.13.tar.gz 2.解压 tar xvf linux-4.15.13.tar.gz cd linux-4.15.13 3.获取配置 cp /boot/config-4.15.0-gen
阅读全文
摘要:一.背景 1.1 笔者的机器有两张声卡,使用aplay -l可以列举出来,一张是内置声卡,另一张是显卡自带的声卡,说明声卡驱动是ok的 1.2 笔者是在浏览器中播放视频无声音 二.尝试 2.1 尝试使用vlc播放器播放本地视频,发现在vlc的Audio->Audio Device中有两个设备,因此依
阅读全文
摘要:答:添加deb-src开头的源,如 deb-src http://cn.archive.ubuntu.com/ubuntu/ bionic-updates multiverse
阅读全文
摘要:1.获取 wget https://www.rarlab.com/rar/rarlinux-x64-5.6.1.tar.gz 2.解压 tar xvf rarlinux-x64-5.6.1.tar.gz cd rar 3.安装 sudo make install
阅读全文
摘要:答:有一下两个步骤: 1.替换.git/config中的仓库url 2.强制推送 git push -f
阅读全文
摘要:1.执行一下命令进行安装 sudo apt-get install python3-distutils wget https://bootstrap.pypa.io/get-pip.py sudo python3 get-pip.py sudo python3 -m pip install jupy
阅读全文
摘要:注:这是多用户版本 1.安装依赖 sudo apt-get install npm nodes sudo apt-get install python3-distutils wget https://bootstrap.pypa.io/get-pip.py sudo python3 get-pip.
阅读全文
摘要:注:参考自https://docs.docker.com/install/linux/docker-ce/ubuntu/ 1.卸载旧版本docker(如果之前安装了) 2.使用仓库进行安装 2.1 更新apt包 sudo apt-get update 2.2 安装一些软件以支持https方式来使用仓
阅读全文
摘要:答:drivers/rtc/rtc-pcf85263.c,内核配置选项为 CONFIG_RTC_DRV_PCF85263 Location: -> Device Drivers -> Real Time Clock
阅读全文
摘要:答:drivers/rtc/rtc-ds1307.c,内核配置项为CONFIG_RTC_DRV_DS1307 Location: -> Device Drivers -> Real Time Clock
阅读全文
摘要:答:drivers/misc/eeprom/at24.c,内核配置项为CONFIG_EEPROM_AT24 Location: -> Device Drivers -> Misc devices -> EEPROM support
阅读全文
摘要:答:drivers/hwmon/lm90.c,这个文件中支持了好多芯片,内核配置项为CONFIG_SENSORS_LM90 Location: -> Device Drivers -> Hardware Monitoring support
阅读全文
摘要:答:在drivers/hwmon/ina2xx.c中,内核配置项为CONFIG_SENSORS_INA2XX Location: -> Device Drivers -> Hardware Monitoring support
阅读全文
摘要:答:指定了一些可以配置的硬件信息(如可以配置uart相关的引脚功能)、引导镜像(uboot)的读取地址以及从何种介质(flash,sd)启动系统的信息
阅读全文
摘要:答:分析以下makefile即可获取整个过程 以nxp layerscape系统的编译过程为例 1.分析target/linux/layerscape/image/Makefile的最后一句,这是一个好的开端 2.宏BuildImage定义在哪里呢?定义在include/image.mk中,简化后如
阅读全文
摘要:答:在include/rootfs.mk里的宏prepare_rootfs中进行的
阅读全文
摘要:答:用来取单词的函数,示例如下: $(word 1,hello jello yello) 上面的语句执行后的结果为hello,意为取字符串的第一个单词
阅读全文