Currently my raspberry pi, running Raspbian, won't fully boot up because its getting stuck 5 seconds into boot at udevd[107] starting version 175
Everything was running smoothly until I installed upstart to run my node server on the pi.
I ran these commands:
sudo apt-get install upstart
Once it was installed I was getting Unable To Connect To Upstart: Failed To Connect To Socket /Com/Ubuntu/Upstart: Connection Refused error which I solved by running:
sudo dpkg-divert --local --rename --add /sbin/initctl
ln -s /bin/true /sbin/initctl
After running those commands I rebooted and got stuck at boot at udevd. Any advice other than flashing new raspbian image?