"Raw. Local. Unfiltered."
USBunny is your locally-sourced, farm-to-USB AI experience. 🥕 Plug in your USB 3.0+ drive, right-click start-(your_OS), and hop to it with "Run as Administrator." Choose your model and enjoy private, uncensored AI... on a stick. Bonus: Windows admin repair tool included for when your warren needs maintenance.
- 🔒 Your Data, Your Rules — Models and conversations stay on your drive. No cloud harvesting, ever.
- 🚫 Truly Uncensored — No corporate filters. Pure, unfiltered compute for any narrative.
- 🖥️ Works Everywhere — Windows, Mac, Linux. High-end rig or modest laptop—it adapts.
- 🎉 Enjoy the Ride — Life's short. Have fun, don't take it all so seriously.
The easiest way to get started:
- Download the USBunny zip to a USB 3.0+ drive (16GB+ free space)
- Open the drive folder
- Right-click
start-(your_OS)and Run as Administrator
USBunny will automatically detect your hardware and select the best model for your machine.
Linux users: Run the setup script instead:
chmod +x setup_ollama.sh && ./setup_ollama.sh
Windows/macOS/Linux:
curl -fsSL https://ollama.com/install.sh | sh
ollama serveThen pull and run a model:
# For a balanced, uncensored experience
ollama pull everythinglm
ollama run everythinglm
# Or try these popular uncensored models
ollama pull UncensoredAi/diddy
ollama run UncensoredAi/diddy
# Swap in any model you like
ollama run llama2-uncensored
ollama run mistral
ollama run phiPro Tip:
ollama signinfirst to access private model registries. GPU Support: Ollama automatically uses NVIDIA GPUs if available.
Perfect for keeping your system clean:
# Install Docker (Linux example)
sudo apt update && sudo apt install -y docker.io
sudo systemctl enable --now docker
sudo usermod -aG docker $USER && newgrp docker
# Run Ollama container
docker run -d --gpus all -v ollama_data:/root/.ollama -p 11434:11434 ollama/ollamaFlags Explained:
--gpus all— Enable GPU acceleration (remove if no GPU)-v ollama_data:/root/.ollama— Persist models on your machine-p 11434:11434— Expose Ollama's API port
To use models in the container:
docker exec -it $(docker ps -q) ollama pull llama2
docker exec -it $(docker ps -q) ollama run llama2For full control over models and quantization:
# Install dependencies
sudo apt update && sudo apt install -y git cmake build-essential
# Clone and build
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
make # Add LLAMA_CUBLAS=1 for NVIDIA GPU
# Download and run a model
wget https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGML/resolve/main/llama-2-7b-chat.ggmlv3.q4_0.bin -O model.bin
./main -m model.bin -n 512 --repeat_penalty 1.0 -p "Your prompt here"No GPU? Check out BitNet.cpp for CPU-optimized inference.
USBunny automatically selects the best model for your hardware. Here's what you can run:
| RAM | Max Parameters (4-bit) | Recommended Models |
|---|---|---|
| 0–4 GB | < 1B | Phi-2, Qwen-0.5B, TinyLlama |
| 8 GB | 3B | Llama 3.2 3B, Phi-3.5 Mini |
| 16 GB | 8B | Llama 3.1 8B, Mistral 7B |
| 24 GB | 14B | Qwen 2.5 14B, Mistral NeMo 12B |
| 32 GB | 27B–32B | Gemma 2 27B, Qwen 2.5 32B |
| 48 GB | 40B–50B | Mixtral 8x7B, Command R 35B |
| 64 GB+ | 70B+ | Llama 3.3 70B, Qwen 2.5 72B |
We've included a comprehensive PowerShell diagnosis and repair script for Windows users. It's been thoroughly tested and works like a charm.
⚠️ Important: Right-click and Run as Administrator for full functionality.
This script was originally created for a RedPanda friend—now it's here to serve you too!
💥 Out of Memory? Use a smaller model, or add swap space:
- Linux:
sudo fallocate -l 8G /swapfile && sudo chmod 600 /swapfile sudo mkswap /swapfile && sudo swapon /swapfile
- Windows: Create a page file in System Properties > Advanced > Performance Settings > Advanced > Virtual Memory
- macOS: Use Disk Utility to create a swap partition
🖥️ GPU Not Detected? Install the latest drivers for your GPU:
- Linux:
sudo ubuntu-drivers autoinstall && sudo reboot - Windows: Download from NVIDIA or AMD
- macOS: Use Apple's built-in Metal support (M1/M2 chips work great!)
🐢 Slow Performance?
- Try a smaller model
- Enable GPU acceleration
- Close other memory-intensive applications
Your conversation stays on your machine. But if you need help:
- Check the GitHub Issues
- Join the discussion in GitHub Discussions
USBunny embodies a simple belief: AI should be accessible, private, and free from arbitrary restrictions.
In a world of walled gardens and data harvesting, we offer a different path—one where you control your compute, your data, and your experience.
So plug in, fire it up, and enjoy the freedom of truly local AI.
Your mind, your machine, your rules.