Apparemment probleme plymouth au démarrage

zatox Membre non connecté
-
- Voir le profil du membre zatox
- Inscrit le : 27/09/2011
- Groupes :
Reprise du message précédent
Bonjour, merci pour ta réponse Yann, pour le moment je pense que je vais rester avec mes partitions / swap /usr /var et /home car j'ai commencé à ré-installer pas mal de choses. Actuellement je bloque sur un trus qui marchait auparavant à savoir de créer sur mon ordi de bureau un serveur ftp afin que je puisse télécharger certains fichiers sur mon PC portable.Cient PC potable avec ftp filezilla
seveur PC de bureau avec proftpd monté et actif
Pour le moment je n'arrive pas à me connecter depuis le PC portable sur mon PC de bureau "impossible d'établir une connexion au serveur"
Voici le contenu du fichier /etc/proftpd.conf
Caché :
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd.d/*.conf
# This is the directory where DSO modules resides
ModulePath /usr/lib/proftpd
# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
ServerName "ProFTPD Default Installation"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter *.*/
UseIPv6 Off
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts 49152 65534
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off
TransferLog /var/log/proftpd/proftpd.log
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd.d/*.conf
# This is the directory where DSO modules resides
ModulePath /usr/lib/proftpd
# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
ServerName "ProFTPD Default Installation"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter *.*/
UseIPv6 Off
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts 49152 65534
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off
TransferLog /var/log/proftpd/proftpd.log
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
Et voici ce que donne la commande:
/etc/proftpd.conf reload
Caché :
/etc/proftpd.conf reload
/etc/proftpd.conf: ligne7: Include : commande introuvable
/etc/proftpd.conf: ligne11: ModulePath : commande introuvable
/etc/proftpd.conf: ligne16: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne17: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne19: ServerName : commande introuvable
/etc/proftpd.conf: ligne20: ServerType : commande introuvable
/etc/proftpd.conf: ligne21: DeferWelcome : commande introuvable
/etc/proftpd.conf: ligne23: MultilineRFC2228 : commande introuvable
/etc/proftpd.conf: ligne24: DefaultServer : commande introuvable
/etc/proftpd.conf: ligne25: ShowSymlinks : commande introuvable
/etc/proftpd.conf: ligne27: TimeoutNoTransfer : commande introuvable
/etc/proftpd.conf: ligne28: TimeoutStalled : commande introuvable
/etc/proftpd.conf: ligne29: TimeoutIdle : commande introuvable
/etc/proftpd.conf: ligne31: DisplayLogin : commande introuvable
/etc/proftpd.conf: ligne32: DisplayChdir : commande introuvable
/etc/proftpd.conf: ligne33: ListOptions : commande introuvable
/etc/proftpd.conf: ligne34: DenyFilter : commande introuvable
/etc/proftpd.conf: ligne35: UseIPv6 : commande introuvable
/etc/proftpd.conf: ligne39: AllowStoreRestart : commande introuvable
/etc/proftpd.conf: ligne42: Port : commande introuvable
/etc/proftpd.conf: ligne55: MaxInstances : commande introuvable
/etc/proftpd.conf: ligne58: User : commande introuvable
/etc/proftpd.conf: ligne59: Group : commande introuvable
/etc/proftpd.conf: ligne63: Umask : commande introuvable
/etc/proftpd.conf: ligne70: AllowOverwrite : commande introuvable
/etc/proftpd.conf: ligne73: PersistentPasswd : commande introuvable
/etc/proftpd.conf: ligne81: TransferLog : commande introuvable
/etc/proftpd.conf: ligne82: SystemLog : commande introuvable
/etc/proftpd.conf: ligne84: Erreur de syntaxe près du symbole inattendu « newline »
/etc/proftpd.conf: ligne84: `<IfModule mod_tls.c>'
/etc/proftpd.conf: ligne7: Include : commande introuvable
/etc/proftpd.conf: ligne11: ModulePath : commande introuvable
/etc/proftpd.conf: ligne16: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne17: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne19: ServerName : commande introuvable
/etc/proftpd.conf: ligne20: ServerType : commande introuvable
/etc/proftpd.conf: ligne21: DeferWelcome : commande introuvable
/etc/proftpd.conf: ligne23: MultilineRFC2228 : commande introuvable
/etc/proftpd.conf: ligne24: DefaultServer : commande introuvable
/etc/proftpd.conf: ligne25: ShowSymlinks : commande introuvable
/etc/proftpd.conf: ligne27: TimeoutNoTransfer : commande introuvable
/etc/proftpd.conf: ligne28: TimeoutStalled : commande introuvable
/etc/proftpd.conf: ligne29: TimeoutIdle : commande introuvable
/etc/proftpd.conf: ligne31: DisplayLogin : commande introuvable
/etc/proftpd.conf: ligne32: DisplayChdir : commande introuvable
/etc/proftpd.conf: ligne33: ListOptions : commande introuvable
/etc/proftpd.conf: ligne34: DenyFilter : commande introuvable
/etc/proftpd.conf: ligne35: UseIPv6 : commande introuvable
/etc/proftpd.conf: ligne39: AllowStoreRestart : commande introuvable
/etc/proftpd.conf: ligne42: Port : commande introuvable
/etc/proftpd.conf: ligne55: MaxInstances : commande introuvable
/etc/proftpd.conf: ligne58: User : commande introuvable
/etc/proftpd.conf: ligne59: Group : commande introuvable
/etc/proftpd.conf: ligne63: Umask : commande introuvable
/etc/proftpd.conf: ligne70: AllowOverwrite : commande introuvable
/etc/proftpd.conf: ligne73: PersistentPasswd : commande introuvable
/etc/proftpd.conf: ligne81: TransferLog : commande introuvable
/etc/proftpd.conf: ligne82: SystemLog : commande introuvable
/etc/proftpd.conf: ligne84: Erreur de syntaxe près du symbole inattendu « newline »
/etc/proftpd.conf: ligne84: `<IfModule mod_tls.c>'
Si quelqu'un a une idée, merci pour vos réponses, je peux créer un autre fil si nécéssaire.
Carte mère Gigabyte B650 AORUS ELITE AX V1.0 WiFi
Processeur AMD® 8 coeurs RYZEN 7 - 7700X (sans ventirad)
(2) Mémoire de 16 Go DDR5 @ 5600 MHz CL46 Crucial PRO
Carte video RX 7700 XT PULSE, SAPPHIRE®, 12 Go DDR6x
Disque SSD 2 To Gen.4 NVMe Samsung M.2 990 PRO
Carte réseau AMD® M.2 WI-FI 6E RZ616
Processeur AMD® 8 coeurs RYZEN 7 - 7700X (sans ventirad)
(2) Mémoire de 16 Go DDR5 @ 5600 MHz CL46 Crucial PRO
Carte video RX 7700 XT PULSE, SAPPHIRE®, 12 Go DDR6x
Disque SSD 2 To Gen.4 NVMe Samsung M.2 990 PRO
Carte réseau AMD® M.2 WI-FI 6E RZ616

