Debian

Swap 突然從 Debian 中消失了?

  • October 25, 2015

6 個月來一切都很好,直到今天我的交換突然消失了。現在我研究了一下,我發現我的磁碟分區有點奇怪。它發生了什麼事,我應該怎麼做才能快速恢復它而無需重新安裝所有東西?(我需要在再次進行全新安裝之前完成一項工作)

這是我的/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>
/dev/mapper/ubuntu--vg-root /               ext4    errors=remount-ro 0       1
# /boot was on /dev/sda1 during installation
UUID=ede3c189-5d39-4f55-b263-0d6bcafc5d7b /boot           ext4    defaults        0       2
/dev/mapper/ubuntu--vg-swap_1 none            swap    sw              0       0
/dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0
# /dev/sdb1       /media/usb0     auto    rw,user,noauto  0       0
# /dev/sdc1       /media/usb1     auto    rw,user,noauto  0       0 

(順便說一句,為什麼那裡有“Ubuntu”?)

這是結果sudo fdisk -l /dev/sda

Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000aabb9

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      499711      248832   83  Linux
/dev/sda2          501758   625141759   312320001    5  Extended
/dev/sda5          501760   625141759   312320000   8e  Linux LVM

至於lvm資訊,這裡是輸出ls -l /dev/mapper

total 0
crw------T 1 root root 10, 236 juin  29 07:28 control
lrwxrwxrwx 1 root root       7 juin  29 07:28 ubuntu--vg-root -> ../dm-0
lrwxrwxrwx 1 root root       7 juin  29 07:28 ubuntu--vg-swap_1 -> ../dm-1

.. 的輸出lvscan

ACTIVE            '/dev/ubuntu-vg/root' [294,10 GiB] inherit
ACTIVE            '/dev/ubuntu-vg/swap_1' [3,74 GiB] inherit

..和輸出pvscan

PV /dev/sda5   VG ubuntu-vg   lvm2 [297,85 GiB / 12,00 MiB free]
Total: 1 [297,85 GiB] / in use: 1 [297,85 GiB] / in no VG: 0 [0   ]

.. 而且每天看起來更清楚的是,那天晚上我們可能沒有從我的磁碟上正確擦除 Ubuntu -_-

有沒有辦法在我有時間擦除所有這些之前快速取回我的交換?

要啟用交換設備,您可以

swapon /dev/mapper/ubuntu--vg-swap_1

如果該交換空間有錯誤,因為它以某種方式被破壞,您可以重新格式化交換設備

mkswap /dev/mapper/ubuntu--vg-swap_1

查看相關手冊頁swapon(1)mkswap(1)了解更多資訊。

引用自:https://unix.stackexchange.com/questions/212485