概述
debian 10 VMware 命令行环境搭建(避坑)
一.下载debain10
官网下载地址:
https://cdimage.debian.org/debian-cd/current/amd64/bt-dvd/
下载这个种子,然后用迅雷下载
下载完得到一个iso文件
二.安装debain 10
在vmware上用这个iso文件新建一个虚拟机
具体步骤此处省略1000字
安装过程也省略。。。。(其实是我懒 )
对于我们这种菜鸟来说值得注意的是这里
按空格选择
这里讲的是命令行环境所以要把Debain桌面环境给取消掉
ssh server要点上,因为我们要用xshell连接
web server这个可能以后会用到,所以也点上
(有其它需求的请自行决断)
三.使用ssh连接
至于为什么要用ssh,因为虚拟机不好用,想知道为什么的话可以自己去试试。
注意:此处使用root用户登录
启动SSH服务
/etc/init.d/ssh start
修改SSH配置文件
vi /etc/ssh/sshd_config #当然你也可以用nano
吐槽一下:vi是真的不好用,使用vi有bug的可以使用键盘上的insert
和delete
来解决一些问题,具体情况不做讨论,只可意会。
找到 #Port 22
前面的 #
去掉
找到 #PermitRootLogin without-password
修改为 PermitRootLogin yes
然后保存退出
重启SSH服务
service ssh restart
然后就可以用xshell连接了(记得用root连接)
欲知ip请使用(默认是没有ifconfig命令的)
ip addr
四.开始环境搭建
更换apt源
vi /etc/apt/sources.list
用#注释掉原来的
加入阿里的源
deb https://mirrors.aliyun.com/debian stable main contrib non-free
deb https://mirrors.aliyun.com/debian stable-updates main contrib non-free
保存退出
然后
apt-get update
更新
安装pip3
apt-get install python3-pip
安装vim
apt-get install vim
安装sudo
apt-get install sudo
安装git
apt-get install git
安装net-tools
apt-get install net-tools
安装完这个就可以用ifconfig了
更换pip源
mkdir ~/.pip
vim ~/.pip/pip.conf
加入
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
保存退出
更新升级pip
pip3 install --user --upgrade pip
pip3 install update
附:
友情链接:https://blog.csdn.net/anlalu233/article/details/105604886
报错缺少psycopg2模块的时候安装
apt-get install python3-psycopg2
最后
以上就是优美音响为你收集整理的debian 10 VMware 命令行环境搭建(避坑)的全部内容,希望文章能够帮你解决debian 10 VMware 命令行环境搭建(避坑)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复