Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Tuxcut not starting after reboot #24

Open
maxicarlos08 opened this issue Nov 7, 2020 · 6 comments
Open

Tuxcut not starting after reboot #24

maxicarlos08 opened this issue Nov 7, 2020 · 6 comments

Comments

@maxicarlos08
Copy link

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

@FrenchGithubUser
Copy link

Having the same issue. Is there any alternative or any fix coming up ?

@zyryc
Copy link

zyryc commented Dec 17, 2020

Try running
tuxcut

@ghost
Copy link

ghost commented May 26, 2021

that doesn't help @danruiyot

@molitona
Copy link

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'
/usr/bin/tuxcut: line 2: 3126 Trace/breakpoint trap (core dumped) /opt/tuxcut/tuxcut

@molitona
Copy link

  • ARP scanning not reliable at all !! (Not all devices appears)

@raminsamadi123
Copy link

raminsamadi123 commented Sep 2, 2024

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:

  1. Edit the script:
sudo nano /usr/local/bin/tuxcut-restart.sh
  1. Update the script content:
#!/bin/bash
systemctl disable --now tuxcutd.service
systemctl enable --now tuxcutd.service
  1. Make sure the script is executable:
sudo chmod 755 /usr/local/bin/tuxcut-restart.sh
  1. Edit the systemd service file:
sudo nano /etc/systemd/system/tuxcut-restart.service
  1. Paste this:
[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
  1. Reload systemd and enable the service:
sudo systemctl daemon-reload
sudo systemctl enable tuxcut-restart.service

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants