Skocz do zawartości

zaba141

Administrators
  • Postów

    21
  • Dołączył

  • Ostatnia wizyta

Osiągnięcia zaba141

Apprentice

Apprentice (3/14)

  • One Month Later
  • First Post
  • Collaborator
  • Week One Done
  • Superstar

Najnowsze odznaki

0

Reputacja

  1. OMV Custom Wersja 8.0.2 Zobacz plik More Update Add Plex Plugin to default installation OMV (must install manually PlexMediaServer on docker or Native) Rebuild Service Ssh, smb , Reports, itp Rebuild Style css More New Functions Dodający zaba141 Dodano 24.04.2025 Kategoria OpenMediaVault  
  2. Wersja 8.0.2

    0 pobrań

    More Update Add Plex Plugin to default installation OMV (must install manually PlexMediaServer on docker or Native) Rebuild Service Ssh, smb , Reports, itp Rebuild Style css More New Functions
  3. Pierwsze screeny z pluginu plexa
  4. Oczywiście, zainstaluj dysk o pojemnosci np. 120gb ssd/hdd na nim Instalujesz system, Uprzednio wgrany na np pendrive https://sourceforge.net/projects/openmediavault/files/iso/7.4.17/openmediavault_7.4.17-amd64.iso , dysk ssd/hdd bezie potrzebny tylko na system a wszystkie inne dyski co będziesz miał posłużą na twoje pliki. Instalacja jest bardzo prosta to ejst gotowy obraz z zainstalowanym omv na systemie Debian. Ja u siebie posiadam Dell 7020 sff i chodzi bardzo dobrze 🙂
  5. Przedstawiam wam przebudowane podstrony w Menu Diagnostyka -> Processy oraz Diagnostyka -> Service -> SSH
  6. OMV Custom Wersja 8.0.1 Zobacz plik Aktualizacja Dodane poprawki Zaaktualizowany angular Zmieniono System Informacje Poprawiono CheckInactive Dodający zaba141 Dodano 01.04.2025 Kategoria OpenMediaVault  
  7. Wersja 8.0.1

    0 pobrań

    Aktualizacja Dodane poprawki Zaaktualizowany angular Zmieniono System Informacje Poprawiono CheckInactive
  8. Github Link: https://github.com/omv-custom/openmediavault-dnshost
  9. Dodaj Dodatkowy Monitor usługi do katalogu /usr/share/openmediavault/engined/module/servicename.inc Przykład 1: <?php class OMVModuleSERVICENAME extends \OMV\Engine\Module\ServiceAbstract implements \OMV\Engine\Module\IServiceStatus { public function getName() { return "SERVICENAME"; } public function getStatus() { $systemCtl = new \OMV\System\SystemCtl("SERVICENAME"); return array( "name" => $this->getName(), "title" => gettext("SERVICENAME"), "enabled" => $systemCtl->isEnabled() "running" => $systemCtl->isActive() ); } } Przykład 2 (MariaDB): <?php /* * After copying the file to /usr/share/openmediavault/engined/module run * > monit restart omv-engined * > omv-mkworkbench all * on the shell */ class OMVModuleMariaDB extends \OMV\Engine\Module\ServiceAbstract implements \OMV\Engine\Module\IServiceStatus { public function getName() { return "mariadb"; } public function getStatus() { $cmd = new \OMV\System\Process("nc -zv 127.0.0.1 3306"); $cmd->setQuiet(true); $cmd->execute($output, $exitStatus); return array( "name" => $this->getName(), "title" => gettext("mariaDB"), "enabled" => true, "running" => (0 == $exitStatus) ? true : false ); } } Przykład 3 (JDownloader): <?php /* * After copying the file to /usr/share/openmediavault/engined/module run * > monit restart omv-engined * > omv-mkworkbench all * on the shell */ class OMVModuleJDownloader extends \OMV\Engine\Module\ServiceAbstract implements \OMV\Engine\Module\IServiceStatus { public function getName() { return "jdownloader"; } public function getStatus() { $cmd = new \OMV\System\Process("nc -zv 192.168.2.2 3129"); $cmd->setQuiet(true); $cmd->execute($output, $exitStatus); return array( "name" => $this->getName(), "title" => gettext("JDownloader"), "enabled" => true, "running" => (0 == $exitStatus) ? true : false ); } } Przykład 3 (Radicale): <?php /* * After copying the file to /usr/share/openmediavault/engined/module run * > monit restart omv-engined * > omv-mkworkbench all * on the shell */ class OMVModuleRadicale extends \OMV\Engine\Module\ServiceAbstract implements \OMV\Engine\Module\IServiceStatus { public function getName() { return "radicale"; } public function getStatus() { $cmd = new \OMV\System\Process("curl -f http://127.0.0.1/radicale/.web/"); $cmd->setQuiet(true); $cmd->execute($output, $exitStatus); return array( "name" => $this->getName(), "title" => gettext("Radicale"), "enabled" => true, "running" => (0 == $exitStatus) ? true : false ); } } Po dodaniu Pliku należy użyć Komendy w ssh: monit restart omv-engined omv-mkworkbench all
  10. Zobacz plik Dynamiczny Hostname Dynamic Hostname Ip Update Dynamiczny adres url aktualizacja adresu ip w NoIp, Ddns, Ydns, freedns skrypt wykonywany jest co godzinę ale można ustawić jak się chce. sudo dpkg -i openmediavault-dnshost_1.3.2_all.deb Dodający zaba141 Dodano 15.03.2025 Kategoria Pluginy  
  11. zaba141

    Dynamiczny Hostname

    Wersja 1.3.2

    0 pobrań

    Dynamic Hostname Ip Update Dynamiczny adres url aktualizacja adresu ip w NoIp, Ddns, Ydns, freedns skrypt wykonywany jest co godzinę ale można ustawić jak się chce. sudo dpkg -i openmediavault-dnshost_1.3.2_all.deb
  12. Wersja 8.0.0

    0 pobrań

    Plik instalacyjny modyfikujący OMV do wersji Custom
  13. Wersja 8.0.0

    0 pobrań

    źródło OpenMediaVault
  14. Adres do Dokumentacji Nie Oficjalna Dokumentacja OMV - oraz dodatek do tworzenia własnych pluginów znajdziecie na https://www.omv-docs.online/
  15. Installation of OMV-Extras.org Description OMV-Extras.org is a plugin which enables you to do several things... Install proxmox kernel Install even more plugins. Installation From command line as root (preferred method) and only method for OMV6 and OMV7 wget -O - https://github.com/OpenMediaVault-Plugin-Developers/packages/raw/master/install | bash OR From OMV web interface (alternative method) Download the plugin to enable this repository here: For OMV 4.x (arrakis) - https://github.com/OpenMediaVa…extrasorg_latest_all4.deb For OMV 5.x (usul) - https://github.com/OpenMediaVa…extrasorg_latest_all5.deb For OMV 6.x (shaitan) and OMV 7.x (sandworm) - please use the installation method above (from command line) Go to the plugin tab in OMV's web interface. Upload the file. Select the newly uploaded plugin openmediavault-omvextrasorg Click on Install. Refresh page. Go to the plugin tab and click Check.
×
×
  • Dodaj nową pozycję...