1️⃣ Log in to the OCI Console:
Head to the OCI Console.
2️⃣ Navigate to Block Volumes:
In the navigation menu, go to Storage > Block Storage > Block Volumes.
3️⃣ Create the Block Volume:
additional-storage
).1️⃣ Locate Your Compute Instance:
2️⃣ Attach the Block Volume:
1️⃣ Log in to the Instance:
2️⃣ Identify the New Volume:
lsblk
The new volume will appear (e.g., /dev/sdb
).3️⃣ Partition and Format the Volume:
sudo fdisk /dev/sdb
sudo mkfs.ext4 /dev/sdb
4️⃣ Mount the Volume:
sudo mkdir /mnt/additional-storage
sudo mount /dev/sdb /mnt/additional-storage
5️⃣ Optional: Automate Mounting at Boot:
/etc/fstab
for automatic mounting:
echo '/dev/sdb /mnt/additional-storage ext4 defaults 0 0' | sudo tee -a /etc/fstab
Congratulations! 🎉 You’ve successfully added 200 GB of additional storage to your OCI instance. The storage is now ready to use for your applications and data.
💡 Need help? Drop your questions below, and I’ll be happy to assist!
📢
#CloudComputing 🌩️ #OracleCloud ☁️ #TechHowTo 💻 #BlockStorage #ServerManagement #CloudInfrastructure