Ubuntu 进入系统

Ubuntu 进入系统

1. 进入root账号:

1
sudo su root

2. 更新软件

1
apt-get update

3-1. 卸载vim-tiny,安装vim-full

,否则vi操作很奇怪.
ubuntu默认安装装的是vim tiny版本,而需要的是vim full版本。执行下面的语句安装vim full版本:

1
2
apt-get remove vim-common
apt-get install vim

3-2. 修改vimrc不适用兼容模式
打开/etc/vim/vimrc,并加入以下内容

1
vim /etc/vim/vimrc

最后加入如下命令

1
2
set nocompatible
set backspace=2

4-1. 安装 openssh-server

1
apt-get install -y openssh-server

4-2. 配置 sshd_config

1
vim /etc/ssh/sshd_config
1
2
3
4
LoginGraceTime 2m             //#去掉,改为600m
PermitRootLogin yes           //#去掉
StrictModes yes               //#去掉
PasswordAuthentication yes    //这边no要改成yes

4-3. 重启

1
reboot

5. 安装 firewalld.service

1
apt install -y firewalld

Leave a Reply

Your email address will not be published. Required fields are marked *