Gordian Dziwis

Results 35 comments of Gordian Dziwis

@tvld freeze during shutdown could be the result of the nouveau driver being loaded after switching to intel. Nouveau does not really work with 10xx gpus. Adding `nouveau.modeset=0` as a...

@tvld It prevents the nouveau modul from loading, there was a change in prime. Prime now uses the nouveau modul for powering off the dgpu when in intel mode. [Bug...

You are right, maybe `i915.modeset=1` is missing ``` GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_rev_override=1 enable_fbc=1 enable_psr=1 i915.modeset=1 disable_power_well=0 nouveau.modeset=0" ```

I think those are the necessary ones: ``` GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_rev_override=1 i915.modeset=1 nouveau.modeset=0" ``` Never had a wifi problem, but it is all trial and error with these boot parameters. Workarounds...

An use case would be more complex builds depending in multiple filetypes. For example a webframework could have java, js, html, config and routing files, any change in any of...

I did this and nothing concerning shell commands was logged. No "Failed executing command" and no "Executed shell command" message.

`mvn clean install` built after setting JAVA_HOME to java8. But then ``` mvn jetty:run ``` Throws: ``` [ERROR] Failed to execute goal org.eclipse.jetty:jetty-maven-plugin:11.0.0:run (default-cli) on project rdfunit-validate: Execution default-cli of...

Thanks, this helped, and I was able to start the jetty server, but navigation to it gives a 503. [Here](https://github.com/AKSW/RDFUnit/files/6489537/report.txt) is the terminal output.