http://community.wps.cn/wiki/No_necessary_symbol_fonts

用户名:bestming
密码:135579

ubuntu16.04分区设置
https://blog.csdn.net/zhangxiangweide/article/details/74779652

https://blog.csdn.net/Alvern_Zhang/article/details/48392895

U盘给移动硬盘安装Ubuntu:
https://blog.csdn.net/jiangxunzhi123/article/details/49011381

虚拟机安装ubuntu 分区
http://blog.sciencenet.cn/blog-3247241-1080247.html

Do you want to return to the partitioning menu?
The partition /dev/sdb9 assigned to /home starts at an Offset of 512 bytes fom the minimum alignment for this disk, which may lead to very poor performance.
Since you are formatting this partition, you should correct this problem now by realigning the partition, as it will be
difficult to change later. To do this, go back to the main partitioning menu, delete the partition, and recreate it in
the same position with the same settings. This will cause the partition to start at a point best suited for this disk.
Go Back
Continue

方法一:
分为3个区

  1. 挂载点/;主分区;安装系统和软件;大小为30G;分区格式为ext4;
  2. 挂载点/home;逻辑分区;相当于“我的文档”;大小为硬盘剩下的; 分区格式ext4;
  3. swap;逻辑分区;充当虚拟内存;大小等于内存大小(本人2G);分区格式为swap
  4. /boot ;引导分区;逻辑分区; 大小为200M ;分区格式为ext4;

创建主分区:
5G    主分区    空间起始位置    Ext4日志文件系统    /

创建swap分区:
2048MB    逻辑分区        空间起始位置    交换空间

创建boot分区:
200MB    逻辑分区   空间起始位置    Ext4日志文件系统   /boot

创建home分区:
剩余的空间    逻辑分区   空间起始位置    Ext4日志文件系统   /home

方法二:
/boot(引导分区):主分区:大小设置为200M;
/.(主分区):主分区,用于存放系统,相当于win7的C盘,10G即可。
/home(用户存储数据用):逻辑分区,要尽可能大,100G空间可以设置为85G,留10G给主分区即可。
Swap(相当于电脑内存):逻辑分区、大小设置为电脑内存大小,2G,4G;

方法三:
分为3个区

  1. 挂载点/;主分区;安装系统和软件;大小为30G;分区格式为ext4;
  2. 挂载点/home;逻辑分区;相当于“我的文档”;大小为硬盘剩下的; 分区格式ext4;
  3. swap;逻辑分区;充当虚拟内存;大小等于内存大小(本人2G);分区格式为swap
  4. /boot ;引导分区;逻辑分区; 大小为200M ;分区格式为ext4;
  5. 挂载点/home;逻辑分区;相当于“我的文档”;大小为硬盘剩下的; 分区格式ext4;

设置为USB3.0,否则移动硬盘,可能无法识别(上图)。

打开终端,终端快捷键是Ctrl+Alt+T,输入:

sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update 

增加一个repair源
然后一直跟着提示操作即可。

第四步:
在终端再次输入:

sudo apt-get install -y boot-repair && boot-repair

等一会,会出现如下的界面:

如何使用Boot Repair:

1、首先你需要一张ubuntu的live CD或者自启动u盘(建议和安装的是相同版本),电脑也要连接到互联网(建议是路由器自动拨号的那种,从而无需手动联网)。既然你已经装了ubuntu系统,相信这些东西你都有的。

2、重启电脑,放入CD或者插上自启动u盘,把它们设置为第一启动项,好让它们先于windows系统运行。

3、进入live CD中,选择体验ubuntu而不是直接安装。

4、打开终端(虽然修复用不着,但是添加软件源和安装软件还是需要终端的),输入:

sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update

回车后,终端界面会有提示信息,还是按下回车键,之后界面会有很多信息在界面上滚动,等待十几秒就把终端关闭把。

5、再次打开终端,输入:

sudo apt-get install -y boot-repair && boot-repair

等待一会,就会出现Boot Repair的软件界面了,点击上面的“recommended repair”按钮,等待一会儿,就会跳出修复成功。

inux编译安装包没有configure怎么办?