This seems too long to me, and longer than I recall when I had a Mint boot. I am currently dual booting. Is this normal? If not, what might be the cause?
2 Answers
Given that the question has no other clues (besides the absence of shutdown log), I can only provide the answer by guessing based on my experience only.
Is this normal?
I can't tell, but may be normal for your current setup (which I don't know how you set up the dual-boot with Linux Mint). But if you were to compare with mine, yours is not normal.
I have a quite aged, second hand, circa-2005 single-core machine. This machine has been installed with Xubuntu 14.04 to primary partition and multiboot with other distro (always changing, but Linux Mint 17 was one of them) on other partitions.
Yet, the machine can shut down Xubuntu 14.04 in less than 10 seconds--this is my normal.
If not, what might be the cause?
From here onwards is just guessing, talking about possibilities (which I can think of, but not necessarily have experience) for your case. You may check from the listing below.
Did you setup shared partitions between Xubuntu and Linux Mint? Sharing partition such as
/home
may cause slow access, depending on their compatibility. However, this issue is irrelevant for sharing/swap
partition.Did you setup encrypted partitions on Xubuntu? Unmounting encrypted partition may behave differently than non-encrypted ones.
Did you setup RAID array for your Xubuntu? Occasional bug may present for systems that has been installed with RAID configuration.
Which Xubuntu release are you using? Regular releases such as 14.10, 15.04 etc. occasionally introduce issues which are not present on LTS releases. Booting or shutdown issue could be one of them. Read the release note of your release on this Ubuntu Wiki.
Is the partition where Xubuntu been installed has disk error or having corrupted filesystem? You could use
fsck
to check disk error (backup first, because runningfsck
may have risk of making any corrupted filesystem even worse), or see if reinstalling Xubuntu will make any difference (as last resort).
Besides above, if Linux Mint boots and shutdown fine on the same hard disk, there is likely something amiss with your current setup for Xubuntu. That is all I can say.
Updated: I just found this post which has similar symptoms like your case. The answer suggests "The wrong driver is loaded which prevents shutdown".
-
to be clear, I dual boot W7 and some ubuntu distro. It used to be Mint, now it's Xubuntu. I'll go thru some of this when I get the chance tomorrow. – cfye14 Sep 08 '15 at 08:09
-
None of the above apply. When I ran a live cd to perform the
fsck
command, too, I noticed that reboot was almost instantaneous. The suggested command to fix the driver in the linked page did not work for me -- the module is not found. – cfye14 Sep 09 '15 at 05:29
So, this was pretty stupid, but I solved the issue. The key was to change the line GRUB_CMDLINE_LINUX_DEFAULT
to quiet
from quiet splash
in /etc/default/grub
, so I could see what was happening during shut down. As alluded to here, there's not really a system log for shut downs, so removing the splash screen helps.
Anyway, I'd placed a script in /etc/init.d
to try to manage wifi some time ago. It wasn't compliant with init script formatting, so I gather it was taking the system some time to terminate the script. I don't know why I just recently noticed the delayed shutdown time.

- 325
-
I must agree that the shut down log doesn't include everything shown on screen when shutting down the machine. The most I see on my machine is
tty
process being terminated andusb
devices being disconnected at shut down. – Sep 26 '15 at 11:37
sudo reboot -f
, it shuts down right away. I'll forget to do this a lot, inevitably, tho. Given this, I'm not sure there are logs I can look at to troubleshoot. – cfye14 Sep 08 '15 at 01:41/var/log/kern.log
and look forKernel logging (proc) stopped
(This is true on my Xubuntu system also). And try pasting the message appearing before that? – Sep 08 '15 at 04:29Kernel logging ...
is nowhere in my logs, no matter the method of shutdown. – cfye14 Sep 08 '15 at 05:10/var/log
consistent with slow shutdown issue. Tried rebooting with no applications open -- same issue. – cfye14 Sep 09 '15 at 18:04apport
doesn't report errors on reboot. In/var/crash
there are recent reports for chromium and rescuetime, but there is no language related to the errors mentioned in that link, and those crashes may have been related to me troubleshooting by rebooting frequently. – cfye14 Sep 10 '15 at 18:06