diff --git a/content/Software Support/Arduino App Lab/If-App-Lab-does-not-open-on-Linux.md b/content/Software Support/Arduino App Lab/If-App-Lab-does-not-open-on-Linux.md
new file mode 100644
index 00000000..30b51e22
--- /dev/null
+++ b/content/Software Support/Arduino App Lab/If-App-Lab-does-not-open-on-Linux.md
@@ -0,0 +1,59 @@
+---
+title: "If App Lab does not open on Linux"
+---
+
+If you’re running App Lab on Linux, the application will not be able to launch if the WebKit2 library is not installed. Learn how to install the library and diagnose other potential issues.
+
+---
+
+In this article:
+
+
+
+- [Make sure the WebKit2 library is installed](#make-sure-the-webkit2-library-is-installed)
+- [Launch App Lab in Terminal](#launch-app-lab-in-terminal)
+
+
+
+## Make sure the WebKit2 library is installed
+
+If you’re running App Lab on Linux, the application will not be able to launch if an appropriate version of the **WebKitGTK** library is missing.
+
+Resolve the issue by installing the library:
+
+1. Open Terminal from the main application menu, or press Ctrl + Alt + T.
+
+1. Type the following command:
+
+ - **Ubuntu/Debian/Mint:** `sudo apt install libwebkit2gtk-4.1-0`
+ - **Arch:** `sudo pacman -S webkit2gtk-4.1`
+
+1. Press Enter.
+
+1. Try launching App Lab again.
+
+If the library was already installed, check for other errors by [launching App Lab in Terminal](#try-launching-app-lab-in-terminal).
+
+## Launch App Lab in Terminal
+
+If App Lab still isn't launching, you can try opening the application from Terminal, to reveal error output not visible when launching the application normally.
+
+Follow these steps:
+
+1. Open Terminal from the main application menu, or press Ctrl + Alt + T.
+
+1. Navigate to the directory containing Arduino App Lab. A quick way to do this is by typing `cd`and a space, and then drag and drop the file's folder directly onto the Terminal window. The path will appear automatically. Press Enter to confirm.
+
+1. Type `./arduino-app-lab` and press Enter.
+
+1. Observe the Terminal output.
+
+ - If you see this error, you are still missing the WebKitGTK library.
+
+ ```
+ ./arduino-app-lab: error while loading shared libraries: libwebkit2gtk-4.1.so.0: cannot open shared object file: No such file or directory
+ ```
+
+ Follow the steps in [Make sure the WebKit2 library is installed](#make-sure-the-webkit2-library-is-installed).
+
+ - For other issues, try seraching the Arduino Help Center or [contacting Arduino Support](https://www.arduino.cc/en/contact-us/).