Beiträge von mcgyver83

    That i7-4770T, despite being older, should be a good choice for a NAS. Most of the time, its power consumption will be quite low. Even if it runs at maximum capacity at certain times, its TDP is only 45W.

    I tested it and with stock bios config it consumes 35W idle, no usb devices, no hdmi just motherboard+cpu+ram+ssd and ethernet connected.

    Too much to replace a RPi2 that consumes 6W at 100% usage :)
    I need to downclock an reduce the energy consumption...35W is like keeping on 5 good size led lamp all day long :)

    I run Pi-hole as docker container and I added via terminal and crontab a script to update pi-hole list.

    Then (probably) I also added it as OMV scheduled job (maybe I forgot to manually remove it via crontab before).

    `grep -r /etc -e "youTube_ads_4_pi-hole"` does not return any results (executed as root).

    I'm still using OMV 5 because it runs on an old RPI 2B.
    I'm configuring a new device with an old Akasa fanless case with Asus Q87T and i7-4770T with ssd da 256GB to replace the RPi but I'm still "fighting" to reduce the power consumption :)


    UPDATE
    Could be I got it:
    I had a file named `config.xml_smb_to_2.1` in `/etc/openmediavault` I created as backup before editing the principal conf file.
    I don't know if it's possible but this file was loaded and cronjob configured. Now I removed this file, manually removed using `sudo crontab -e` the entry, reboot and the entry is gone :)

    I don't remember how I added this crontab entry, I strongly suspect via OMV gui as it should be but if I check via

    Code
    sudo crontab -l

    I see

    Code
    # m h  dom mon dow   command
    0 */1 * * * sudo /youTube_ads_4_pi-hole >/dev/null

    I tried many time to remove it, using

    Code
    sudo crontab -e

    editing the file and saving it but after some times/reboot it reappears.

    How can I remove it?

    Hi,
    I'm running omv 5 on an old taspberry pi 2B but I think this deosn't matter for my question.
    I have a remote mount SMB/CIFS that mount router samba share on my OMV.

    I was out when power got lost due maintenance and when it was back OMV started up fine with also all my docker containers.
    What was not working was the remout mount: the "local" folder was empty. I executed 'sudo mount -a' and all was back to normal: my local folder contained files present in the router share.

    How can I delay OMV remote mount until the remote SMB is available?

    Hi!
    I'm using old OMV 5 instance on a raspberry pi2B (replament process in progress :) )
    I added a usb device to my system and for some reason ext4 partition was labelled "Routerdrive" (last in the picture).

    I checked in /etc/fastab and it's mounted via uuid not label.
    How can I rename the partition?

    You're right.
    I'm thinking about buying new SBC like Rpi4 or recycle and old laptop, screen always off to save energy but way powerful than a rpi2 :(


    Would be interesting to understand why if I upgrade OS and Docker, it doesn't start.

    I know but I spent an afternoon using omv7 on my old raspberry pi2 B and it's really slow.
    In fact I use docker, ftp server and job scheduling so I'm fine with omv5

    Maybe someone else will have same issue.
    To fix I run:

    Code
    sudo apt install --reinstall libraspberrypi0 libraspberrypi-bin libraspberrypi-dev libraspberrypi-doc raspberrypi-bootloader raspberrypi-kernel

    This resets kernel, firmware, libs and tool coming from official distribution.

    Hi, I tried the whole afternoon to install OMV7 on a rpi 2B but as expected, it's too slow.

    I used OMV Backup with full disk dd settings and I restored last backup via `dd`.
    Now I'm back with OMV 5 on my raspberry pi2 B but docker is not starting anymore.
    I have:


    Any help?

    I suspect I broke something due to raspi-config update, something related to kernel
    Linux raspberrypi 5.10.103-v7+ #1529 SMP Tue Mar 8 12:21:37 GMT 2022 armv7l GNU/Linux

    Hi all, I'm using OMV Backup feature with `dd full disk` settings on a Raspberry Pi2 B.
    I see that in the destination folder, many files are created:



    The first one is the one that I can `dd` to the microSD to fully rebuild my setup, right?


    What about the others?

    Hi!
    I'm running omv 5.7 (I know, quite old but I'm running it on a rpi 2B) and I execute an handmade rsync script via scheduled job:

    /home/pi/router_drive/rsync is a Remote Mount to a usb device connected to the router.


    My issue is that each run I have a log like

    2024/06/13 01:45:19 [23073] .d.....g... Software/MyStuff/


    From what I understand is that rsync transfer this folder every time because "group" information is not aligned from source to target.

    Many others folders got transferred with same log (not all folders in source are transferred) and I cannot understand why "group" info cannot be "synchronized".

    Any hints?

    Hi, I went back to this topic after long time :(

    I configured a scheduled job in OMV gui:


    When I run it I have this message in the modal windows:

    source: not found


    If I cat autogemerated job file

    cat /var/lib/openmediavault/cron.d/userdefined-fe8457ff-1a95-4f9f-a331-e74b25603a0a

    #!/bin/sh -l

    # This file is auto-generated by openmediavault (https://www.openmediavault.org)

    # WARNING: Do not edit this file, your changes will get lost.

    /home/pi/raspberry-mcg/script/backup/gphotos-sync/gphotos-sync.sh


    and if I cat my sh file

    cat /home/pi/raspberry-mcg/script/backup/gphotos-sync/gphotos-sync.sh

    #!/usr/bin/env bash

    cd /home/pi/gphotos-sync;

    #--new-token

    /home/pi/.local/bin/pipenv run ./gphotos-sync --flush-index --do-delete --album-date-by-first-photo --logfile /var/log/gphotos-sync.log --use-flat-path --secret /home/pi/gphotos-sync/client_secret.json /home/pi/local_drive/Foto_Video/Foto/GooglePhotos


    Why I have "source: not found" message in the modal from OMV gui?