zsh使用说明 安装zsh123sudo apt install zshzsh --versionsudo chsh -s $(which zsh) zsh首次进入后,选择1初始化配置文件,安装oh-my-zsh会覆盖此配置。 安装oh-my-zsh123sh -c "$(curl -fsSL https://install.ohmyz.sh)"sh -c "$(wget -O- h 2025-04-05 #zsh
Tmux使用说明 1. 简介tmux(Terminal Multiplexer)多session管理的终端程序,保持进程在后端运行,它允许您在单个会话中创建、管理和组织多个终端窗口。 会话持久化:连接断开后会话保持 多任务处理:多任务系统切换 分屏管理:一个终端中分隔屏幕,创建多个窗口 2. 安装 发行版安装 12345678910# For Ubuntu/Debian-based systemssudo a 2025-03-31 #tmux
Ansible使用说明 ansible安装 使用pip安装ansible 12python get-pip.py --userpython -m pip install --user ansible 检查ansible安装 1ansible --version inventoryansible默认使用/etc/ansible/hosts作为inventory文件,也可以使用-i选项指定 2025-03-21 #ansible
asdf使用说明 安装说明 安装依赖 1apt install curl git 下载 asdf 核心 a. https://github.com/asdf-vm/asdf/releases b. go install github.com/asdf-vm/asdf/cmd/asdf@v0.16.0 安装 asdf在 ~/.bashrc 文件中加入以下内容: 12export PATH=&quo 2025-03-20 #asdf
Windows下nodejs安装 介绍本文介绍windows下使用nvm安装nodejs nvm安装 安装nvm,使用nvm安装稳定版的nodejs进入nvm-windows发布页面,选择nvm-setup.exe安装。安装完成后在终端输入nvm version,能查到版本号说明安装成功了 常用命令 12345678# 显示已经安装的列表,list 可简化为 lsnvm list# 显示远程可安装的列表,list 也可简化为 l 2025-03-19 nodejs #nodejs #nvm
通过 docker-compose 部署 code-server code-server 是社区创作的 Web 版 VS Code,后端运行在服务器中,开发者基于浏览器运行 IDE。 部署配置docker-compose 12345678910111213141516171819services: code-server: image: codercom/code-server:latest container_name: code-server 2025-03-14 #code-server
Harbar 安装出错 Harbar 安装出错harboar启动失败,安装Harbor version:v2.9.0 12popen failure: Cannot allocate memoryinitdb: error: The program "postgres" is needed by initdb but was not found in the 问题原因是docker版本过低,解决办法是 2025-03-13 docker #docker #secommp #harbor