zerotier_Kali_install_issue

while installing zerotier on latest kali , i am getting stuck at Waiting for id generation.
Is this a common issue or something I’m doing wrong.

I have the same issue. So far I’ve been able to figure out that the current kali is based on debian testing which is bookworm, not buster. So there’s one issue. but even after that my install hangs at identity generation. If I exit the install at that point, running zerotier-cli fails

zerotier-cli: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory

So far have not found a solution.

Got it working. Had to install libssl1.1.
Recap: Running linux script on Kali does not work. Script defaults to bullseye distribution, but kali is based on testing which is currently bookworm.

  1. install libssl1.1
    sudo apt install libssl1.1
  2. Fool script into using bookworm, got script from here but edited it slightly.
# save /etc/debian-version
# (which will be something like kali-rolling)
DV_SAVE=$(cat /etc/debian_version)
# pretend we're Debian buster
echo testing | sudo tee /etc/debian_version >/dev/null
# follow ZeroTier install instructions from:
# https://www.zerotier.com/download/
# for example, if you don't care about checking gpg signatures:
curl -s https://install.zerotier.com | sudo bash
# restore /etc/debian-version
echo $DV_SAVE | sudo tee /etc/debian_version >/dev/null
  1. Use zerotier-cli to join network.
1 Like

@jpmiller25 Thank you so much for this simple and elegant solution. It works like a charm now!!!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.