ubuntu18.04安装配置要点

  1. 安装时选择simple install,语言选择(English,us)
  2. 进入系统,更换镜像源为aliyun
  3. 语言设置为中文,sudo apt upgrade,重启,继续安装语言支持,重启。添加intelligent pinyin中文输入法(如果没有词选项,把简体中文卸载重装)
  4. 安装wmtools,重启,测试粘贴功能和文件拖拽功能正常。
  5. 关闭虚拟机,设置共享文件夹。打开虚拟机,设置su root权限。
  6. sudo apt-get install open-vm-tools-desktop。安装好以后,进入su root。之后在cd /mnt/hgfs下可以看到共享文件夹,可以cd进入。(如果没有,尝试在root用户下执行命令:vmhgfs-fuse .host:/ /mnt/hgfs/ )
  7. 克隆虚拟机,保存备份。或者使用快照便于恢复系统。
补充:把用户名添加到超级管理员
  1. 执行命令chmod u+w /etc/sudoers或者执行chmod 640 /etc/sudoers。
  2. vim /etc/sudoers 修改文件内容,在root ALL=(ALL) ALL下加一行xxx ALL=(ALL) ALL,xxx为你的用户名。完成。
  3. chmod u-w /etc/sudoers或者执行chmod 440 /etc/sudoers 复原权限

参考资料:
12. https://jingyan.baidu.com/article/3052f5a1f1b17c97f31f8688.html
13. https://blog.csdn.net/kurosakimaon/article/details/53575301
14. http://www.cnblogs.com/jiu0821/p/5946062.html

你可能感兴趣的:(Linux)