Quote from: teclab on January 30, 2026, 02:55:08 PMTried this, rebooted, but did not do anything:Wrong file name.Code Selecttouch /.probe.for.growfs.nano
Cheers
Maurice
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: teclab on January 30, 2026, 02:55:08 PMTried this, rebooted, but did not do anything:Wrong file name.touch /.probe.for.growfs.nano
Quote from: Maurice on December 07, 2025, 09:43:43 PMI've now set hw.vtnet.csum_disable=0 on two OPNsense instances with vtnet interfaces (one amd64, one aarch64).No side effects observed in the last 6+ weeks.
Will report back with anecdotal observations (remind me if I forget because everything works).options=ec07bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,TSO4,TSO6,LRO,VLAN_HWTSO,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6,HWSTATS>
opnsense-patch -c plugins 3be934fQuote from: nero355 on January 20, 2026, 12:16:53 AMSo the file you create with the touch command has the special name that triggers the expansion ?Correct. The rc script checks whether this file exists. If it does, the partition and file systems modifications are executed and the file is deleted, so this happens only once:
GROWFS_MARKER=/.probe.for.growfs
[...]
if [ -f ${GROWFS_MARKER} ]; then
if [ -n "${ROOT_IS_UFS}" ]; then
grow_partition ${ROOT_IS_UFS}
growfs -y "/"
elif [ -n "${ROOT_IS_ZFS}" ]; then
zpool list -Hv ${ROOT_IS_ZFS} | while read NAME MORE; do
if [ "${NAME}" != "${ROOT_IS_ZFS}" ]; then
grow_partition ${NAME}
zpool online -e ${ROOT_IS_ZFS} ${NAME}
fi
done
fi
fi
[...]
rm -f ${GROWFS_MARKER}