Search results

  1. K

    Not enough space in PVE-Root

    I am not familiar with Virtualizor. However if these 'template files' are the main culprit, then maybe create a thinpool backed volume as you suggested, but mounted in the existing root fs somewhere appropriate (/var/lib/virtualizor-templates or where ever Virtualizor expects to find them).
  2. K

    Not enough space in PVE-Root

    If you manage to achieve that, you will end up with a very unusual setup that's likely to cause problems down the road (booting, kernel upgrades etc). Also, if space is at such a premium, what do you plan on doing with the original root volume? I'd look at why your root fs is so full and remedy...
  3. K

    Not enough space in PVE-Root

    If there's no free space in VG pve and you don't want to add additonal PVs to the VG pve, then you need to shrink pve/data first. Good luck.
  4. K

    Not enough space in PVE-Root

    If you have free space in the pve VG, you can allocate additional storage from it to /pve/root. Then resize the filesytem. If there's no space available from that VG, you need to add some first. Which generally means adding additional PVs (partitions or entire disks) to the VG. Alternatively...
  5. K

    [SOLVED] Datastore backup without remote PBS

    'no_root_squash' is needed in the relevant share definition in `/etc/exports` on the NFS server. Your export config depends to some extent on whether you are using NFS v4. But PBS should be able to mount any NFS version. Check to see if datastore structure (chunk store etc) exists. `ls -al...
  6. K

    [SOLVED] Datastore backup without remote PBS

    I'd avoid rsyncing the datastore. I only tested backing up a few containers as I've currently no spare SSD to dedicate to datastores. But both removable media and NFS worked for me. For syncing to a datastore on removable media, you need to manage the datastore after inserting media and prior...
  7. K

    [SOLVED] Datastore backup without remote PBS

    Are you looking for PBS datastore on a removable drive or an NFS mount?
  8. K

    [SOLVED] Datastore backup without remote PBS

    Just to update this query. I followed @Dunuin advice: Set up a second datastore to pull backups from the first datastore on a manual schedule. I then tried putting the second datastore on an NFS mounted volume. Whilst datastore creation was very slow (as per other posts), once set up the sync...
  9. K

    [SOLVED] Datastore backup without remote PBS

    I assumed the sync ran continuously but reading further seems it is schedule based. So for my use case, I guess I need to disable schedules and run sync job manually. Or script running of the sync job.
  10. K

    [SOLVED] Datastore backup without remote PBS

    That sounds good. Thanks for the recommendation. How would you control the sync process to accomodate a removable drive?
  11. K

    [SOLVED] Datastore backup without remote PBS

    Regarding backup of a datastore when there's no remote PBS to sync to. I'd thought to periodically rsync the datastore to a removable drive and restore same way if needed. Presumably I need to halt the backup service. Is there a better approach? Thanks.
  12. K

    Rejected Mail - but SPF record seems to be ok

    Is it possible to perform the spf check (sending MTA IP & sender domain) with verbose output from the command line in PMG?
  13. K

    Rejected Mail - but SPF record seems to be ok

    Thanks @poetry. Using this tool, which checks IP vs SPF record, the IP is designated. I've rarely encountered SPF fails with my PMG installation and the only reason I looked in to this one was the fact the mail was anticipated. AIUI pfsense the rebind protection relates to stripping RFC1918...
  14. K

    Rejected Mail - but SPF record seems to be ok

    Sorry for resurrecting this topic but it seems the best place to ask my question. I noticed and spf reject for an apparently valid IP. Nov 17 10:18:42 smtp postfix/smtpd[304690]: NOQUEUE: reject: RCPT from mailgwln03.rightnowtech.com[147.154.227.175]: 554 5.7.1 <user@mydomain.com>: Recipient...
  15. K

    [SOLVED] PMG statistics pages display and accept invalid date selection

    Thanks Dominik. I keep forgetting to search the development lists. I will mark this as solved.
  16. K

    [SOLVED] PMG statistics pages display and accept invalid date selection

    @dcsapak ~# pmgversion -v proxmox-mailgateway-container: 7.1-2 (API: 7.1-7/4d02e400, running kernel: 5.15.60-1-pve) pmg-api: 7.1-7 pmg-gui: 3.1-4 clamav-daemon: 0.103.7+dfsg-0+deb11u1 ifupdown: residual config ifupdown2: 3.1.0-1+pmx3 libarchive-perl: 3.4.0-1 libjs-extjs: 7.0.0-1...
  17. K

    [SOLVED] PMG statistics pages display and accept invalid date selection

    In the dropdown, day numbers 1-31 are always available regardless of the month selected. The generated starttime/endtime is however a valid date and the data displayed, correct for that date. For example, selecting 29/02/22 generates a graph for 01/03/22 and 31/02/22 brings a graph for 03/03/22...
  18. K

    [SOLVED] PMG statistics pages display and accept invalid date selection

    I noticed the date selector in the statistics section offers 31st September as a valid selection. When selected, it seems to find data to display under the various stats sub-pages and that data differs from both 30th Sept and 1st Oct. It seems like a bug to me. I am on Mail Gateway 7.1-7.
  19. K

    [SOLVED] Wireless HW access from container

    Just an update. I now seem to have this working (in a privledged container) using the following lxc config. I don't know if it's possible/straightforward in an unprivledged container. lxc.net.1.type: phys lxc.net.1.flags: up lxc.net.1.link: wlp4s0 lxc.net.1.name: wlp4s0...
  20. K

    [SOLVED] Wireless HW access from container

    Hi I'd like to try to setup an Alpine based container running hostapd. I have searched the Proxmox forums and have not found any recent posts regarding accessing host's wireless hardware from within a container. I gather this may now be possible with lxc. How might I configure the container in...