swap.target으로 인해 부팅 시간이 길어짐

swap.target으로 인해 부팅 시간이 길어짐

나는 부팅 시간을 최적화하기 시작했습니다. 명령어를 쳤더니 1분 이상 계속되는 systemd-analyze plot >bootup.svg걸 봤습니다 . swap.target그럼 그걸로 무엇을 할 수 있나요?

편집하다:

grep swap /etc/fstab산출:

# swap was on /dev/sda4 during installation
UUID=6b06a63a-e66b-489c-834d-04b5ab909160 none            swap    sw              0       0

sudo blkid | grep swap산출:

/dev/sda4: UUID="8fb26a5f-62fc-4c3a-8df5-421f884844b7" TYPE="swap" PARTUUID="d9fa2484-04"

출력의 'dmesg' 부분:

[    3.605617] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
[    3.605710] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[    4.687101] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    4.697746] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
[    4.697822] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
[    4.697895] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[    4.697962] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[    4.698027] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
[   92.575975] audit: type=1400 audit(1597581223.535:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=669 comm="apparmor_parser"
[   92.577822] audit: type=1400 audit(1597581223.539:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=668 comm="apparmor_parser"
[   92.577827] audit: type=1400 audit(1597581223.539:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=668 comm="apparmor_parser"
[   92.580091] audit: type=1400 audit(1597581223.539:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=672 comm="apparmor_parser"
[   92.583043] audit: type=1400 audit(1597581223.543:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=673 comm="apparmor_parser"
[   92.583046] audit: type=1400 audit(1597581223.543:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=673 comm="apparmor_parser"
[   92.583048] audit: type=1400 audit(1597581223.543:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=673 comm="apparmor_parser"
[   92.583483] audit: type=1400 audit(1597581223.543:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=671 comm="apparmor_parser"
[   92.585361] audit: type=1400 audit(1597581223.543:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=674 comm="apparmor_parser"
[   92.591057] audit: type=1400 audit(1597581223.551:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ippusbxd" pid=677 comm="apparmor_parser"
[   93.306091] nfc: nfc_init: NFC Core ver 0.1
[   93.306112] NET: Registered protocol family 39

답변1

두 UUID가 어떻게 다른지 확인하세요. 그것들은 동일해야 합니다. 스왑이 변경되었습니다.

부팅 시 시스템은 /etc/fstab에서 스왑 UUID를 읽고 이를 마운트하려고 시도합니다. 하지만 존재하지 않아 마운트가 실패합니다. 시스템이 다시 시도하고 다시 실패합니다. 따라서 시스템은 사용할 수 있는 사용 가능한 스왑을 찾기 시작합니다. 결국 시스템은 새 스왑 파티션을 찾아서 마운트합니다. 전체 프로세스는 부팅하는 동안 약 1분(또는 그 이상)이 걸리므로 부팅 속도가 느려집니다.

시스템에 스왑의 올바른 UUID를 알려주면 문제를 쉽게 해결할 수 있습니다. /etc/fstab을 편집하고 이전 UUID를 올바른 UUID로 바꾸세요. 를 실행할 때 올바른 UUID를 배웠습니다 sudo blkid.

그런 다음 재부팅하여 더욱 빠른 부팅을 즐겨보세요.

관련 정보