Advertisement
v1ral_ITS

Install a dsc package

Aug 18th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.54 KB | None | 0 0
  1.   #2
  2. mayankc
  3. LQ Newbie
  4.  
  5. Registered: Aug 2011
  6. Posts: 9
  7.  
  8. Rep: Reputation: Disabled
  9. 1. Install dpkg-dev package if not present in your linux machine(use sudo apt-get install dpkg-dev)
  10. 2. dpkg-source -x yourfile.dsc (this will create a directory and extract the package into it)
  11. 3. To build the package go to the directory that got created in 2nd step and issue below command
  12.  
  13. dpkg-buildpackage -rfakeroot -b
  14.  
  15. 4. to install the built package issue below command
  16.  
  17. dpkg -i ../yourfile_arch.deb
  18.  
  19. Above step should install the .dsc file.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement