16. Used GPU Buying Guide
Chapter 16 of 20 · 20 min
Used GPUs offer significant savings but require careful evaluation to avoid defective or mining-degraded units.
Price Comparison
| GPU | New Price | Used (Good) | Used (Fair) | Savings |
|---|---|---|---|---|
| RTX 3060 12GB | $350 | $200-280 | $150-200 | 30-40% |
| RTX 3080 10GB | $700 | $400-550 | $300-400 | 35-45% |
| RTX 3090 24GB | $1200 | $650-900 | $500-650 | 40-50% |
| RTX 4090 24GB | $1700 | $1500-1650 | $1200-1500 | 10-20% |
Higher-end cards retain value better due to lower refresh rate among used inventory.
Mining vs. Gaming Usage
mining stress differs from gaming:
- Continuous high load: 24/7 operation at 80-100% TDP
- Memory stress: Ethash/DaggerHashimoto heavily stress VRAM
- Fan wear: Constant operation at high RPM
- Thermal cycling: Daily on/off vs. gaming sessions
Warning signs for mining cards:
- Fan noise at idle (bearings worn from constant use)
- Discoloration near power connectors
- Solders joints examination (thermocycling damage)
- NVResistor or memory module heat discoloration
Verification Testing
# 1. Basic diagnostic
nvidia-smi
# Verify correct model and VRAM reported
# 2. Memory stress test
python3 -c "
import torch
import numpy as np
torch.cuda.init()
for i in range(100):
# Memory-intensive pattern
a = torch.randn(8192, 8192, device='cuda', dtype=torch.float16)
b = torch.randn(8192, 8192, device='cuda', dtype=torch.float16)
c = (a @ b).cpu()
print(f'Test {i+1}/100', end='\r')
"
# Watch for errors (red) or crashes
# 3. Long-duration thermal test
watch -n 5 nvidia-smi -q -d temperature,power.draw,utilization.gpu
# Run for 30+ minutes, temperatures should stabilize
Marketplace Recommendations
| Platform | Pros | Cons |
|---|---|---|
| eBay | buyer Protection | Variable listing quality |
| Facebook Marketplace | Local pickup | Limited recourse |
| r/hardwareswap | Community trust | PayPal disputes |
| B-Stock (NVIDIA) | Warranty intact | Limited availability |
Purchase protection is essential. Never pay cash; use PayPal, credit card, or platform escrow.
Refurbished from OEMs
NVIDIA partners and system builders sell refurbished units:
- Dell Refurbished: 1-year warranty
- Lenovo Outlet: Variable warranty
- Newegg certified: 90-day coverage
These typically have better support than random used purchases.
EXERCISE
Research three used RTX 3080 listings on eBay. Evaluate each against the mining-usage checklist and rank them by recommended purchase priority.