search for: systemservices

Displaying 14 results from an estimated 14 matches for "systemservices".

Did you mean: systemservice
2019 Apr 15
1
[PATCH] v2v: -o rhv-upload: check whether the cluster exists
In the precheck script, check that the target cluster actually exists. This will avoid errors when creating the VM after the data copying. --- v2v/rhv-upload-precheck.py | 10 ++++++++++ v2v/test-v2v-o-rhv-upload-module/ovirtsdk4/__init__.py | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/v2v/rhv-upload-precheck.py b/v2v/rhv-upload-precheck.py index
2015 Jul 06
2
libopus and TI am335x with linphone
Hello, has anyone running a linphone-application on am335x (like beaglebone) with opus codec. My CPU has extreme high load, wenn ist start with opus codec. Is there a possibikity tu optimize f?r this single core ARM? Thanks Helmut Sholz ______________________________ BAYERISCHER RUNDFUNK Rundfunkplatz 1 80335 M?nchen HA IT und Medientechnik Abteilung Systemservice Funkhaus FG Sendungssysteme
2019 Aug 12
1
[PATCH] v2v: -o rhv-upload: fix the phony ovirtsdk4 module
- add a no-op Connection.close(), as it called explicitly in the close() callback of the nbdkit plugin (rhv-upload-plugin.py) - fix the types of the 'id' variables, which are strings --- v2v/test-v2v-o-rhv-upload-module/ovirtsdk4/__init__.py | 3 +++ v2v/test-v2v-o-rhv-upload-module/ovirtsdk4/types.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git
2019 Sep 19
2
[PATCH] v2v: -o rhv-upload: adapt phony ovirtsdk4 module to recent changes
Add the missing objects, methods, variables, and relations among the various objects. Followup/fixes commit c49aa4fe01aac82d4776dd2a3524ce16e6deed06, and commit 8118f28b6ff93c11f92fd65873285c2eba10ea0a. --- .../ovirtsdk4/__init__.py | 25 +++++++++++++------ .../ovirtsdk4/types.py | 19 ++++++++++---- 2 files changed, 31 insertions(+), 13 deletions(-)
2016 Mar 02
2
Remote Desktop Users Group not working??
...quot;DOMAIN\Allow-RDP" group in the AD. Added users to this group. In the GPO, i used "default computer" Policies - Windows settings - security settings - Restricted groups. Here add your DOMAIN\Allow-RDP to the Remote Desktop Users. And - Windows settings - security settings - Systemservices, Remote Desktop Services, set to Automatic startup. Administrative Templates - Windows components/Remote desktop services/Host external dekstop session/ connection. "Allow users to connect to Remote Desktop." Reboot the PC. Try again, this should work. This : samba-tool group...
2016 Mar 02
2
Remote Desktop Users Group not working??
Hi I have setup a Samba AD and connected a Windows 7 machine to the AD... I'm having problems getting the Remote Desktop Users group to work... [root at bart private]# samba-tool group addmembers "Remote Desktop Users" mj ldb_wrap open of secrets.ldb Added members to group Remote Desktop Users [root at bart private]# samba-tool group listmembers "Remote Desktop
2018 Sep 20
0
[PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
Previously this output method was almost completely untested. This commit adds a fake ovirtsdk4 module so we can test the -o rhv-upload method fairly completely without needing an actual oVirt instance around. --- v2v/Makefile.am | 4 + .../ovirtsdk4/__init__.py | 146 ++++++++++++++++++ .../ovirtsdk4/types.py | 125
2018 Sep 20
7
[PATCH v2 0/3] v2v: -o rhv-upload: Add a test.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-September/msg00121.html v2: - Rewrote patch 2 from scratch so it incorporates Nir's suggestions. - Add fake module to EXTRA_DIST. - Retested. Unfortunately I am no longer able to test the ordinary conversion path because ovirtsdk4 is incompatible with Fedora 29 / Python 3.7:
2015 Jul 06
0
libopus and TI am335x with linphone
Hello, you can compile opus with "--enable-fixed-point". That saves a cpu ressources. https://github.com/Studio -Link/PKGBUILDs_clean/blob/master/opus/PKGBUILD#L23 -- nice regards, Sebastian Reimers ------------------------------------------ IT-Service Sebastian Reimers Am blanken Boom 14 32369 Rahden Festnetz: 05776-3930000 Fax-Nummer: 05221-17242088 Skype: miete-admin E-Mail:
2016 Mar 02
0
Remote Desktop Users Group not working??
...OMAIN\Allow-RDP" group in the AD. Added users to this group. In the GPO, i used "default computer" Policies - Windows settings - security settings - Restricted groups. Here add your DOMAIN\Allow-RDP to the Remote Desktop Users. And - Windows settings - security settings - Systemservices, Remote Desktop Services, set to Automatic startup. Administrative Templates - Windows components/Remote desktop services/Host external dekstop session/ connection. "Allow users to connect to Remote Desktop." Reboot the PC. Try again, this should work. This : samba-tool gro...
2016 Mar 02
0
Remote Desktop Users Group not working??
...ot; group in the AD. Added users to this group. > > In the GPO, i used "default computer" > Policies - Windows settings - security settings - Restricted groups. > Here add your DOMAIN\Allow-RDP to the Remote Desktop Users. > And > - Windows settings - security settings - Systemservices, > Remote Desktop Services, set to Automatic startup. > > Administrative Templates - > Windows components/Remote desktop services/Host external dekstop session/ connection. > "Allow users to connect to Remote Desktop." > > > Reboot the PC. > > Try again, this...
2018 Sep 19
4
[PATCH 0/3] v2v: -o rhv-upload: Add a test.
This adds a test of -o rhv-upload. Obviously for an upstream test we cannot require a working oVirt server. This test works by faking the ovirtsdk4 Python module, setting PYTHONPATH so that the fake module is picked up instead of the real module (if installed). However it's more complex than that because the nbdkit plugin also expects to talk to a working imageio HTTPS server. Therefore
2018 Oct 09
2
Re: [PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
On Thu, Sep 20, 2018 at 11:51 AM Richard W.M. Jones <rjones@redhat.com> wrote: > Previously this output method was almost completely untested. > > This commit adds a fake ovirtsdk4 module so we can test the > -o rhv-upload method fairly completely without needing an actual > oVirt instance around. > --- > v2v/Makefile.am | 4 + >
2020 Jan 10
7
[v2v PATCH 0/6] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python scripts, and fix the existing test-v2v-python-syntax.sh to use pycodestyle to actually perform style checks. Pino Toscano (6): PEP 8: adapt whitespaces in lines PEP 8: move imports at the top PEP 8: adapt empty lines tests: find all the Python scripts for syntax checks -o rhv-upload: remove unused Python imports Revamp check