Ubuntu安装SSH及命令使用1. 安装OpenSSH-Server12345# 更新软件包列表sudo apt update# 安装openssh-serversudo apt install openssh-server 2. 启动与启用服务1234567# 启动SSH服务(默认安装后会自动启动)sudo systemctl start ssh# 设置开机自启sudo systemctl enable ssh# 检查服 2025-06-01 Linux #Linux #常用命令
Ubuntu安装conda环境以及使用一、下载conda12345678910111213141516171819wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh # 或:curl -O Miniconda3-latest-Linux-x86_64.sh https://repo.anaconda.com/miniconda/Mini 2025-06-01 Linux #Linux #常用命令 #开发环境