ArxivTL

Centos 7.9 GLIBC GCC 升级

Centos 7.9 GLIBC GCC 升级 建议不要升,直接Centos 7 升 Centos 8 系统版本信息 cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) 安装 GCC 清华源

Administrator Administrator 发布于 2024-03-20

RPM

RPM 1. RPM 打包 strip 可执行程序 在spec文件开头加入下面代码 %define __os_install_post %{nil}

Administrator Administrator 发布于 2024-01-26

GDB&LLDB

GDB&LLDB 关闭gdb语法高亮 set style enable off x command x [Address expression] x /[Format] [Address expression] x /[Length][Format] [Address expression]

Administrator Administrator 发布于 2024-01-09

SSH

SSH 1. 断点传输 rsync -P --rsh=ssh home.tar 192.168.205.34:/home/home.tar

Administrator Administrator 发布于 2023-12-29

GreenPlum

GreenPlum 1. 安装 1.1. MAC 环境安装GreenPlum 下载源码 git clone https://github.com/greenplum-db/gpdb.git 按照README.macOS.md的步骤做 1

Administrator Administrator 发布于 2023-12-29

Emacs

Emacs GTD ORG 1. 插入日期 C-c ! < > 上下月切换 2. 插入代码 C-c C-, 选择 s 即可插入代码,并支持高亮 #+begin_src sql select 1; #+end_src 3. 插入表格

Administrator Administrator 发布于 2023-12-29

Proxy

Proxy shadowsocks 用户自定义规则 "*" 匹配任意字符串 "@@" 匹配的都不走代理 @@*.example.com/\* https://www.example.com https://image.example.com https://image.example.c

Administrator Administrator 发布于 2023-12-29

Ninja & Make

Ninja & Make ninja调试 ninja -v 打印执行的命令 一个小例子 test.c #include <stdio.h> int main() { printf("%s", "Hello GCC\n"); return 0; } CMakeLists.t

Administrator Administrator 发布于 2023-12-15

Python

Python 配置源 https://pypi.tuna.tsinghua.edu.cn/simple 虚拟环境 python3.8 -m venv balsa-env source balsa-env/bin/activate Python调试 vscode python 调试 vscode

Administrator Administrator 发布于 2023-12-15

Docker

Docker 1. 安装 linux 卸载docker及其组件 sudo yum remove docker \ docker-client \ docker-client-latest \

Administrator Administrator 发布于 2023-12-14