IPKG (en)

Aus Gemini-Wiki
Version vom 7. Oktober 2012, 18:44 Uhr von TorbenHoffman (Diskussion | Beiträge) (Ipkg eng wurde nach Ipkg (en) verschoben)
Zur Navigation springen Zur Suche springen


iPKG is a very lightweight package management system. It was designed for Linux installations with severe storage limitations such as handheld computers. iPKG is more than just an embedded Linux flash image builder, (although it does that fairly well). It also allows for dynamic installation/removal of packages on a running system.

iPKG is itsy in several ways:

  • The control programs themselves are small,
  • The installed meta-data tries to be only what is absolutely essential,
  • The available packages are small. The idea is that the package tree should be as fine-grain as possible.

Packages have the extension .ipk. iPKG package format is based on Debian's package format .deb, with as result that it is easy to convert existing Debian packages to iPKG.

IPKG Installation

To install a IPKG-package follow the steps below:

  • Copy the package ( e.g. enigma2-plugin-movietagger_1.1-20061213- r0_mipsel.ipk) to the Dreambox into the directory /tmp with the help of FTP etc.
  • Login to the Dreambox's console with Telnet.
  • Use ipkg install /tmp/enigma2-plugin-movietagger_1.1-20061213-r0_mipsel.ipk to install the package. You should see something like:

root@dm7025:~> ipkg install /tmp/enigma2-plugin-movietagger_1.1-20061213-r0_mipsel.ipk

Installing enigma2-plugin-movietagger (1.1-20061213-r0) to root...

Configuring enigma2-plugin-movietagger

root@dm7025:~>

  • The package is now installed and can be used.

Remove IPKG

A IPKG-package can be removed using the package name (e.g. enigma2-plugins-movietagger).

root@dm7025:~> ipkg remove enigma2-plugin-movietagger

Removing package enigma2-plugin-movietagger from root...

root@dm7025:~>


Back to overview:Installation of extensions (plugins) or Mainpage