Manual installation of a single (bin) file: Unterschied zwischen den Versionen

Aus Gemini-Wiki
Zur Navigation springen Zur Suche springen
 
 
(7 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
[[Kategorie:Index]]
+
{|width="40%"
[[Kategorie:Grundlagen]]  
+
|[[Bild:deutsch.png]] - [[ Manuelle Installation einer einzelnen (bin) Datei |auf Deutsch]]
[[Kategorie:Enigma1]]  
+
|[[Bild:english.png]] - [[Manual installation of a single (bin) file|in English]]
[[Kategorie:Enigma2]]  
+
|}
[[Kategorie:FAQ und Anleitungen]]
 
<div style="background-color: #eeeeee; padding: .4em; border-bottom:0px solid #cccccc;">[[Bild:Artikel_Hinweis.png|right|22px|Information]] '''How-to install a program'''</div>
 
 
 
 
 
 
To manually install/upgrade a file on the Dreambox you need to copy the file in question via FTP (etc..) to your Dreambox (note that programs are normally stored under ''/usr/bin'').  
 
To manually install/upgrade a file on the Dreambox you need to copy the file in question via FTP (etc..) to your Dreambox (note that programs are normally stored under ''/usr/bin'').  
 
After copying you need to make sure that the file has the correct permissions:
 
After copying you need to make sure that the file has the correct permissions:
 
* Login to your Dreambox via [[Telnet]]
 
* Login to your Dreambox via [[Telnet]]
 
* Change permission via chmod
 
* Change permission via chmod
 +
<syntaxhighlight>
 +
chmod 755 /usr/bin/unrar
 +
</syntaxhighlight>
 +
This examples shows how the program'''"unrar"''' in '''"/usr/bin"''' gets the correct executable permissions.
  
chmod 755 /usr/bin/mc
+
{{Hinweis|This instruction can also be used for scripts you want to execute on your dreambox.}}
  
This examples shows how the program'''"mc"''' in '''"/usr/bin"''' gets the correct executable permissions.
+
[[Kategorie:Instructions (en)]]

Aktuelle Version vom 23. September 2013, 20:06 Uhr

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

To manually install/upgrade a file on the Dreambox you need to copy the file in question via FTP (etc..) to your Dreambox (note that programs are normally stored under /usr/bin). After copying you need to make sure that the file has the correct permissions:

  • Login to your Dreambox via Telnet
  • Change permission via chmod
chmod 755 /usr/bin/unrar

This examples shows how the program"unrar" in "/usr/bin" gets the correct executable permissions.

Ambox notice.png This instruction can also be used for scripts you want to execute on your dreambox.