Skip to content

Instantly share code, notes, and snippets.

View srimaln91's full-sized avatar
🎯
Focusing

Srimal Nishantha srimaln91

🎯
Focusing
View GitHub Profile
@srimaln91
srimaln91 / rocksdb-install.sh
Last active January 23, 2024 13:29
Install RocksDB on Ubuntu 20.04 (Focal Fossa)
#!/bin/bash
ROCKSDB_VERSION=5.11.3
#Run as a root user
if [ "$EUID" -ne 0 ]
then echo "Please run as root (with sudo command)"
exit
fi