Advertisement
Guest User

Untitled

a guest
Jul 10th, 2015
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.48 KB | None | 0 0
  1. root@kali:~# rm -i /var/lib/dpkg/lock
  2. rm: remove regular empty file `/var/lib/dpkg/lock'?
  3. root@kali:~# rm -i /var/lib/dpkg/lock
  4. rm: remove regular empty file `/var/lib/dpkg/lock'? y
  5. root@kali:~# rm -i /var/lib/dpkg/lock
  6. rm: cannot remove `/var/lib/dpkg/lock': No such file or directory
  7. root@kali:~# rm -i /var/cache/apt
  8. apt/ apt-xapian-index/
  9. root@kali:~# rm -i /var/cache/apt
  10. apt/ apt-xapian-index/
  11. root@kali:~# rm -i /var/cache/apt/archives/lock
  12. rm: remove regular empty file `/var/cache/apt/archives/lock'? y
  13. root@kali:~# rm -i /var/cache/apt/archives/lock
  14. rm: cannot remove `/var/cache/apt/archives/lock': No such file or directory
  15. root@kali:~# apt-get install -f
  16. Reading package lists... Done
  17. Building dependency tree
  18. Reading state information... Done
  19. The following packages were automatically installed and are no longer required:
  20. python-bitarray python-bloomfilter
  21. Use 'apt-get autoremove' to remove them.
  22. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  23. root@kali:~# dpkg -configure -a
  24. dpkg: error: unknown option -o
  25.  
  26. Type dpkg --help for help about installing and deinstalling packages [*];
  27. Use `dselect' or `aptitude' for user-friendly package management;
  28. Type dpkg -Dhelp for a list of dpkg debug flag values;
  29. Type dpkg --force-help for a list of forcing options;
  30. Type dpkg-deb --help for help about manipulating *.deb files;
  31.  
  32. Options marked [*] produce a lot of output - pipe it through `less' or `more' !
  33. root@kali:~# dpkg --configure -a
  34. root@kali:~# apt-get autoremove
  35. Reading package lists... Done
  36. Building dependency tree
  37. Reading state information... Done
  38. The following packages will be REMOVED:
  39. python-bitarray python-bloomfilter
  40. 0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded.
  41. After this operation, 463 kB disk space will be freed.
  42. Do you want to continue [Y/n]? y
  43. (Reading database ... 341360 files and directories currently installed.)
  44. Removing python-bloomfilter ...
  45. Removing python-bitarray ...
  46. Processing triggers for python-support ...
  47. root@kali:~# apt-get clean
  48. root@kali:~# apt-get update
  49. Hit http://repo.linrunner.de stable Release.gpg
  50. Hit http://repo.linrunner.de stable Release
  51. Hit http://repo.linrunner.de stable/main amd64 Packages
  52. Ign http://repo.linrunner.de stable/main Translation-en_US
  53. Ign http://repo.linrunner.de stable/main Translation-en
  54. Hit http://http.kali.org moto Release.gpg
  55. Hit http://security.kali.org moto/updates Release.gpg
  56. Hit http://http.kali.org moto Release
  57. Hit http://security.kali.org moto/updates Release
  58. Hit http://http.kali.org moto/main Sources
  59. Hit http://security.kali.org moto/updates/main Sources
  60. Hit http://http.kali.org moto/non-free Sources
  61. Hit http://security.kali.org moto/updates/contrib Sources
  62. Hit http://http.kali.org moto/contrib Sources
  63. Hit http://security.kali.org moto/updates/non-free Sources
  64. Hit http://http.kali.org moto/main amd64 Packages
  65. Hit http://security.kali.org moto/updates/main amd64 Packages
  66. Hit http://http.kali.org moto/non-free amd64 Packages
  67. Hit http://security.kali.org moto/updates/contrib amd64 Packages
  68. Hit http://http.kali.org moto/contrib amd64 Packages
  69. Hit http://security.kali.org moto/updates/non-free amd64 Packages
  70. Ign http://http.kali.org moto/contrib Translation-en_US
  71. Ign http://security.kali.org moto/updates/contrib Translation-en_US
  72. Ign http://http.kali.org moto/contrib Translation-en
  73. Ign http://security.kali.org moto/updates/contrib Translation-en
  74. Ign http://http.kali.org moto/main Translation-en_US
  75. Ign http://security.kali.org moto/updates/main Translation-en_US
  76. Ign http://http.kali.org moto/main Translation-en
  77. Ign http://security.kali.org moto/updates/main Translation-en
  78. Ign http://http.kali.org moto/non-free Translation-en_US
  79. Ign http://security.kali.org moto/updates/non-free Translation-en_US
  80. Ign http://http.kali.org moto/non-free Translation-en
  81. Ign http://security.kali.org moto/updates/non-free Translation-en
  82. Reading package lists... Done
  83. root@kali:~# apt-get upgrade
  84. Reading package lists... Done
  85. Building dependency tree
  86. Reading state information... Done
  87. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  88. root@kali:~# apt-get install tlp tlp-rdw
  89. Reading package lists... Done
  90. Building dependency tree
  91. Reading state information... Done
  92. Some packages could not be installed. This may mean that you have
  93. requested an impossible situation or if you are using the unstable
  94. distribution that some required packages have not yet been created
  95. or been moved out of Incoming.
  96. The following information may help to resolve the situation:
  97.  
  98. The following packages have unmet dependencies:
  99. tlp : Depends: init-system-helpers (>= 1.18~) but 1.11~bpo70.1 is to be installed
  100. E: Unable to correct problems, you have held broken packages.
  101. root@kali:~#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement