默认


  • 简介
  • 目录大纲
  • 最新文档
  • 文集下载

    Python3.8 安装

    依赖安装 ``` apt install build-essential -y apt install curl g++ gcc git libffi-dev libfreetype6-dev libfribidi-dev libgdbm-dev \ libharfbuzz-dev libjpeg8-dev liblcms2-dev libldap2-dev libncurses5-dev……

    幻翼 - 2023年12月13日 10:21


    git仅拉取仓库内的指定目录

    在学习 helm 时想参考一下 https://github.com/bitnami/charts/tree/main/bitnami/odoo 中 odoo 相关的代码,在拉取仓库时发现仓库体积巨大,于是寻找仅拉取仓库内的指定目录的方法,记录如下: bash $ mkdir charts # 创建一个与要clone的仓库同名或不同命的目录 $ cd charts $ git init #初始化 ……

    幻翼 - 2023年6月30日 15:43


    Ubuntu常用操作

    ``` 只对github.com git config --global http.https://github.com.proxy socks5://127.0.0.1:1080 取消代理 git config --global --unset http.https://github.com.proxy) export http_proxy="socks5://1.1.1.1:1081" exp……

    幻翼 - 2023年6月14日 10:23


    supervisor 使用记录

    安装 supervisor pip install supervisor 也可以通过 apt 安装, 推荐使用pip安装 apt install supervisor - supervisor配置文件: /etc/supervisor/supervisord.conf - 子进程配置文件路径: /etc/supervisor/conf.d/ 创建配置目录 sudo mkdir /opt/su……

    幻翼 - 2023年6月1日 16:50


    Kafka 常用操作

    安装 https://kafka.apache.org/downloads ``` cd /opt wget https://downloads.apache.org/kafka/3.4.0/kafka_2.13-3.4.0.tgz tar -xvzf kafka_2.13-3.4.0.tgz kafka_2.13-3.4.0 cd kafka_2.13-3.4.0 apt install ope……

    幻翼 - 2023年4月11日 19:00



    幻翼