|
Home
Black&White
Fotogramme
Infrarot
Kategorien
Lightbox
Lochkamera
Portrait
Advanced
___________
Service:
EDV-Manuals Belichtungszeitentabelle
Schrauben u. Gewinde
Einführung in die:
Beurteilung v. Negativen
Farbmischung
Filmentwicklung
Infrarotfotografie
Blitzlichtfotographie
Entwicklungszeiten:
Agfa Rodinal
Kodak D76
Tiefenschärferechner:
Komplex
Einfach
Fotolabor
Kontakt / Impressum
______
Zähler:
Bilder pro Gast
Zugriffszähler
myPHPadmin
B4YCounter
Login
Logout
Files
Alle Bilder als Link
|
Einen ProFTPD 1.3.1 Server auf SuSE 10.0
installieren und konfigurieren
|
Bildcounter auf Coppermine erste
Herstellerhomepage:
http://proftpd.de/
Das passende RPM für die SuSE 10.0 Version organisieren:
http://download.opensuse.org/repositories/server:/ftp/
Das RPM File installieren:
rpm -i
proftpd-1.3.1-6.1.i586.rpm
Konfigurationsdatei /etc/proftpd/proftpd.conf editieren, hier am Beispiel
meines Rechners:
ServerName www.380volt.dyndns.info
ServerType inetd
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
#Give a default access permission for your files of 666 (rw-rw-rw-) and for your
directories of 777 (rwxrwxrwx).
Umask 000
# Set the user and group under which the server will run.
User www
Group users
# Deny root to login
RootLogin off
# To cause every FTP user to be "jailed" (chrooted) into their home directory,
uncomment this line.
DefaultRoot /www
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Default Directory
DefaultChdir /www/www.380volt.com
# Shows Servername dureing the login
ServerIdent on
# Path to the logfiles
TransferLog /var/log/messages
SystemLog /var/log/messages
# Some things to make the login faster
UseReverseDNS off
IdentLookups off
Proftpd Deamon restarten (zum einlesen einer neuen proftpd.conf):
Wenn die Konfiguration so nicht übernommen wird, dann Rechner rebooten.
rcproftpd stop
rcproftpd start
Auf Server über Netz verbinden:
ftp://[user[:password]@]host[:port]/path[/]
ftp://www:password@www.380volt.dyndns.info:21
Lokal auf Server verbinden:
www:~ # ftp
ftp> open localhost
Trying 127.0.0.1...
Connected to localhost.
220 ProFTPD 1.3.1 Server (www.380volt.dyndns.info) [127.0.0.1]
Name (localhost:root): www
331 Password required for www
Password:
230 User www logged in
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>by
Konfiguration der
proftpd.conf
auslesen:
www:/etc/proftpd #
proftpd -td5
Netzwerkdaten für einen bestimmten Dienst auslesen:
Netstat -lnp |grep proftpd
Zeilen aus proftpd.conf auslesen die NICHT mit # beginnen:
cat /etc/proftpd/proftpd.conf |grep -v ^#
Zeilen aus proftpd.conf auslesen die NICHT mit # beginnen und Freizeilen in
der Ausgabe entfernen:
cat /etc/proftpd/proftpd.conf |grep -v ^#|grep
[alnum]
© J.Schilling 12.01.2008
| |