Leuchtekulli

Members
  • Posts

    28
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Leuchtekulli's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I'd love to see that too.
  2. Hi, I'm trying to passthrough the my iGPU to a win10 VM. First of all my System Information: The GPU is in its own iommu group. The VM works fine over VNC but when i try to passthrough the iGPU the Screen just stays black. I've read that there are problems passing through the only gpu to a VM but with my GTX 1060 it worked fine, at that time i followed spaceinvaderones guide an put the vbios in the XML but I cant find a VBIOS for any iGPU. Do you have any suggestions how i could get it to work? My thought was to blacklist the iGPU in the syslinux config but I dont' know if thats a good idea? I've also read that many people with intel CPUs just installed the right driver over vnc and then passed through the iGPU could that work and how do i do that? Thanks Edit: Here are the logs:
  3. Hi, I am planning to move my Gaming VM out of my Server. The new Configuration for the Server is going to be a Ryzen 2400G paired with an ASRock AB350 Pro4. The iGPU would be used for an Office VM. My Question: Has anyone experience with passing through a Ryzen 2nd Gen iGPU and does it work? Thanks
  4. Hi if I want to access the webui of my nextcloud server i get an http error 500 message. In the container log it says that: Stack trace: #0 /config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(125): OC\AppFramework\Utility\SimpleContainer->resolve('defaultTokenPro...') #1 /config/www/nextcloud/lib/private/ServerContainer.php(132): OC\AppFramework\Utility\SimpleContainer->query('defaultTokenPro...') #2 /config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(81): OC\ServerContainer->query('defaultTokenPro...') #3 /config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(104): OC\AppFramework\Utility\SimpleContainer->buildClass(Object(ReflectionClass)) #4 /config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php(125): OC\AppFramework\Utility\SimpleContainer->resolve('OC\\Authenticati...') #5 /config/www/nextcloud/lib/private/ServerContainer.php(132): OC\AppF in /config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php on line 110 PHP Fatal error: Uncaught OCP\AppFramework\QueryException: Could not resolve defaultTokenProvider! Class defaultTokenProvider does not exist in /config/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php:110 And in SimpleContainer.php this: // Service not found, use the default value when available if ($parameter->isDefaultValueAvailable()) { $parameters[] = $parameter->getDefaultValue(); } else if ($parameterClass !== null) { $resolveName = $parameter->getName(); (Line 81) $parameters[] = $this->query($resolveName); } else { throw $e; } } } return $class->newInstanceArgs($parameters); } } /** * If a parameter is not registered in the container try to instantiate it * by using reflection to find out how to build the class * @param string $name the class name to resolve * @return \stdClass * @throws QueryException if the class could not be found or instantiated */ public function resolve($name) { $baseMsg = 'Could not resolve ' . $name . '!'; try { $class = new ReflectionClass($name); if ($class->isInstantiable()) { (Line 104) return $this->buildClass($class); } else { throw new QueryException($baseMsg . ' Class can not be instantiated'); } } catch(ReflectionException $e) { (Line 110) throw new QueryException($baseMsg . ' ' . $e->getMessage()); } } /** * @param string $name name of the service to query for * @return mixed registered service for the given $name * @throws QueryException if the query could not be resolved */ public function query($name) { $name = $this->sanitizeName($name); if ($this->offsetExists($name)) { return $this->offsetGet($name); } else { (Line 125) $object = $this->resolve($name); $this->registerService($name, function () use ($object) { return $object; }); return $object; } } And in ServerContainer.php this: /** * @param string $name name of the service to query for * @return mixed registered service for the given $name * @throws QueryException if the query could not be resolved */ (line 107) public function query($name) { $name = $this->sanitizeName($name); // In case the service starts with OCA\ we try to find the service in // the apps container first. if (strpos($name, 'OCA\\') === 0 && substr_count($name, '\\') >= 2) { $segments = explode('\\', $name); try { $appContainer = $this->getAppContainer(strtolower($segments[1]), $segments[1]); return $appContainer->queryNoFallback($name); } catch (QueryException $e) { // Didn't find the service or the respective app container, // ignore it and fall back to the core container. } } else if (strpos($name, 'OC\\Settings\\') === 0 && substr_count($name, '\\') >= 3) { $segments = explode('\\', $name); try { $appContainer = $this->getAppContainer(strtolower($segments[1]), $segments[1]); return $appContainer->queryNoFallback($name); } catch (QueryException $e) { // Didn't find the service or the respective app container, // ignore it and fall back to the core container. } } (Line 132) return parent::query($name); } } I hope that helps you to find the error. Thank you very much!
  5. Hi, I copied your conf file but letsencrypt puts out that error: nginx: [emerg] unexpected end of file, expecting ";" or "}" in /config/nginx/proxy-confs/collabora.subdomain.conf:47 So i checked the line and there is a } Can anyone help me with that? Thanks!
  6. Hi, I just started to use Ripper and I'm really happy with it so far, thanks alot! At the moment I use it just for CDs but I'd also like to use it for DVDs and Blurays and for that I need a little help. The current settings.conf of my MakeMKV container look like that: # # MakeMKV settings file, written by MakeMKV v1.12.3 linux(x64-release) # app_DataDir = "/config/data" app_DestinationDir = "/output" app_DestinationType = "2" app_ExpertMode = "1" app_InterfaceLanguage = "eng" app_Java = "" app_Key = "T-60xZwR6c65pJ3ykvVyyS4SiNFEpYHA0dDEjkdEH7Ab@Sa6uG3RCaFb8YzYhViTwimT" app_PreferredLanguage = "ger" app_UpdateEnable = "0" Can I just copy and paste that into rippers settings.conf file. And is it possible to use two preferred languages? (for me that would be ger and eng) One more thing I'd like to change the output for DVDs and BluRays to another Share how can I do that? Thanks, Leuchtekulli
  7. Hi, I want add this to the config.yaml file: match: strong_rec_thresh: 0.2 Doesn't work with Notepad++ or the CA Config File Editor, any suggestions? Edit: I used the Tool New Permissions and it works now. But I thought after that change it would automatically accept any matches above 80% and choose use as is for the other ones but obviously it doesn't work that way. How can I automate that?
  8. I just reinstalled Windows and now everything works fine.
  9. https://ubuntuforums.org/archive/index.php/t-1618641.html aaand the second one Now i just need a soundfix
  10. Thanks, Now i did all that and removed the overclock. and now the log shows this and there is still no sound. May 22 14:49:05 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:05 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:08 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:08 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:14 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:30 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:39 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:39 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:49:46 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:50:02 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:50:06 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:50:06 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:50:10 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:50:10 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token May 22 14:50:18 Sailer root: error: /webGui/include/DashUpdate.php: wrong csrf_token And that: May 22 14:41:06 Sailer emhttpd: shcmd (6): /usr/local/emhttp/webGui/scripts/update_access May 22 14:41:06 Sailer sshd[1887]: Received signal 15; terminating. May 22 14:41:07 Sailer sshd[4685]: Server listening on 0.0.0.0 port 22. May 22 14:41:07 Sailer sshd[4685]: Server listening on :: port 22.
  11. Hi, I updated to Unraid 6.5.2 yesterday and now i have sound problems with my Win 10 VM. Here is my System Information: Thats the Audio Controller: And here is the log: Thanks for your help Edit: And if you have an Idea how to solve that throtteling Issue with the CPU feel free to answer that too.