-
Notifications
You must be signed in to change notification settings - Fork 54
Tuxcut not starting after reboot #24
Comments
Having the same issue. Is there any alternative or any fix coming up ? |
Try running |
that doesn't help @danruiyot |
same problem after reboot (tuxcut:3127): GLib-GIO-ERROR **: 13:31:18.231: Settings schema 'org.gnome.settings-daemon.plugins.xsettings' does not contain a key named 'antialiasing' |
|
Hello I have recently had problems running tuxcut on Kali Linux. Well I have a good solution for you. I found the solution for why Tuxcut will not open, atleast if you are running Tuxcut in Kali Linux but give it a try. Run the following command in your terminal: systemctl disable --now tuxcutd.service && systemctl enable --now tuxcutd.service Then separately run the command: tuxcut If you wanna automate the process after reboot do the following:
sudo nano /usr/local/bin/tuxcut-restart.sh
#!/bin/bash
systemctl disable --now tuxcutd.service
systemctl enable --now tuxcutd.service
sudo chmod 755 /usr/local/bin/tuxcut-restart.sh
sudo nano /etc/systemd/system/tuxcut-restart.service
[Unit]
Description=Run Tuxcut Restart Script at Boot
After=network-online.target
Wants=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/local/bin/tuxcut-restart.sh
RemainAfterExit=true
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl enable tuxcut-restart.service |
After I reboot my computer, Tuxcut takes Very long to start and I don't see any hosts, I have already enabled tuxcutd.service but tuxcut only works after
systemctl restart tuxcutd
, here is my error before restarting tuxcutd:(tuxcut:2904): Gtk-WARNING **: 08:15:17.858: Could not load a pixbuf from icon theme. This may indicate that pixbuf loaders or the mime database could not be found. ** Gtk:ERROR:../../../../gtk/gtkiconhelper.c:494:ensure_surface_for_gicon: assertion failed (error == NULL): Failed to load /usr/share/icons/Flat-Remix-Blue-Dark/status/scalable/512/image-missing.svg: Unable to load image-loading module: /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: /lib/x86_64-linux-gnu/librsvg-2.so.2: undefined symbol: cairo_font_options_get_variations (gdk-pixbuf-error-quark, 5) /usr/bin/tuxcut: line 2: 2903 Aborted /opt/tuxcut/tuxcut
My system is Kali Linux 2020.3
The text was updated successfully, but these errors were encountered: