Remmina - The GTK+ Remote Desktop Client  v1.4.33
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Snap-Crashing.md
Go to the documentation of this file.
1 # Unrecognized image format
2 
3 If you get errors like:
4 
5 ```
6 Gtk:ERROR:../src/gtk/gtkiconhelper.c:494:ensure_surface_for_gicon: assertion failed (error == NULL): Failed to load /snap/remmina/x1/share/icons/Adwaita/16x16/status/image-missing.png: Unrecognized image file format (gdk-pixbuf-error-quark, 3)
7 Bail out! Gtk:ERROR:../src/gtk/gtkiconhelper.c:494:ensure_surface_for_gicon: assertion failed (error == NULL): Failed to load /snap/remmina/x1/share/icons/Adwaita/16x16/status/image-missing.png: Unrecognized image file format (gdk-pixbuf-error-quark, 3)
8 [1] 1942628 abort (core dumped) G_MESSAGES_PREFIXED=all G_MESSAGES_DEBUG=all snap run remmina
9 ```
10 
11 Run this command
12 
13 ```
14 sudo update-mime-database /usr/share/mime
15 ```
16 
17 # Saving crash Remmina
18 
19 Sometimes is an AppArmor issue that can be solved with:
20 
21 ```
22 sudo dpkg-reconfigure apparmor
23 ```
24 
25 Sometimes you need to remove and install again Remmina (the hard way)
26 
27 ```
28 # Backup your .remmina and remmina.pref files under /home/<username>/snap/remmina, after
29 sudo snap remove remmina
30 # reboot (sadly)
31 sudo snap install remmina
32 # restore your profiles and Remmina preferences
33 ```
34 
35 # Cannot connect to Windows server
36 
37 Often is because the installed `ffmpeg` doesn't contain required codecs.
38 
39 Running Remmina in [debug mode](https://gitlab.com/Remmina/Remmina/-/wikis/Usage/Remmina-debugging) will show these errors:
40 
41 ```
42 [17:04:30:233] [9:90] [ERROR][com.freerdp.codec] - Failed to initialize libav parser
43 [17:04:30:233] [9:90] [ERROR][com.freerdp.core.codecs] - Failed to create h264 codec context
44 ```
45 
46 That you can solve with:
47 
48 ```
49 flatp install org.freedesktop.Platform.ffmpeg-full -y
50 ```
51