VirtualBox 中 Ubuntu 无法打开terminal

VirtualBox 中 Ubuntu 无法打开terminal

情况描述:

  • 新安装的虚拟机无法打开Terminal
  • Ubuntu 环境中时间乱码

解决方案

CTRL + ALT + F3 # 进入命令行模式(需要返回桌面时CTRL + ALT + F1)
cd /etc/default
sudo nano locale
# 把文件中的 “en_US” 改成 “en_US.UTF-8”
# 保存退出
sudo locale-gen --purge
reboot # 重启虚拟机


# 虚拟机- Vboxuser is not in the sudoers
su root
gedit /etc/sudoers
找到 “root ALL=(ALL) ALL”,在下面插入“vboxuser ALL=(ALL) ALL”
exit
再次执行 sudo 命令,即可成功