View Single Post
Jaygo333's Avatar
Posts: 56 | Thanked: 10 times | Joined on Feb 2009
#1
I was having trouble updating the headphone app and openntpd and it was really bugging me. Reading through the errors it was giving me, I saw it was freezing on symbolic linking and exiting
Code:
invoke-rc.d: not a symlink: "/etc/rc2.d/S20openntpd"
invoke-rc.d: dangling symlink: "/etc/rc2.d/S20openntpd"
invoke-rc.d: not a symlink: "/etc/rc2.d/S99zheadphoned"
invoke-rc.d: dangling symlink: "/etc/rc2.d/S99zheadphoned"
So I went to /etc/rc2.d/ and renamed said files.
Before
S20openntpd
S99zheadphoned
After
S20openntpd.BAK
S99zheadphoned.BAK

And after running update again, it worked.
My question is, what did i just do?
And after the updates, I see no openntpd or headphoned files in /rc2.d/ only the BAK that I made. Shouldn't there be new ones created? Just thinking aloud.

On a side note, everytime I run apt-get "anything" this line always shows up
Code:
/usr/sbin/invoke-rc.d: line 1: a#!/bin/sh: not found
I thought sh was BusyBox, so how is it not found?

Last edited by Jaygo333; 2009-12-04 at 04:52. Reason: added sidenote