2023-11-02 11:36:13 +03:00
# Troubleshooting
## Table of Contents
- [Linux ](#linux )
- [Fonts showing up as rectangles ](#linux-fonts-rectangle )
- [Global menu workaround for KDE ](#linux-kde-global-menu )
2024-02-23 00:53:34 +03:00
- [Flatpak most common issues ](#linux-flatpak-most-common-issues )
2024-07-22 17:07:57 +03:00
- [Remote SSH doesn't work ](#linux-remote-ssh )
2023-11-02 11:36:13 +03:00
- [macOS ](#macos )
- [App can't be opened because Apple cannot check it for malicious software ](#macos-unidentified-developer )
- ["VSCodium.app" is damaged and can’ t be opened. You should move it to the Bin ](#macos-quarantine )
## <a id="linux"></a>Linux
#### <a id="linux-fonts-rectangle"></a>*Fonts showing up as rectangles*
The following command should help:
```
rm -rf ~/.cache/fontconfig
rm -rf ~/snap/codium/common/.cache
fc-cache -r
```
#### <a id="linux-kde-global-menu"></a>*Global menu workaround for KDE*
Install these packages on Fedora:
* libdbusmenu-devel
* dbus-glib-devel
* libdbusmenu
2023-11-07 21:20:49 +03:00
On Ubuntu this package is called `libdbusmenu-glib4` .
2023-11-02 11:36:13 +03:00
Credits: [Gerson ](https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/issues/91 )
2024-02-23 00:53:34 +03:00
#### <a id="linux-flatpak-most-common-issues"></a>*Flatpak most common issues*
- blurry screen with HiDPI on wayland run:
```bash
flatpak override --user --nosocket=wayland com.vscodium.codium
```
- To execute commands on the host system, run inside the sandbox
```bash
flatpak-spawn --host < COMMAND >
# or
host-spawn < COMMAND >
```
- Where is my X extension? AKA modify product.json
TL;DR: use https://open-vsx.org/extension/zokugun/vsix-manager
- SDKs
see [this ](https://github.com/flathub/com.vscodium.codium?tab=readme-ov-file#sdks )
- If you have any other problems with the flatpak package try to look on the [FAQ ](https://github.com/flathub/com.vscodium.codium?tab=readme-ov-file#faq ) maybe the solution is already there or open an [issue ](https://github.com/flathub/com.vscodium.codium/issues ).
2024-07-22 17:07:57 +03:00
##### <a id="linux-remote-ssh"></a>*Remote SSH doesn't work*
Use the VSCodium's compatible extension [Open Remote - SSH ](https://open-vsx.org/extension/jeanp413/open-remote-ssh ).
On the server, in the `sshd` config, `AllowTcpForwarding` need to be set to `yes` .
It might requires additional dependeincies due to the OS/distro (alpine).
2023-11-02 11:36:13 +03:00
## <a id="macos"></a>macOS
2023-11-07 21:20:49 +03:00
Since the App is signed with a self-signed certificate, on the first launch, you might see the following messages:
2023-11-02 11:36:13 +03:00
#### <a id="macos-unidentified-developer"></a>*App can't be opened because Apple cannot check it for malicious software*
You can right-click the App and choose `Open` .
#### <a id="macos-quarantine"></a>*"VSCodium.app" is damaged and can’ t be opened. You should move it to the Bin.*
The following command will remove the quarantine attribute.
```
xattr -r -d com.apple.quarantine /Applications/VSCodium.app
```