ClamAV/unofficial-sigs: Unterschied zwischen den Versionen

Aus Foxwiki
Die Seite wurde neu angelegt: „Stellen Sie sicher, dass Sie das Paket nicht über apt installiert haben apt-get purge -y clamav-unofficial-sigs = Installieren = Führen Sie die folgenden B…“
 
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
= Installieren =
Stellen Sie sicher, dass Sie das Paket nicht über apt installiert haben  
Stellen Sie sicher, dass Sie das Paket nicht über apt installiert haben  
  apt-get purge -y clamav-unofficial-sigs
  # apt purge -y clamav-unofficial-sigs
= Installieren =
 
Führen Sie die folgenden Befehle in der Shell aus (Konsole / Terminal).  
Führen Sie die folgenden Befehle in der Shell aus (Konsole / Terminal).  
  mkdir -p /usr/local/sbin/
  # mkdir -p /usr/local/sbin/
  wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/clamav-unofficial-sigs.sh -O /usr/local/sbin/clamav-unofficial-sigs.sh && chmod 755 /usr/local/sbin/clamav-unofficial-sigs.sh
  # wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/clamav-unofficial-sigs.sh -O /usr/local/sbin/clamav-unofficial-sigs.sh && chmod 755 /usr/local/sbin/clamav-unofficial-sigs.sh
  mkdir -p /etc/clamav-unofficial-sigs/
  # mkdir -p /etc/clamav-unofficial-sigs/
  wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/master.conf -O /etc/clamav-unofficial-sigs/master.conf
  # wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/master.conf -O /etc/clamav-unofficial-sigs/master.conf
  wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/user.conf -O /etc/clamav-unofficial-sigs/user.conf
  # wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/user.conf -O /etc/clamav-unofficial-sigs/user.conf
 
* Wählen Sie Ihre Betriebssystemkonfiguration unter https://github.com/extremeshok/clamav-unofficial-sigs/tree/master/config/ aus.  
* Wählen Sie Ihre Betriebssystemkonfiguration unter https://github.com/extremeshok/clamav-unofficial-sigs/tree/master/config/ aus.  
* Ersetzen Sie os.debian9.conf durch Ihre erforderliche Konfiguration, ubuntu = os.ubuntu.conf, debian10 = os .debian.conf, debian9 = os.debian.conf, debian8 = os.debian8.conf, debian8-systemd = os.debian8.systemd.conf, debian7 = os.debian7.conf os_conf="os.debian.conf"
* Ersetzen Sie os.debian9.conf durch Ihre erforderliche Konfiguration, ubuntu = os.ubuntu.conf, debian10 = os .debian.conf, debian9 = os.debian.conf, debian8 = os.debian8.conf, debian8-systemd = os.debian8.systemd.conf, debian7 = os.debian7.conf os_conf="os.debian.conf"
  wget "https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/os/${os_conf}" -O /etc/clamav-unofficial-sigs/os.conf
  # wget "https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/os/${os_conf}" -O /etc/clamav-unofficial-sigs/os.conf
 
'''Optional'''
'''Optional'''
Konfigurieren Sie Ihren Benutzer config /etc/clamav-unofficial-sigs/user.conf  
Konfigurieren Sie Ihren Benutzer config /etc/clamav-unofficial-sigs/user.conf  


= LAUFEN SIE DEN SCRIPT EINMAL ALS WURZEL =
= Konfiguration =
Stellen Sie sicher, dass keine Fehler vorliegen.  
* Stellen Sie sicher, dass keine Fehler vorliegen.  
Beheben Sie fehlende Abhängigkeiten.  
* Beheben Sie fehlende Abhängigkeiten.  
Das Skript muss einmal als Superuser ausgeführt werden, um alle Berechtigungen festzulegen und die entsprechenden Verzeichnisse zu erstellen  
* Das Skript muss einmal als Superuser ausgeführt werden, um alle Berechtigungen festzulegen und die entsprechenden Verzeichnisse zu erstellen  
  /usr/local/sbin/clamav-unofficial-sigs.sh --force
  # /usr/local/sbin/clamav-unofficial-sigs.sh --force
 
Installieren Sie logrotate- und Man-Dateien  
Installieren Sie logrotate- und Man-Dateien  
  /usr/local/sbin/clamav-unofficial-sigs.sh --install-logrotate
  # /usr/local/sbin/clamav-unofficial-sigs.sh --install-logrotate
  /usr/local/sbin/clamav-unofficial-sigs.sh --install-man
  # /usr/local/sbin/clamav-unofficial-sigs.sh --install-man
 
