如何解压deb文件

 

转: https://swordinhand.iteye.com/blog/1706326
有两种方法 
第一种 
Bash代码  收藏代码
  1. dpkg -x xx.deb /tmp/oo  

第二种 
Bash代码  收藏代码
  1. ar -vx xx.deb  

这会解压出3个文件debian-binary,control.tar.gz,data.tar.gz 
然后再
Bash代码  收藏代码
  1. tar -xzvf data.tar.gz  
原文地址:https://www.cnblogs.com/carry00/p/10118671.html