起因
换服务器了,从阿里换到腾讯云
1是想尝试下不同得云服务器提供商,操作一遍云迁移的过程
2是阿里那边1核2G感觉有点不够用,我想要一个2核4G的,但是那边没有便宜的学生机
那边续费96(原1740),这边100(原1200),感觉是不是腾讯云本身就比阿里云便宜了一大截?
过程记录
- 关机重置密码
- 创建SSH密钥并绑定主机
- 使用putty Key Generator转换密钥文件
- 在putty中配置连接信息、私钥、窗口行数、字体、连接超时
至此可以使用putty远程连接主机
但是需要额外注意的一点是,ubuntu默认没有root用户,而是用户名为ubuntu的用户
需要root权限执行的场景需要使用sudo
命令
执行sudo
命令可能会要求输入用户密码,并且什么都看不见
切换root用户可以使用如下两种方法
sudo -i
# 下面的是临时切换
sudo su
exit
- 更新一下系统
sudo apt-get update
# 获取远程服务器的套件档案清单
sudo apt-get -y dist-upgrade
# 更新套件
sudo apt-get clean
# 清除更新时下载的更新档案
sudo apt-get autoremove
# 自动清除更新后用不到的旧版本档案
出现了这么个东西
A new version (/tmp/filelafLYm) of configuration file │
│ /etc/ssh/sshd_config is available, but the version installed currently │
│ has been locally modified. │
│ │
│ What do you want to do about modified configuration file sshd_config? │
│ │
│ install the package maintainer's version │
│ keep the local version currently installed │
│ show the differences between the versions │
│ show a side-by-side difference between the versions │
│ show a 3-way difference between available versions │
│ do a 3-way merge between available versions │
│ start a new shell to examine the situation
我选第一个
- 无法接受没有root,没有root的Linux是莫得灵魂的
# 通过设置密码来启用root用户
sudo passwd root
标签:get,sudo,apt,version,between,服务器,迁移,root
From: https://www.cnblogs.com/yaocy/p/16799151.html