Ubuntu 虚拟机启动速度非常慢

Ubuntu 虚拟机启动速度非常慢

我在 Windows 7 主机上安装了一台运行 Ubuntu 16.04 的虚拟机。它以前启动速度非常快,但自从我使用 GParted 重新分区磁盘以留出更多空间后,从虚拟机启动虚拟机后,需要大约一分钟才能进入登录屏幕。我已经给出了大量的交换空间。

在我的 Virtual Box 设置下存储 > 控制器:IDE磁盘当前标记为“空”,但最终启动时,我的所有数据都能正常加载。如果我将此 .iso 更改为 ubuntu.iso,则我的数据不可用。我还能做什么来诊断问题/有人知道可以做什么吗?

$ sudo blkid
 /dev/sda1: UUID="8563..." TYPE="ext4" PARTUUID="938..-01"
 /dev/sda5: UUID="6696..." TYPE="swap" PARTUUID="938..-05"
$ cat /etc/fstab
<file system><mount point> <type> <options> <dump> <pass>
 / was on /dev/sda1 during installation
 UUID="8563..."                   /         ext4   errors=remount-ro     0 1
 swap was on /dev/sda5 during installation
 UUID="0dd5..."                   none      swap   sw     0 0 
$free -h 
       total    used    free    shared    buff/cache    available
Mem:   9.8G     1.4G    3.6G    42M       4.8G          8.0G
Swap:  0B       0B      0B
$ swapon
$     

答案1

来自评论……

sudo blkid编辑您的问题以包含和cat /etc/fstabfree -h的终端输出swapon

编辑/etc/fstab以使 UUID 与 blkid 的 UUID 匹配。

sudo -H gedit /etc/fstab

改变这个:

UUID=0dd5...   none   swap    sw    0   0

对此:

UUID=6696...   none   swap    sw    0   0

然后:

sudo swapon -a# 打开交换

free -h # 查看内存和交换

sudo swapon # 查看交换分区信息

相关内容