Last active
January 27, 2026 18:59
-
-
Save afspies/b23754aa37e30319c0a817cbb9dbd58a to your computer and use it in GitHub Desktop.
Clawdbot on Linux Machine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1 - Create new user from root | |
| useradd -m -s /bin/bash dev | |
| passwd dev | |
| usermod -aG sudo dev | |
| # 2- Install brew - needed for clawdbot plugins | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # Install deps needed for later skill installed (THIS STEP IS ANNOYING) | |
| brew install node | |
| brew install unzip | |
| # 3 Install claude and get auth code | |
| curl -fsSL https://claude.ai/install.sh | bash | |
| # Get claude auth key | |
| claude setup-token | |
| # Run the setup | |
| # Remote access | |
| clawdbot configure --section web |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment