两天前,我在笔记本电脑上安装了 Ubuntu 12.04 LTS,现在我遇到了一个大问题,我无法解决,即使阅读和检查你们中的一些人在解释中所说的内容。
问题:(它是德语,所以翻译可能不完全相同)“/dev/mapper/cryptswap1 的硬盘尚未准备好或不存在。”
询问如下:nano /etc/fstab
GNU nano 2.2.6 Datei: /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=ec755811-c3d0-4ffa-99d4-cb23a07a706a / ext4 errors=remoun$
# swap was on /dev/sda5 during installation
#UUID=8085f746-2ae9-48ad-82aa-35fd8ace1009 none swap sw $
/dev/mapper/cryptswap1 none swap sw 0 0
答案1
为了解决cryptswap1 问题,打开一个终端窗口,然后执行
sudo nano /etc/fstab
并在第一列中用 octothorpe ( # ) 注释掉不合适的 cryptswap1 行。然后确保有一行用于标准交换分区,例如
/dev/hda5 swap 交换默认值 0 0
保存文件并退出
Ctrl-O
Ctrl-X
并重新启动系统。