windows下制作安装U盘
使用工具:Universal USB Installer
ubuntu下制作安装U盘
使用工具:Startup Disk Creator(自带)
选择国内源:Switch to Chinese apt Sources:(In GUI)
Software & Updates --> Ubuntu Software -->
Download from --> Other --> Select Best Server
推荐手动选择huaweicloud(华为源)
删除自带的liboffice,换成wps
sudo apt-get -y remove --purge libreoffice* libexttextcat-data* && sudo apt-get -y autoremove sudo apt-get install snapd sudo snap install wps-office
配置输入法
Ubuntu 18.04(自带)
- Ubuntu Software中搜索并安装pinyin
- System Settings -> Region & Language -> Manage Installed Languages -> Install/Remove Languages
- 重启系统
- System Settings -> Region & Language -> Input Sources [+] -> Chinese -> Chinese (Intelligent Pinyin)
Ubuntu 16.04(Sogou输入法)
- 下载sogou输入法,地址https://pinyin.sogou.com/linux/
- 右键 -> Open With Software Install,按提示输入密码即可完成
- System Settings -> Language Support -> Keyboard input method system选中fcitx
- System Settings -> 点击+号 -> 添加想要的输入法即可
Ubuntu 16,04(自带)
- Ubuntu Software中搜索并安装pinyin. OR: sudo apt install fcitx fcitx-googlepinyin fcitx-table-wbpy fcitx-pinyin fcitx-sunpinyin
- System Settings -> Language Support -> Keyboard input method system选中iBUs
- System Settings -> 点击+号 -> 添加想要的输入法即可
配置浏览器,用默认firefox浏览器:
- 添加bookmark:码云、博客园、github、百度、youdao翻译、bing、google、微信网页版、aliyun
- 设置下载文件保存目录 --> Always ask you where to save files
安装lantern
- 下载地址:https://github.com/getlantern/lantern
- 右键下载文件 -> Open With Software Install
- 无需配置,可直接使用
设置默认启动的系统:
参考:https://blog.csdn.net/SUN_v5/article/details/78495356
- 进入Ubuntu系统,打开终端,输入 sudo gedit /etc/default/grub,文件中以#开头的是注释行。
- GRUB_DEFAULT=0,意思就是启动菜单顶部的为默认启动项,将0改为默认启动的系统编号,保存,退出。
- GRUB_TIMEOUT=10,表示默认超时时间是10s,修改数字,保存,退出。
- 终端执行sudo update-grub,也就是更新grub.cfg文件,使刚才的改动生效。
- reboot