Ubuntu vi无法编辑,一直出现BCD字母

(个人经验,仅供参考,错误之处,敬请谅解)

Solution

First、

$cp /etc/vim/vimrc ~/.vimrc

Second、

$gksudo gedit /etc/vim/vimrc (add the following things)
"set nocompatible
"set backspace=2
打开图形化软件最好使用gksudo,与sudo是有区别的。自行查找理解

Third、
      ubuntu默认安装装的是vim tiny版本,而需要的是vim full版本。执行下面的语句安装vim full版本

$sudo apt-get remove vim-common

$sudo apt-get install vim

你可能感兴趣的:(Linux,Server)