Linux deb package decompression, modification and other operation methods code examples

Linux deb package decompression, modification and other operation methods code examples

For various reasons, sometimes you need to modify the contents of various files in the deb package directly

There are three main issues that need to be addressed:

0. How to unpack the deb package file?

1. Modify the file to be modified?

2. Generate a deb package for the modified content?

The unpacking command is

#Unzip the files in the package to the extract directory

lin@lin-host:~/Desktop/100 restart tools$ ls
LongTestTools.sh loong-test-s2s3_1.0.0-2_all.deb readme.txt
lin@lin-host:~/Desktop/100 times restart tool$ dpkg -X loong-test-s2s3_1.0.0-2_all.deb extract/
./
./usr/
./usr/bin/
./usr/bin/BootReplace.sh
./usr/bin/BootTest.sh
./usr/bin/LongTestTools.sh
./usr/bin/RebootReplace.sh
./usr/bin/RebootTest.sh
./usr/bin/SleepTest.sh
./usr/bin/SuspendTest.sh
lin@lin-host:~/Desktop/100 restart tools$ ls
extract LongTestTools.sh loong-test-s2s3_1.0.0-2_all.deb readme.txt
lin@lin-host:~/Desktop/100 restart tools$ tree extract/
extract/
└── usr
  └── bin
    ├── BootReplace.sh
    ├── BootTest.sh
    ├── LongTestTools.sh
    ├── RebootReplace.sh
    ├── RebootTest.sh
    ├── SleepTest.sh
    └── SuspendTest.sh

# Extract the control information of the package extract/DEBIAN/:

lin@lin-host:~/Desktop/100 times restart tool$ dpkg -e loong-test-s2s3_1.0.0-2_all.deb extract/DEBIAN/ 
lin@lin-host:~/Desktop/100 restart tools$ tree extract/
extract/
├── DEBIAN
│ ├── control
│ └── md5sums
└── usr
  └── bin
    ├── BootReplace.sh
    ├── BootTest.sh
    ├── LongTestTools.sh
    ├── RebootReplace.sh
    ├── RebootTest.sh
    ├── SleepTest.sh
    └── SuspendTest.sh

3 directories, 9 files

#Modify the file

vi extract/usr/bin/BootTest.sh

Repackage the modified content to generate a deb package

lin@lin-host:~/Desktop/100 restart tool$ dpkg-deb -b extract/ 
dpkg-deb: Creating new software package loong-test-s2s3, package file is extract.deb.
lin@lin-host:~/Desktop/100 restart tools$ ls
extract extract.deb LongTestTools.sh readme.txt

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • IntelliJ IDEA remote debugging Linux Java program, find the problem do not just look at the log (recommended)
  • How to check whether .so and executable files are debug compiled in Linux (must read)
  • Detailed explanation of how to install software tar.gz, rpm, deb under Linux
  • Debian configuration JDK1.7 and Linux Java Helloworld
  • Tutorial on compiling and installing the ixgbe driver in Debian Linux
  • How to check if a package is installed in Debian Linux
  • Detailed installation and configuration of Xdebug, a PHP code debugging tool in Windows and Linux
  • Comparison of Linux server systems CentOS, uBuntu, Gentoo, FreeBSD, and Debian
  • Linux VPS Security Settings 1: Modify SSH Port (CentOS/Debian)

<<:  The whole process of configuring hive metadata to MySQL

>>:  Problems and solutions of error 08001 when linking to MySQL in IDEA and no table display after successful connection

Recommend

A brief analysis of JS original value and reference value issues

Primitive values ​​-> primitive types Number S...

Detailed explanation of the lock structure in MySQL

Mysql supports 3 types of lock structures Table-l...

Summary of various methods of implementing article dividing line styles with CSS

This article summarizes various ways to implement...

AsyncHooks asynchronous life cycle in Node8

Async Hooks is a new feature of Node8. It provide...

Detailed explanation of MySql automatic truncation example

Detailed explanation of MySql automatic truncatio...

In-depth explanation of environment variables and configuration files in CentOS

Preface The CentOS environment variable configura...

Solution to win10 without Hyper-V

Are you still looking for a way to enable Hyper-v...

How to manually upgrade the node version under CentOs

1. Find the corresponding nodejs package, refer t...

Things You Don’t Know About the CSS ::before and ::after Pseudo-Elements

CSS has two pseudo-classes that are not commonly ...

A detailed introduction to the CSS naming specification BEM from QQtabBar

BEM from QQtabBar First of all, what does BEM mea...

Summary of basic knowledge points of MySql database

Table of contents Basic database operations 2) Vi...

How to use the concat function in mysql

As shown below: //Query the year and month of the...

HTML sample code for implementing tab switching

Tab switching is also a common technology in proj...