Advertisement
dfarrell07

deb_java_dep_not_satisfiable

Aug 12th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. # After building the Boron example deb successfully
  2. vagrant@jessie:/vagrant/opendaylight$ sudo dpkg -i opendaylight_5.0.0-1_all.deb
  3. Selecting previously unselected package opendaylight.
  4. (Reading database ... 35365 files and directories currently installed.)
  5. Preparing to unpack opendaylight_5.0.0-1_all.deb ...
  6. Unpacking opendaylight (5.0.0-1) ...
  7. dpkg: dependency problems prevent configuration of opendaylight:
  8. opendaylight depends on java8-runtime-headless; however:
  9. Package java8-runtime-headless is not installed.
  10.  
  11. dpkg: error processing package opendaylight (--install):
  12. dependency problems - leaving unconfigured
  13. Errors were encountered while processing:
  14. opendaylight
  15.  
  16. # Trying to fix the dependencies just removes OpenDaylight
  17. # Method doc'd here: http://superuser.com/a/537371/222446
  18. vagrant@jessie:/vagrant/opendaylight$ sudo apt-get install -f
  19. Reading package lists... Done
  20. Building dependency tree
  21. Reading state information... Done
  22. Correcting dependencies... Done
  23. The following packages will be REMOVED:
  24. opendaylight
  25. 0 upgraded, 0 newly installed, 1 to remove and 13 not upgraded.
  26. 1 not fully installed or removed.
  27. After this operation, 639 MB disk space will be freed.
  28. Do you want to continue? [Y/n] y
  29. (Reading database ... 47511 files and directories currently installed.)
  30. Removing opendaylight (5.0.0-1) ...
  31.  
  32. # Trying another method, gdebi, fails because it can't satisfy java8-runtime-headless
  33. # Method doc'd here: http://superuser.com/a/698249/222446
  34. vagrant@jessie:/vagrant/opendaylight$ sudo apt-get install gdebi-core
  35. vagrant@jessie:/vagrant/opendaylight$ sudo gdebi opendaylight_5.0.0-1_all.deb
  36. sudo gdebi opendaylight_5.0.0-1_all.deb
  37. Reading package lists... Done
  38. Building dependency tree
  39. Reading state information... Done
  40. Building data structures... Done
  41. Building data structures... Done
  42. This package is uninstallable
  43. Dependency is not satisfiable: java8-runtime-headless
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement