IPKG (en): Unterschied zwischen den Versionen

Aus Gemini-Wiki
Zur Navigation springen Zur Suche springen
Zeile 32: Zeile 32:
 
root@dm7025:~>
 
root@dm7025:~>
 
</syntaxhighlight>
 
</syntaxhighlight>
[[Kategorie:Basics (en)]]
+
[[Kategorie:Instructions (en)]]
 
[[Kategorie:Enigma2 (en)]]
 
[[Kategorie:Enigma2 (en)]]

Version vom 16. Juni 2013, 12:35 Uhr

Deutsch.png - in Deutsch English.png - in English

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.

Installing

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.

Removing

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:~>