GP3 FTPFS (en): Unterschied zwischen den Versionen

Aus Gemini-Wiki
Zur Navigation springen Zur Suche springen
 
(3 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt)
Zeile 7: Zeile 7:
 
__TOC__
 
__TOC__
 
== Installation / Deinstallation ==
 
== Installation / Deinstallation ==
Das <code>geminiftpfs</code> Plugin könnt ihr auf folgende Arten installieren / deinstallieren:
+
The <code>geminiftpfs</code> plugin can be installed / removed in different ways:
{{Hauptbeitrag|GP3 Addons| - Kategorie: Gemini Plugins}}
+
{{Hauptbeitrag (en)|GP3 Addons (en){{!}}GP3 Addons| - Category: Gemini Plugins}}
{{Hauptbeitrag|WebAdmin| - Paketname: <code>geminiftpfs</code>}}
+
{{Hauptbeitrag (en)|WebAdmin (en){{!}}WebAdmin| - Package name: <code>geminiftpfs</code>}}
{{Hauptbeitrag|OPKG| - Paketname: <code>geminiftpfs</code>}}
+
{{Hauptbeitrag (en)|OPKG (en){{!}}OPKG| - Package name: <code>geminiftpfs</code>}}
Führt nach der Installationen einen Neustart von [[Enigma2]] aus, oder startet die Dreambox neu.
+
Restart [[Enigma2 (en)|Enigma2]] after the installation, or reboot the Dreambox.
  
== Bedienung ==
+
== Usage ==
Benutzt die Beschreibung der folgenden Tabelle, um den FTP Server einzubinden. Entsprechende Statusanzeigen über die Verbindung werden im Plugin angezeigt.
+
Use the description in the overview below to mount the FTP server. In the plugin the status of the connection is displayed.
  
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
! width="180"|Eingabe
+
! width="180"|Setting
! width="780"|Beschreibung
+
! width="780"|Description
 
|-  
 
|-  
| Einschalten / Ausschalten:
+
| Enable / Disable:
| Mit der Einstellung, kann der Zugriff auf den FTP Server ein- oder ausgeschaltet werden.
+
| setting to enable or disable the mount.
 
|-  
 
|-  
| Mountpunkt:
+
| Mount path:
| Gewünschten Mountpunkt eingben, unter welchem der FTP Server verfügbar ist (Standardmässig <code>/media/ftpfs</code>).
+
| Enter the desired path to mount the FTP server (default: <code>/media/ftpfs</code>).
 
|-  
 
|-  
 
| Server:
 
| Server:
| IP-Adresse des FTP Servers eingeben.
+
| Enter the IP address of the FTP servers.
 
|-  
 
|-  
| Nutzer:
+
| User:
| FTP Benutzernamen eingeben.
+
| Enter the FTP user name.
 
|-  
 
|-  
| Passwort
+
| Password
| Passwort des FTP Benutzers eingeben.
+
| Enter the password of the FTP user.
 
|-  
 
|-  
| {{green|grüne}} Taste Speichern
+
| {{green|green}} Save button
| Änderungen an der Verbindung muss immer mit der {{green|grünen}} Taste bestätigt werden.
+
| Changes in the settings should always be confirmed with the {{green|green}} button.
 
|-  
 
|-  
| {{red|rote}} Taste EXIT
+
| {{red|red}} Button EXIT
| Beendet das Plugin.
+
| Close the plugin.
 
|}
 
|}
  
== Konfigurationsdatei ==
+
== Config file ==
Die Zugriffdaten, können auch über die entsprechende Konfigurationsdatei eingegeben werden unter <code>/etc/init.d/ftpfs.sh</code>. Am Anfang der Datei können die Daten, nach folgendem Beispiel eingegeben werden. Mittels der Einstellung <code>FTPFS_ON</code> oder <code>FTPFS_OFF</code> könnt ihr den Zugriff auf den FTP Server ein- oder ausschalten.
+
The user settings can also be entered in the config file <code>/etc/init.d/ftpfs.sh</code>. First enter the settings as in the example below. The parameter <code>FTPFS_ON</code> or <code>FTPFS_OFF</code> can be used to enable or disable the mount.
  
 
<syntaxhighlight lang="bash" highlight="2,3,4,5,6">
 
<syntaxhighlight lang="bash" highlight="2,3,4,5,6">
 
#!/bin/sh
 
#!/bin/sh
 
FTPFS_ON=0
 
FTPFS_ON=0
FTPFS_USER=FTP_Benutzername
+
FTPFS_USER=FTP_username
FTPFS_PASS=Passwort
+
FTPFS_PASS=Password
 
FTPFS_MP='/media/ftpfs'
 
FTPFS_MP='/media/ftpfs'
FTPFS_SERVER='IP des Servers eintragen'
+
FTPFS_SERVER='Enter IP of server'
  
 
DAEMON=/usr/bin/curlftpfs
 
DAEMON=/usr/bin/curlftpfs

Aktuelle Version vom 19. Februar 2014, 23:18 Uhr

Deutsch.png - in Deutsch English.png - in English
FTP Mount

With the geminiftpfs plugin, it's possible to mount a FTP server as a virtual file system (curlftpfs), based on the FTP protocol.

Installation / Deinstallation

The geminiftpfs plugin can be installed / removed in different ways:

Hauptbeitrag.png see article: GP3 Addons - Category: Gemini Plugins
Hauptbeitrag.png see article: WebAdmin - Package name: geminiftpfs
Hauptbeitrag.png see article: OPKG - Package name: geminiftpfs

Restart Enigma2 after the installation, or reboot the Dreambox.

Usage

Use the description in the overview below to mount the FTP server. In the plugin the status of the connection is displayed.

Setting Description
Enable / Disable: setting to enable or disable the mount.
Mount path: Enter the desired path to mount the FTP server (default: /media/ftpfs).
Server: Enter the IP address of the FTP servers.
User: Enter the FTP user name.
Password Enter the password of the FTP user.
green Save button Changes in the settings should always be confirmed with the green button.
red Button EXIT Close the plugin.

Config file

The user settings can also be entered in the config file /etc/init.d/ftpfs.sh. First enter the settings as in the example below. The parameter FTPFS_ON or FTPFS_OFF can be used to enable or disable the mount.

#!/bin/sh
FTPFS_ON=0FTPFS_USER=FTP_usernameFTPFS_PASS=PasswordFTPFS_MP='/media/ftpfs'FTPFS_SERVER='Enter IP of server' 
DAEMON=/usr/bin/curlftpfs
NAME=curlftpfs
.
.