No drivers need to be installed on the proxmox, from now called host.
Find GIDs of video and render group on host:
cat /etc/group | grep video
cat /etc/group | grep render
#!/bin/sh | |
####################################################### | |
# | |
# Edits the proxmox Subscription file to make it | |
# think that it has a Subscription. | |
# | |
# Will disable the annoying login message about | |
# missing subscription. | |
# |
// based on Алексей Сердюков's answer at Stackoverflow (https://stackoverflow.com/a/50837219/1143392) | |
import { | |
Directive, | |
Input, | |
OnDestroy, | |
OnInit | |
} from '@angular/core'; | |
import { MediaObserver } from '@angular/flex-layout'; | |
import { MatGridList } from '@angular/material'; |
import { ActivatedRoute, NavigationEnd, Router, RouterEvent, RouterLinkWithHref, UrlTree } from '@angular/router'; | |
import { | |
Directive, | |
EventEmitter, | |
HostBinding, | |
HostListener, | |
Input, | |
isDevMode, | |
OnChanges, | |
OnDestroy, |
export class AppModule { | |
constructor(private router: Router, private viewportScroller: ViewportScroller) { | |
// Disable automatic scroll restoration to avoid race conditions | |
this.viewportScroller.setHistoryScrollRestoration('manual'); | |
this.handleScrollOnNavigation(); | |
} | |
/** | |
* When route is changed, Angular interprets a simple query params change as "forward navigation" too. |
const {withAppBuildGradle} = require('@expo/config-plugins') | |
/** | |
* A Config Plugin to disable bundle compression in Android build.gradle. | |
* This makes the Android app start faster - in our tests by 400ms! | |
* @param {import('@expo/config-plugins').ConfigPlugin} config | |
* @returns {import('@expo/config-plugins').ConfigPlugin} | |
*/ | |
module.exports = function withNoBundleCompression(config) { | |
return withAppBuildGradle(config, androidConfig => { |