Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion File-Formats/PDF/Convert-HTML-To-PDF/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -692,4 +692,28 @@ You can downloaded a complete working sample from [GitHub](https://github.com/Sy

</td>
</tr>
</table>
</table>

## Zombie process are not closed by default from chrome headless in Linux platform

The zombie process are not closed by default from chrome headless in Linux. However, We can resolve the zombie process issue by using the below commandline arguments in converter settings.

{% tabs %}

{% highlight %}

//Set command line arguments to run without the sandbox.

settings.CommandLineArguments.Add("--no-sandbox");

settings.CommandLineArguments.Add("--disable-setuid-sandbox");

settings.CommandLineArguments.Add("--no-zygote");

settings.CommandLineArguments.Add("--disable-dev-shm-usage");

settings.CommandLineArguments.Add("--single-process");

{% endhighlight %}

{% endtabs %}