
Originally Posted by
ian-weisser
Most profuse apologies for not being clear:
I meant: "Temporarily edit line #4 of /etc/init.d/udev"
Code:
#!/bin/sh -e
### BEGIN INIT INFO
# Provides: udev
# Required-Start: mountkernfs
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: Start udevd, populate /dev and load drivers.
### END INIT INFO
[...]
Remove the reference to mountkernfs.
Save (this script is run by root, so use
sudo)
sudo apt-get update && sudo apt-get upgrade
Edit the file once more to replace the reference to mountkernfs
This worked =]
so here's what I did:
made a backup of /etc/init.d/udev:
Code:
~$ sudo cp /etc/init.d/udev /etc/init.d/udev-orig
deleted the line you said using gedit:
Code:
~$ sudo gedit /etc/init.d/udev
ran an update (which completed successfully) (I seem to have lost the output for this, but it worked):
Code:
~$ sudo apt-get update && sudo apt-get upgrade
so I restored the original file and checked it in gedit
Code:
~$ sudo cp /etc/init.d/udev-orig /etc/init.d/udev
~$ sudo gedit /etc/init.d/udev
then I re-enabled my PPA's from the package manager and ran a final update which again was a success.
I just want to say a huge thank you to you both for all of your time and effort, you not only solved my problem but also taught me, so thank you =D
Bookmarks