支持 ssh登录
1、安装服务
sudo apt-get install openssh-server openssh-client
2、启动
service ssh start
具体可参考
https://blog.youkuaiyun.com/laosun12/article/details/90413267
登录问题
SecureCRT无法连接Linux虚拟机,返回账号密码错误Password Authentication Failed
解决参考
https://blog.youkuaiyun.com/migee/article/details/54585830?depth_1-
将 linux 下目录映射到windows下,方便代码书写
1、安装samba
1)切换到 root 账号
apt-get install samba
https://blog.youkuaiyun.com/zhaoliang831214/article/details/84203138?spm=1001.2101.3001.4242
将 windows目录共享到Linux目录下
使用 mount
https://blog.youkuaiyun.com/qq_17308321/article/details/79794371
UBUNTU的默认root密码是多少,修改root密码
一、Ubuntu的
默认root密码是随机的,
我们可以在终端输入命令 sudo passwd root ,修改就是root的密码
参考
https://www.cnblogs.com/mmdln/p/9071525.html
固定IP修改
**fconfig查看网络接口名称
vim /etc/network/interfaces
里面内容格式:(按需修改)
auto ens33
iface ens33 inet static
address 192.168.1.20
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameserver 202.96.209.133**