Installieren Sie Systemd-Konfigurationen oder verwenden Sie cron  
Installieren Sie Systemd-Konfigurationen oder verwenden Sie cron  
== cron ==
== cron ==
  /usr/local/sbin/clamav-unofficial-sigs.sh --install-cron
  # /usr/local/sbin/clamav-unofficial-sigs.sh --install-cron
ODER  
ODER  
== systemd ==
== systemd ==
  mkdir -p /etc/systemd/system/
  # mkdir -p /etc/systemd/system/
  wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/systemd/clamav-unofficial-sigs.service -O /etc/systemd/system/clamav-unofficial-sigs.service
  # wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/systemd/clamav-unofficial-sigs.service -O /etc/systemd/system/clamav-unofficial-sigs.service
  wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/systemd/clamav-unofficial-sigs.timer -O /etc/systemd/system/clamav-unofficial-sigs.timer
  # wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/systemd/clamav-unofficial-sigs.timer -O /etc/systemd/system/clamav-unofficial-sigs.timer


  systemctl enable clamav-unofficial-sigs.service
  # systemctl enable clamav-unofficial-sigs.service
  systemctl enable clamav-unofficial-sigs.timer
  # systemctl enable clamav-unofficial-sigs.timer
  systemctl start clamav-unofficial-sigs.timer
  # systemctl start clamav-unofficial-sigs.timer


= Links =  
= Links =  

Version vom 18. April 2021, 11:51 Uhr

Installieren

Stellen Sie sicher, dass Sie das Paket nicht über apt installiert haben

# apt purge -y clamav-unofficial-sigs

Führen Sie die folgenden Befehle in der Shell aus (Konsole / Terminal).

# mkdir -p /usr/local/sbin/
# wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/clamav-unofficial-sigs.sh -O /usr/local/sbin/clamav-unofficial-sigs.sh && chmod 755 /usr/local/sbin/clamav-unofficial-sigs.sh
# mkdir -p /etc/clamav-unofficial-sigs/
# wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/master.conf -O /etc/clamav-unofficial-sigs/master.conf
# wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/user.conf -O /etc/clamav-unofficial-sigs/user.conf
  • Wählen Sie Ihre Betriebssystemkonfiguration unter https://github.com/extremeshok/clamav-unofficial-sigs/tree/master/config/ aus.
  • Ersetzen Sie os.debian9.conf durch Ihre erforderliche Konfiguration, ubuntu = os.ubuntu.conf, debian10 = os .debian.conf, debian9 = os.debian.conf, debian8 = os.debian8.conf, debian8-systemd = os.debian8.systemd.conf, debian7 = os.debian7.conf os_conf="os.debian.conf"
# wget "https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/config/os/${os_conf}" -O /etc/clamav-unofficial-sigs/os.conf

Optional Konfigurieren Sie Ihren Benutzer config /etc/clamav-unofficial-sigs/user.conf

Konfiguration

  • Stellen Sie sicher, dass keine Fehler vorliegen.
  • Beheben Sie fehlende Abhängigkeiten.
  • Das Skript muss einmal als Superuser ausgeführt werden, um alle Berechtigungen festzulegen und die entsprechenden Verzeichnisse zu erstellen
# /usr/local/sbin/clamav-unofficial-sigs.sh --force

Installieren Sie logrotate- und Man-Dateien

# /usr/local/sbin/clamav-unofficial-sigs.sh --install-logrotate
# /usr/local/sbin/clamav-unofficial-sigs.sh --install-man

Installieren Sie Systemd-Konfigurationen oder verwenden Sie cron

cron

# /usr/local/sbin/clamav-unofficial-sigs.sh --install-cron

ODER

systemd

# mkdir -p /etc/systemd/system/
# wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/systemd/clamav-unofficial-sigs.service -O /etc/systemd/system/clamav-unofficial-sigs.service
# wget https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/master/systemd/clamav-unofficial-sigs.timer -O /etc/systemd/system/clamav-unofficial-sigs.timer
# systemctl enable clamav-unofficial-sigs.service
# systemctl enable clamav-unofficial-sigs.timer
# systemctl start clamav-unofficial-sigs.timer

Links

Interne Links

TODO

Weblinks

TODO