增加交换区域和 RAM 大小后,/dev/sda2
交换区域变为交换区域,并且交换的 UUID 发生变化。启动后首次出现 Ubuntu 图标时,一条长线显示一些 UUID 号码半秒钟后消失,好像出现错误。但我可以访问操作系统。如何验证是否存在错误或文件系统是否已接受新的交换区域?我已记下旧交换区域的 UUID。另请参阅:
madhu@madhu-desktop:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID= (Is same) ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID= (Starts in 7 and ends in 5) none swap sw 0 0
madhu@madhu-desktop:~$ swapon -s
Filename Type Size Used Priority
答案1
您可以从终端使用以下命令:
swapon -s
显示交换设备和大小
cat /proc/meminfo
显示总交换空间,以及可用交换空间
cat /proc/swaps
显示正在使用的交换设备
答案2
系统启动后使用以下命令:
swapon --show
这将显示哪些分区已启用交换。
如果要查找交换类型分区的 UUID:
sudo blkid | grep swap
答案3
使用以下终端命令逐一验证交换区域数据。
swapon -s
cat /proc/meminfo
cat /proc/swaps
然后逐一使用以下命令。
sudo blkid -c /dev/null -o list
gksudo gedit /etc/fstab
交换区域的 UUID 可能不同。在 gedit 中编辑交换区域的 UUID,以便安装时的 UUID 与新的交换区域匹配。保存。
这修复了错误。