Visiteur
Visiteur
zatox :
Bonjour, merci pour ta réponse Yann, pour le moment je pense que je vais rester avec mes partitions / swap /usr /var et /home car j'ai commencé à ré-installer pas mal de choses. Actuellement je bloque sur un trus qui marchait auparavant à savoir de créer sur mon ordi de bureau un serveur ftp afin que je puisse télécharger certains fichiers sur mon PC portable.
Cient PC potable avec ftp filezilla
seveur PC de bureau avec proftpd monté et actif
Pour le moment je n'arrive pas à me connecter depuis le PC portable sur mon PC de bureau "impossible d'établir une connexion au serveur"
Voici le contenu du fichier /etc/proftpd.conf
Et voici ce que donne la commande:
/etc/proftpd.conf reload
<span class="formatter-hide">Caché:</span><div class="hide" onclick="bb_hide(this)"><div class="hide2">/etc/proftpd.conf reload
/etc/proftpd.conf: ligne7: Include : commande introuvable
/etc/proftpd.conf: ligne11: ModulePath : commande introuvable
/etc/proftpd.conf: ligne16: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne17: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne19: ServerName : commande introuvable
/etc/proftpd.conf: ligne20: ServerType : commande introuvable
/etc/proftpd.conf: ligne21: DeferWelcome : commande introuvable
/etc/proftpd.conf: ligne23: MultilineRFC2228 : commande introuvable
/etc/proftpd.conf: ligne24: DefaultServer : commande introuvable
/etc/proftpd.conf: ligne25: ShowSymlinks : commande introuvable
/etc/proftpd.conf: ligne27: TimeoutNoTransfer : commande introuvable
/etc/proftpd.conf: ligne28: TimeoutStalled : commande introuvable
/etc/proftpd.conf: ligne29: TimeoutIdle : commande introuvable
/etc/proftpd.conf: ligne31: DisplayLogin : commande introuvable
/etc/proftpd.conf: ligne32: DisplayChdir : commande introuvable
/etc/proftpd.conf: ligne33: ListOptions : commande introuvable
/etc/proftpd.conf: ligne34: DenyFilter : commande introuvable
/etc/proftpd.conf: ligne35: UseIPv6 : commande introuvable
/etc/proftpd.conf: ligne39: AllowStoreRestart : commande introuvable
/etc/proftpd.conf: ligne42: Port : commande introuvable
/etc/proftpd.conf: ligne55: MaxInstances : commande introuvable
/etc/proftpd.conf: ligne58: User : commande introuvable
/etc/proftpd.conf: ligne59: Group : commande introuvable
/etc/proftpd.conf: ligne63: Umask : commande introuvable
/etc/proftpd.conf: ligne70: AllowOverwrite : commande introuvable
/etc/proftpd.conf: ligne73: PersistentPasswd : commande introuvable
/etc/proftpd.conf: ligne81: TransferLog : commande introuvable
/etc/proftpd.conf: ligne82: SystemLog : commande introuvable
/etc/proftpd.conf: ligne84: Erreur de syntaxe près du symbole inattendu « newline »
/etc/proftpd.conf: ligne84: `<IfModule mod_tls.c>'
Cient PC potable avec ftp filezilla
seveur PC de bureau avec proftpd monté et actif
Pour le moment je n'arrive pas à me connecter depuis le PC portable sur mon PC de bureau "impossible d'établir une connexion au serveur"
Voici le contenu du fichier /etc/proftpd.conf
Caché :
</div>#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd.d/*.conf
# This is the directory where DSO modules resides
ModulePath /usr/lib/proftpd
# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
ServerName "ProFTPD Default Installation"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter *.*/
UseIPv6 Off
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts 49152 65534
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off
TransferLog /var/log/proftpd/proftpd.log
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd.d/*.conf
# This is the directory where DSO modules resides
ModulePath /usr/lib/proftpd
# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
ServerName "ProFTPD Default Installation"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter *.*/
UseIPv6 Off
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts 49152 65534
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off
TransferLog /var/log/proftpd/proftpd.log
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
Et voici ce que donne la commande:
/etc/proftpd.conf reload
<span class="formatter-hide">Caché:</span><div class="hide" onclick="bb_hide(this)"><div class="hide2">/etc/proftpd.conf reload
/etc/proftpd.conf: ligne7: Include : commande introuvable
/etc/proftpd.conf: ligne11: ModulePath : commande introuvable
/etc/proftpd.conf: ligne16: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne17: ModuleControlsACLs : commande introuvable
/etc/proftpd.conf: ligne19: ServerName : commande introuvable
/etc/proftpd.conf: ligne20: ServerType : commande introuvable
/etc/proftpd.conf: ligne21: DeferWelcome : commande introuvable
/etc/proftpd.conf: ligne23: MultilineRFC2228 : commande introuvable
/etc/proftpd.conf: ligne24: DefaultServer : commande introuvable
/etc/proftpd.conf: ligne25: ShowSymlinks : commande introuvable
/etc/proftpd.conf: ligne27: TimeoutNoTransfer : commande introuvable
/etc/proftpd.conf: ligne28: TimeoutStalled : commande introuvable
/etc/proftpd.conf: ligne29: TimeoutIdle : commande introuvable
/etc/proftpd.conf: ligne31: DisplayLogin : commande introuvable
/etc/proftpd.conf: ligne32: DisplayChdir : commande introuvable
/etc/proftpd.conf: ligne33: ListOptions : commande introuvable
/etc/proftpd.conf: ligne34: DenyFilter : commande introuvable
/etc/proftpd.conf: ligne35: UseIPv6 : commande introuvable
/etc/proftpd.conf: ligne39: AllowStoreRestart : commande introuvable
/etc/proftpd.conf: ligne42: Port : commande introuvable
/etc/proftpd.conf: ligne55: MaxInstances : commande introuvable
/etc/proftpd.conf: ligne58: User : commande introuvable
/etc/proftpd.conf: ligne59: Group : commande introuvable
/etc/proftpd.conf: ligne63: Umask : commande introuvable
/etc/proftpd.conf: ligne70: AllowOverwrite : commande introuvable
/etc/proftpd.conf: ligne73: PersistentPasswd : commande introuvable
/etc/proftpd.conf: ligne81: TransferLog : commande introuvable
/etc/proftpd.conf: ligne82: SystemLog : commande introuvable
/etc/proftpd.conf: ligne84: Erreur de syntaxe près du symbole inattendu « newline »
/etc/proftpd.conf: ligne84: `<IfModule mod_tls.c>'
Si quelqu'un a une idée, merci pour vos réponses, je peux créer un autre fil si nécéssaire.</div>
en console root
Code BASH :
/etc/rc.d/init.d/proftpd restart /etc/rc.d/init.d/proftpd status
ca te renvoie quoi ?
as-tu bien ouvert le port 21 dans shorewall?
sinon tu as gadmin-proftpd qui est bien pour configurer proftpd (non-present dans depots mageia)
gadmin-proftpd-0.4.2-1.mga3.x86_64.rpm
gadmin-proftpd-0.4.2-1.mga3.src.rpm
proftpd.conf avec configuration simple ftp anonyme en lecture seule repertoire par defaut "/var/ftp"
Caché :
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd.d/*.conf
# This is the directory where DSO modules resides
ModulePath /usr/lib64/proftpd
# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
ServerName "Mon serveur ProFTPD"
ServerType standalone
DeferWelcome on
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter *.*/
UseIPv6 Off
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts 49152 65534
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off
TransferLog /var/log/proftpd/xferlog
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
ServerAdmin monmail@mail.fr
RootLogin off
AllowForeignAddress on
AllowRetrieveRestart on
DefaultRoot ~
DirFakeUser off nobody
LogFormat auth "%v [%P] %h %t "%r" %s"
Extendedlog /var/log/proftpd/ftp.log
UseReverseDNS off
LogFormat default "%h %l %u %t "%r" %s %b"
DisplayConnect /etc/banner-proftpd
DirFakeGroup off nobody
DeleteAbortedStores off
IdentLookups off
TimesGMT off
AccessGrantMsg " -- Guest access granted for %u --"
ServerIdent off
LogFormat write "%h %l %u %t "%r" %s %b"
AccessDenyMsg " !-!! ACCESS DENY !!-! SEEMS YOU HAVE NO RIGHT THERE !!"
<Anonymous ~ftp>
# Allow logins if they are disabled above.
<Limit LOGIN>
AllowAll
</Limit>
# Maximum clients with message
MaxClients 5 "Sorry, max %m users -- try again later"
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
RequireValidShell off
# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>
</Anonymous>
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd.d/*.conf
# This is the directory where DSO modules resides
ModulePath /usr/lib64/proftpd
# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded
ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *
ServerName "Mon serveur ProFTPD"
ServerType standalone
DeferWelcome on
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message
ListOptions "-l"
DenyFilter *.*/
UseIPv6 Off
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
#PassivePorts 49152 65534
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
PersistentPasswd off
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
#UseSendFile off
TransferLog /var/log/proftpd/xferlog
SystemLog /var/log/proftpd/proftpd.log
<IfModule mod_tls.c>
TLSEngine off
</IfModule>
<IfModule mod_quota.c>
QuotaEngine on
</IfModule>
<IfModule mod_ratio.c>
Ratios on
</IfModule>
# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>
<IfModule mod_ctrls.c>
ControlsEngine on
ControlsMaxClients 2
ControlsLog /var/log/proftpd/controls.log
ControlsInterval 5
ControlsSocket /var/run/proftpd/proftpd.sock
</IfModule>
<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
DenyAll
</Limit>
ServerAdmin monmail@mail.fr
RootLogin off
AllowForeignAddress on
AllowRetrieveRestart on
DefaultRoot ~
DirFakeUser off nobody
LogFormat auth "%v [%P] %h %t "%r" %s"
Extendedlog /var/log/proftpd/ftp.log
UseReverseDNS off
LogFormat default "%h %l %u %t "%r" %s %b"
DisplayConnect /etc/banner-proftpd
DirFakeGroup off nobody
DeleteAbortedStores off
IdentLookups off
TimesGMT off
AccessGrantMsg " -- Guest access granted for %u --"
ServerIdent off
LogFormat write "%h %l %u %t "%r" %s %b"
AccessDenyMsg " !-!! ACCESS DENY !!-! SEEMS YOU HAVE NO RIGHT THERE !!"
<Anonymous ~ftp>
# Allow logins if they are disabled above.
<Limit LOGIN>
AllowAll
</Limit>
# Maximum clients with message
MaxClients 5 "Sorry, max %m users -- try again later"
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
RequireValidShell off
# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>
</Anonymous>
ce qui donne :
ftp://powerlinux.no-ip.org/
Édité par Visiteur Le 09/01/2014 à 14h03
Répondre
Vous n'êtes pas autorisé à écrire dans cette catégorie