I'm try to connect to the VM via RDP.
I've tried: Bridge to LAN, and direct attachment, but still can't connect via RDP.
I can only connect to it via the console.
I'm try to connect to the VM via RDP.
I've tried: Bridge to LAN, and direct attachment, but still can't connect via RDP.
I can only connect to it via the console.
where do I find its dir to remove it ?
I like Intel NICs too, but so far the computer shut down itself after it wakes up from hibernation.
error: e10000e hardware unit changed
I couldn't find the solution for it.
After I did some research, I cancelled my Realtek NICS and order a newer model Intel cards.
Hopefully this resolve the issue or I have to restore OMV back to v5.5.14.
This is my current NICs:
I just ordered two Realtek NICs.
My current Intel NICs giving me error.
Hi guys,
I'm currently using a custom built for OMV5, but lately it has some ethernet driver issue.
I'm thinking if I can't fix this issue or the system board is dead in the future, then I need a new system.
Is anybody in here able to install OMV5 in Synology station or another brand that want to share some insights ?
Thanks
Apparently the error persist after the server woke up from hibernation.
I'm planning to put the script to disable tso and gso like this format.
I'm not sure if this work in OMV5: RE: Customize /etc/network/interfaces the OMV way [>= 1.11]
Update 1: I put the script in /etc/network/interfaces.d/disable_gso_tso.sh, and ran this command:
omv-salt deploy run systemd-networkd .
However, after the computer restarted, the script didn't execute.
-rwxr-xr-x 1 root root 1307 Dec 30 19:17 disable_gso_tso.sh
Why ?
#!/bin/sh
#
# This file is part of OpenMediaVault.
#
# @license http://www.gnu.org/licenses/gpl.html GPL Version 3
# @author Volker Theile <volker.theile@openmediavault.org>
# @copyright Copyright (c) 2009-2015 Volker Theile
#
# OpenMediaVault is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# OpenMediaVault is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenMediaVault. If not, see <http://www.gnu.org/licenses/>.
set -e
. /etc/default/openmediavault
. /usr/share/openmediavault/scripts/helper-functions
OMV_INTERFACES_CONFIG=${OMV_INTERFACES_CONFIG:-"/etc/network/interfaces"}
cat <<EOF >> ${OMV_INTERFACES_CONFIG}
#
post-up /sbin/ethtool -K bond0 tso off gso off
post-up /sbin/ethtool -K eno1 tso off gso off
post-up /sbin/ethtool -K enp1s0 tso off gso off
post-up /sbin/ethtool -K enp2s0 tso off gso off
EOF
Display More
I think I had resolved the issue by: add 'pcie_aspm=off' in the grub file and add the script to disable TSO and GSO for the NIC interfaces.
I update whatever it pushed to the OMV by default.
Hello,
I'm not sure if this issue is only affect my system.
But it annoying as crap.
The computer boot up and showed error for: e1000e 0000:00:19.0 eno1
I've tried this solution https://unix.stackexchange.com…ic-and-hardware-unit-hang but error persist after it wake from hibernation, then it shut down with in 15 seconds.
I then restored OMV v5.5.14, and it running fine.
I don't see that error anymore.
Next, I updated it to 5.5.19, the system error happening again !
In addition, I've also disabled the C1E feature in the BIOS too.
Thanks for sharing the guide.
I managed to installed Windows 10.
However, I'm tried to create a bridge adapter, but received an error.
Note: I'm currently using a bond0 in OMV.
Error #0:
OMV\ExecException: Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LANG=C.UTF-8; omv-salt deploy run --no-color collectd 2>&1' with exit code '1': debian:
Data failed to compile:
----------
Rendering SLS 'base:omv.deploy.collectd.plugins.drivemon' failed: Jinja error: No such data model: conf.service.drivemon
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/salt/utils/templates.py", line 498, in render_jinja_tmpl
output = template.render(**decoded_context)
File "/usr/lib/python3/dist-packages/jinja2/asyncsupport.py", line 76, in render
return original_render(self, *args, **kwargs)
File "/usr/lib/python3/dist-packages/jinja2/environment.py", line 1008, in render
return self.environment.handle_exception(exc_info, True)
File "/usr/lib/python3/dist-packages/jinja2/environment.py", line 780, in handle_exception
reraise(exc_type, exc_value, tb)
File "/usr/lib/python3/dist-packages/jinja2/_compat.py", line 37, in reraise
raise value.with_traceback(tb)
File "<template>", line 1, in top-level template code
File "/var/cache/salt/minion/extmods/modules/omv_conf.py", line 39, in get
objs = db.get(id_, identifier)
File "/usr/lib/python3/dist-packages/openmediavault/config/database.py", line 84, in get
query = openmediavault.config.DatabaseGetQuery(id, identifier)
File "/usr/lib/python3/dist-packages/openmediavault/config/database.py", line 700, in __init__
super().__init__(id)
File "/usr/lib/python3/dist-packages/openmediavault/config/database.py", line 310, in __init__
self._model = openmediavault.config.Datamodel(id)
File "/usr/lib/python3/dist-packages/openmediavault/config/datamodel.py", line 52, in __init__
model = self._load(id)
File "/usr/lib/python3/dist-packages/openmediavault/config/datamodel.py", line 71, in _load
raise DatamodelNotFoundException(id)
openmediavault.config.datamodel.DatamodelNotFoundException: No such data model: conf.service.drivemon
; line 1
---
{% set config = salt['omv_conf.get']('conf.service.drivemon') %} <======================
{% set user = salt['cmd.run']('id -nu 1000') %}
{% set group = salt['cmd.run']('id -ng 1000') %}
{% if config.drives != '' %}
[...]
--- in /usr/share/php/openmediavault/system/process.inc:182
Stack trace:
#0 /usr/share/php/openmediavault/engine/module/serviceabstract.inc(62): OMV\System\Process->execute()
#1 /usr/share/openmediavault/engined/rpc/config.inc(167): OMV\Engine\Module\ServiceAbstract->deploy()
#2 [internal function]: Engined\Rpc\Config->applyChanges(Array, Array)
#3 /usr/share/php/openmediavault/rpc/serviceabstract.inc(123): call_user_func_array(Array, Array)
#4 /usr/share/php/openmediavault/rpc/serviceabstract.inc(149): OMV\Rpc\ServiceAbstract->callMethod('applyChanges', Array, Array)
#5 /usr/share/php/openmediavault/rpc/serviceabstract.inc(588): OMV\Rpc\ServiceAbstract->OMV\Rpc\{closure}('/tmp/bgstatus3N...', '/tmp/bgoutput5Q...')
#6 /usr/share/php/openmediavault/rpc/serviceabstract.inc(159): OMV\Rpc\ServiceAbstract->execBgProc(Object(Closure))
#7 /usr/share/openmediavault/engined/rpc/config.inc(189): OMV\Rpc\ServiceAbstract->callMethodBg('applyChanges', Array, Array)
#8 [internal function]: Engined\Rpc\Config->applyChangesBg(Array, Array)
#9 /usr/share/php/openmediavault/rpc/serviceabstract.inc(123): call_user_func_array(Array, Array)
#10 /usr/share/php/openmediavault/rpc/rpc.inc(86): OMV\Rpc\ServiceAbstract->callMethod('applyChangesBg', Array, Array)
#11 /usr/sbin/omv-engined(537): OMV\Rpc\Rpc::call('Config', 'applyChangesBg', Array, Array, 1)
#12 {main}
Display More
Hi guys,
I just replaced a bad hdd with a new hard drive.
My setup: LUKS Encryption with SnapRAID.
I unmounted the bad hdd from the encryption but it showing missing.
It let me did the encryption first time for the new hdd but it failed to create a new file system.
Now, OMV wouldn't let me do the encryption at all.
I'm seeing the bad hdd UUID is in the /etc/openmediavault/config.xml.
What's the best solution ?
Different software has different package size.
It also depends on your home internet speed as well.
Hello,
Can you post your error log here so others can chime in ?
Do you meant I need to change the port number of Yacht?
You can use this command to kill the process:
kill $(ps -A | grep 'VB' | awk '{print $4}')
Hello,
I installed it from the OMV menu.
It does work on UnionFS mount point.
Check your directories permissions.