web-dev-qa-db-fra.com

invoke-rc.d: initscript inconnu, / etc / init.d / modemmanager introuvable

J'ai démarré Ubuntu 13.10 sur ma tablette Android et fonctionne bien, mais après l'installation de certains programmes, j'ai l'erreur

u0_a206@Android:/ $
u0_a206@Android:/ $ su
root@Android:/ # /data/data/com. Zpwebsites. Linuxonandroid/files/busybox chroot /data/local/mnt /root/init.sh
Config file loaded

New 'X' desktop is localhost: 0

Starting applications specified in /home/ubuntu/.vnc/xstartup
Log file is /home/ubuntu/.vnc/localhost:0.log


If you see the message 'New 'X' Desktop is localhost: 0' then you are ready to VNC into your Ubuntu OS.

If connection from a different machine on the same network as the Android device use the address below:
wlan0: error fetching interface information: Device not found

If using androidVNC, change the 'Color Format' setting to 24-bit colour, and once you've VNC'd in, change the 'input mode' to touchpad (in settings)
 * Starting OpenBSD Secure Shell server sshd                                                                                                             [ OK ] 
To shut down the Linux environment, just enter 'exit' at this terminal - and WAIT for all shutdown routines to finish!

Root@localhost:/#
root@localhost:/# Sudo apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up modemmanager (0.6.0.0.really-0ubuntu7) ...
invoke-rc.d: unknown initscript,/etc/init.d/modemmanager not found.
dpkg: error processing modemmanager (--configure):
 subprocess installed post-installation script returned error exit status 100
Errors were encountered while processing:
 modemmanager
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@localhost:/#'

Je ne peux rien installer, aucune mise à jour et mise à niveau. J'ai essayé quelques réponses ici et d'autres forums, mais cela ne fonctionne pas.

2
user253489

C'est très simple à corriger.

invoke-rc.d (Invoke un script d'initialisation) est incapable de trouver l'initscript /etc/init.d/modemmanager

invoke-rc.d: unknown initscript,/etc/init.d/modemmanager not found.

Simplement touch /etc/init.d/modemmanager Pour le créer.

7
mjz19910

Commencez par télécharger le paquetage modemmanager en lançant,

apt-get download modemmanager

Après cela, supprimez complètement le package modemmanager non configuré en exécutant la commande ci-dessous,

Sudo dpkg -P modemmanager

Ensuite, faites une mise à niveau,

Sudo apt-get upgrade

Si vous ne parvenez pas à vous connecter à Internet après la désinstallation de modemmanager, ne vous inquiétez pas, nous avons déjà téléchargé le paquet modemmanager. Il se trouvera dans votre répertoire personnel. Installez-le,

Sudo dpkg -i filename.deb
1
Avinash Raj