ICode9

精准搜索请尝试: 精确搜索
  • jq2022-04-22 22:33:21

    jq 类似于sedJSON 数据,可以使用它来进行切片、过滤、映射和转换结构化数据,与使用sed、awk、grep一样。 使用可移植的 C 语言编写,具有零运行时依赖。 如果直接从最新的 git 进行构建,则需要安装 flex、bison(>=3.0)、libtool、make、automake 和 autoconf。要获得 regexp 支持,还需要

  • wheeltec小车里程计z轴抖动问题解决 label: Research2022-04-22 18:31:30

    把这里直接写0 试试   指定功能包编译: catkin_make -DCATKIN_WHITELIST_PACKAGES="功能包名" 解除指定功能包编译: catkin_make -DCATKIN_WHITELIST_PACKAGES=""     

  • Windows下面安装命令的方法2022-04-21 00:31:59

    windows安装命令 -- 以安装make命令为例 -- 通用模板 windows的命令保存目录 C:\Windows\System32 windows自定义安装的命令一般都仍在这里就行了 安装make命令 1.make命令下载 2.解压make.zip文件,将make.exe文件复制放到C:\Windows\System32里面 测试make命令 1.打开cmd

  • linux下使用配置vscode并使用cmake2022-04-18 15:32:07

    文件目录搭建 在工作区创建三个文件夹:build、include、src,include用来存放头文件,src用来存放源文件,build是cmake和make的工作区,这样生成的文件都在build文件夹内,不至于外部结构看着乱糟糟的。 以下是文件目录的结构 workspace .vscode build include src CMakeLists.t

  • 使用Clion 阅读/修改/注释 Linux 内核源码2022-04-17 23:34:21

    from:https://zhuanlan.zhihu.com/p/409007775 前言 其实,bootlin就是一个听不错的阅读源码的工具了,可以非常方便的帮我们查阅函数、宏的定义、引用等等。而且是基于浏览器,对我们本机的配置没有什么过高的要求。 但是如果想要做一些注释,修改,那我们就要将源码下载到本地了,这个时候

  • centos 内核编译安装2022-04-17 22:31:34

    centos7.5内核编译安装 1.安装依赖 yum -y install gcc bc gcc-c++ ncurses ncurses-devel cmake elfutils-libelf-devel openssl-devel 2.下载内核版本解压并进入解压目录(4.12.3版本) wget https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.12.3.tar.xz && tar -xvf li

  • openWrt(LEDE)编译错误2022-04-17 19:34:03

    编译错误: Configuring dnsmasq-full. Collected errors: * pkg_hash_check_unresolved: cannot find dependency luci-app-samba for autosamba * pkg_hash_fetch_best_installation_candidate: Packages for autosamba found, but incompatible with the architectures confi

  • 学习makefile2022-04-17 11:32:34

     参考文档: 跟我一起写Makefile 关于程序的编译和链接¶ 一般来说,无论是C还是C++,首先要把源文件编译成中间代码文件,在Windows下也就是 .obj 文件,UNIX下是 .o 文件,即Object File,这个动作叫做编译(compile)。然后再把大量的Object File合成执行文件,这个动作叫作链接(link)。 总结: 源

  • 解决Linux下Python3交互式编程时方向键乱码问题2022-04-16 21:36:04

    安装以下包: yum install libtermcap-devel ncurses-devel libevent-devel readline-devel 重新安装Python3 进入Python的源码包然后 make && make install

  • CentOS7环境下编译FFmpeg2022-04-11 21:02:19

    操作系统:CentOS 7.6.1810_x64 ffmpeg版本:4.2.1 ffmpeg是一个功能非常强大的音视频处理工具,很多软件依赖它,这里记录下编译过程,以便后续查阅。 ffmpeg官方网址:https://ffmpeg.org 一、源码及依赖项 1、获取源代码: wget https://ffmpeg.org/releases/ffmpeg-4.2.1.tar.bz2 --no-chec

  • CentOS搭建Nginx服务2022-04-09 23:33:27

    简书: https://www.jianshu.com/p/5c3938ce2cf6 1.官网下载 https://nginx.org/en/download.html     2.上传CentOS服务 略 3.解压 tar zxf nginx-1.21.6.tar.gz 4.configure:生成Makefile cd nginx-1.21.6   编译并指定安装位置 ./cofigure --prefix=/usr/local/nginx

  • 如何编译自己需要的 OpenWrt 固件,以玩客云为例2022-04-09 14:32:22

    注意: 不要用 root 用户进行编译!!! 全局你懂的 默认登陆IP 192.168.1.1, 密码 password 编译命令如下: 首先装好 Ubuntu 64bit,推荐 Ubuntu 14 LTS x64 命令行输入 sudo apt-get update ,然后输入 sudo apt-get -y install build-essential asciidoc binutils bzip2 gawk gette

  • centos安装redis报错 fatal error: jemalloc/jemalloc.h: No such file or directory #include <jemalloc/2022-04-05 21:31:06

    centos安装redis报错  : [root@node01 redis-5.0.5]# make cd src && make all make[1]: Entering directory `/kkb/install/redis-5.0.5/src' CC Makefile.dep make[1]: Leaving directory `/kkb/install/redis-5.0.5/src' make[1]: Entering directory `

  • linux内核编译过程的最终总结版2022-04-02 06:31:19

    一、实验目的 学习重新编译Linux内核,理解、掌握Linux内核和发行版本的区别。   二、实验内容 在Linux操作系统环境下重新编译内核。实验主要内容: A. 查找并且下载一份内核源代码,本实验使用最新的Linux内核2.6.36。 B. 配置内核。 C. 编译内核和模块。 D. 配置启动文件。 本

  • 第2章 Redis概述安装2022-04-01 23:33:14

    ▶ Redis是一个开源的key-value存储系统。 ▶ 和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。 ▶ 这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操

  • golang中new和make的区别2022-03-31 15:02:06

    1、new new 的作用是初始化一个指向类型的指针(*T) new函数是内建函数,函数定义:func new(Type) *Type 使用new函数来分配空间。传递给new 函数的是一个类型,不是一个值。返回值是 指向这个新分配的零值的指针。 2、make make 的作用是为 slice,map 或 chan 初始化并返回引用(T)。 mak

  • 2020 cs61a lab062022-03-30 19:03:31

    网址 https://inst.eecs.berkeley.edu/~cs61a/fa20/lab/lab06/#topics problem124: this_file = __file__ def make_adder_inc(a): """ >>> adder1 = make_adder_inc(5) >>> adder2 = make_adder_inc(6)

  • Python环境安装记录2022-03-30 14:01:07

    下载并解压安装包 下载地址:https://www.python.org/downloads/release/python-383/ Version:Gzipped source tarball Operating System:Source release tar zxvf Python-3.8.3.tgz 安装相关预备环境 yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-de

  • “make warning: Clock skew detected. Your build may be incomplete.”2022-03-29 01:32:25

    编译提示 “make warning: Clock skew detected. Your build may be incomplete.” 该提示为系统时间被复位,需手动更新系统日期,建议改为当前日期。可在终端输入命令: sudo date -s 月/日/年 如需要更新日期为2022年3月20日,则命令为: sudo date -s 3/20/22

  • UIScrollView 遇到了AutoLayout之后其contentSize 的计算2022-03-25 23:33:36

    UIScrollView 的特殊之处就在于当它遇到了AutoLayout之后其contentSize 的计算规则有些特殊。contentSize是根据子视图的leading/trailing/top/bottom进行确定的 所以避免我们手动去设置 contentSize,我们必须迎合它的规则去设置 let scrollView = UIScrollView()

  • Codeforces1656C题 Make Equal With Mod2022-03-25 12:31:34

    Codeforces1656C题 Make Equal With Mod 题目 C. Make Equal With Mod time limit per test:2 seconds memory limit per test:256 megabytes input:standard input output:standard output You are given an array of nn non-negative integers a1,a2,…,an. You can make the fo

  • CF1656C. Make Equal With Mod2022-03-25 12:02:01

    题目传送门 题意 给你一个序列, 每次可以选择一个数 \(x\), \(x \geq 2\), 让序列中每个数对 \(x\) 取模, 问是否可以进行若干操作使得所有数字相同 题解 考虑假如不存在 \(1\) , 我们可以每次模最大的数, 使得所有数都为 \(0\) 如果存在 \(1\) , 那么 \(1\) 显然永远都是 \(1\),

  • 2022-2023学年英语周报高一课标外研第21期答案汇总2022-03-25 08:00:25

    进入查看:2022-2023学年英语周报高一课标外研第21期答案汇总   Clowns  have been around for a long time. They not only make us laugh at the circus (马戏团) but they used to make the king and his followers laugh in court. The earliest of these fun-makers are cal

  • 零知识证明C++库libsnark的安装经验2022-03-21 21:06:56

    本人最近正在安装零知识证明C++库libsnark(Github链接在此),网上教程极少,很多方法不适合自己,走了很多弯路,前前后后抑郁了十天左右,终于喜大普奔的安好了。在此记录一下自己这些天的历程。有时候不是教程不对,而是各种玄学问题,往往头一天怎么也搞不出来第二天一下就好了,所以心态要

  • openWrt 常用命令2022-03-21 07:34:48

    编译前下载dl库: $ make -j8 download V=s    feed 更新+安装 $ cd lede 或者 cd openwrt19 $ ./scripts/feeds update -a $ ./scripts/feeds install -a   选择要编译项目内容,比如CPU架构、设备型号 $ make menuconfig   编译: $ make V=99   编译(多线程):(-jn 后

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有