여기 내 boot.log가 있습니다
resume: libgcrypt version: 1.5.0
fsck from util-linux 2.19.1
fsck from util-linux 2.19.1
fsck from util-linux 2.19.1
/dev/sda5: clean, 668102/3276800 files, 4449436/13107200 blocks
/dev/sda2: recovering journal
uhome: recovering journal
/dev/sda2: clean, 3030/74592 files, 200601/297200 blocks (check in 2 mounts)
uhome: clean, 282203/2621440 files, 8705593/10485760 blocks (check after next mount)
Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox
* Starting AppArmor profiles [170G
[164G[ OK ]
* Setting sensors limits [170G
[164G[ OK ]
Invalidating stale software suspend images... done.
* Starting mDNS/DNS-SD daemon[164G[ OK ]
Starting DECnet... * Starting network connection manager[164G[ OK ]
done.
* Stopping Failsafe Boot Delay[164G[ OK ]
* Stopping System V initialisation compatibility[164G[ OK ]
* Starting System V runlevel compatibility[164G[ OK ]
* Starting Bumblebee supporting nVidia Optimus cards[164G[ OK ]
* Starting LightDM Display Manager[164G[ OK ]
* Starting save kernel messages[164G[ OK ]
* Starting ACPI daemon[164G[ OK ]
* Starting anac(h)ronistic cron[164G[ OK ]
* Starting deferred execution scheduler[164G[ OK ]
* Starting regular background program processing daemon[164G[ OK ]
* Starting automatic crash report generation[164G[[31mfail[39;49m]
* Stopping anac(h)ronistic cron[164G[ OK ]
* Starting CPU interrupts balancing daemon[164G[ OK ]
fstab의 내용 :
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' 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/sda5 during installation
UUID=d30f09f8-9580-4a6b-ac31-f69116793f9f / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda2 during installation
UUID=28309a48-2171-4784-8093-d0e5ca40e6de /boot ext4 defaults 0 2
# /home was on /dev/sda6 during installation
UUID=4d7ee3e9-bf26-483d-af6e-efcd883126d0 /home ext4 defaults 0 2
# swap was on /dev/sda10 during installation
UUID=f1a123f0-c81d-4f0a-9d5c-6780cbf8b9dc none swap sw 0 0
dmesg 로그는 다음과 같습니다. http://paste.ubuntu.com/826319/ ‘
dmesg 로그는 6 초 후에 약간의 충돌이 발생하고 24 초에 다시 시작하기 전에 너무 많이 기다립니다.
의 출력 fdisk -l
과 mount
: http://paste.ubuntu.com/826397/
가능한 모든 서비스를 비활성화했지만 여전히 부팅하는 데 50 초가 걸립니다. Live USB로 부팅하는 데 25 초가 걸리지 않습니다.
부팅 프로세스는 “resume libcrypt version”줄에서 약 20 초 동안 중지됩니다. 그리고 그 fscks는 매 부팅마다 수행됩니다. 그 fscks가 필요합니까?
편집 : 부팅 차트
답변
정상적인 부팅 시간은 40 초입니다 (BIOS 포함). 이 문제를 일으키는 “좋지 않은”하드웨어가있을 수 있습니다. 또한 부팅 할 때 많은 것을 유지하고 많은 패키지를 설치해야합니다. 그러나 걱정할 필요는 없습니다.
답변
터미널을 시작한 다음 아래 코드를 입력하여 상황 / 요구에 맞게 수정하십시오.
sudo tune2fs -c 50 /dev/hda1
50은 50 번 부팅 할 때마다 시스템이 fsck를 실행하도록해야합니다. 보통 50 ~ 100으로 간주됩니다. hda1은 설정에 따라 hda1, hda2, hda3 … 또는 sda1, sda2, sda3 … 일 수 있습니다.
을 입력하면 더 많은 정보를 얻을 수 있습니다 man tune2fs
. 아래쪽 화살표는 맨 페이지를 통해 당신을 실망합니다.