extracting and creating ipk files

后端 未结 5 802
野的像风
野的像风 2021-02-01 17:10

ipk packages are the intallation packages used by opkg.

I\'m trying to extract the contents of one of them and also create my own ipk.

I\'ve read that I should b

5条回答
  •  别那么骄傲
    2021-02-01 17:36

    Extracting with these commands:

    1. Extract the file by running the command:

        ar -xv   <.ipk file>
      
    2. Extract the control.tar.gz file by running the command:

        tar -zxvf control.tar.gz
      
    3. data.tar.gz : untar by running the command:

           tar –zxvf data.tar.gz
      

提交回复
热议问题