您的位置:首页 > 运维架构 > Linux

linux安装环境自用知识点

2020-09-09 08:38 246 查看

rzsz 上传下载命令

yum install -y lrzsz

安装anaconda

  • 选择镜像
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
  • 切换到home
cd ../home
  • wget下载镜像
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh
  • bash 执行sh文件
  • 一路yes
  • 选择目录时输入 ./anaconda 意思就是安装到home/anaconda
  • 是否写入环境变量?no
  • 是否安装vscode?no
  • 打开配置文件
vim /etc/profile
i   esc :wq
末尾加入
export PATH=$PATH:/home/anaconda/bin
  • 刷新配置文件
source /etc/profile
  • 验证 输入 conda 就会出现命令

安装网络服务

yum list telnet*              列出telnet相关的安装包
yum install telnet-server          安装telnet服务
yum install telnet.*           安装telnet客户端
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: