Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $ dpkg -S $(which имя-программы)
  2.  
  3. $ sudo sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list
  4.  
  5. $ sudo apt-get update
  6.  
  7. $ sudo apt-get build-dep имя-пакета
  8.  
  9. $ mkdir ~/build.the.source && cd ~/build.the.source
  10.  
  11. $ apt-get source имя-пакета
  12.  
  13. $ cd ~/build.the.source/имя-пакета-версия-пакета
  14. $ edit ...
  15.  
  16. $ dpkg-source --commit
  17.  
  18. $ dpkg-buildpackage -uc -us
  19.  
  20. $ sudo dpkg -i ~/build.the.source/xyz.deb
Add Comment
Please, Sign In to add comment