Problems encountered with Ubuntu 16.04 installation

1. Install VMtools:

①After choosing to install: CD image will appear

② Copy the compressed package to the desktop and decompress it

③sudo ./wmware-install.pl

④ Keep returning after the first yes

⑤reboot

2. Tab completion function cannot be used

Open the terminal:
sudo gedit /etc/bash.bashrc
to remove the contents of this file.

enable bash completion in interactive shells
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ];
. /etc/bash_completion
fi
fi
3、vi进不了编辑模式

Modify the /etc/vim/vimrc.tiny file and set set compatible to set nocompatible. Save and exit. This is because sometimes the system will be vim compatible by default, so use the vi command

Guess you like

Origin www.cnblogs.com/XxZzYy/p/12702735.html