1
I was updating my system (Debian Sid x64) using apt-get
, but I got the following error:
Setting up fuse (2.9.3-14) ...
dpkg: error processing package fuse (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
fuse
I had an error like this before (also with fuse
), but then there was some information about the error displayed so I could do some research. There's nothing in /var/log/syslog
or /var/log/apt/term.log
.
Last time it was solved by updating the kernel, but I would prefer not to update the kernel at the moment without any prove that updating the kernel solves the problem.
Is there any way I can actually see what's causing the error instead of a message that just says it failed to install?
What happens if you try
apt-get install --only-upgrade fuse
? Do you get the same message? – jimm-cl – 2014-07-31T15:20:15.563I get
fuse is already the newest version.
, then1 not fully installed or removed.
and then I get the same messsage again. – Louis Matthijssen – 2014-07-31T15:25:00.9332I'm getting this too (Only slightly less annoying than not being able to upgrade my Xserver cause of the nvidia drivers...) the error is being triggered by this line in
/var/lib/dpkg/info/fuse.postinst
:udevadm test -e -p $(udevadm info -q path -n /dev/fuse) > /dev/null 2>&1
I have no idea what this is supposed to do but it's exiting with 1 and that's causing the issue... – J V – 2014-07-31T16:03:54.993