Skip to content

Instantly share code, notes, and snippets.

@xpepper
Created January 27, 2025 21:40
Show Gist options
  • Save xpepper/ed07a762d5dcd769cb265ff9281fba8a to your computer and use it in GitHub Desktop.
Save xpepper/ed07a762d5dcd769cb265ff9281fba8a to your computer and use it in GitHub Desktop.
Kill all Rancher Desktop leftover to be able to use again Warp client :D
#!/bin/bash
# Find all processes matching 'socket_vmnet' and kill them
ps auxwww | grep -i socket_vmnet | grep -v grep | awk '{print $2}' | xargs sudo kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment