🖥 How to Format and Mount a New 1TB HDD to /var/www/recordings
on Linux
If you’ve added a new HDD to your Linux server and want to use it as a dedicated storage location — for example, to store Asterisk or web server recordings — you’ll need to partition, format, mount, and configure it to auto-mount at boot.
In this guide, we’ll walk through the process of wiping the drive (careful — data will be lost!), creating a single ext4 partition, and mounting it permanently.
Step 1: Identify Your New Disk
Run:
Example output:
In our case, /dev/sda
is the new 1TB disk.
⚠ Warning: Double-check you’ve picked the right disk! Formatting the wrong one will destroy data.
Step 2: Unmount Any Mounted Partitions
Step 3: Wipe Old Partitions and Create One Big Partition
Use fdisk
:
Inside fdisk
:
Step 4: Format as ext4
Step 5: Create Mount Point
Step 6: Mount the Partition
Step 7: Set Permissions for Your Web Server
Depending on your distro:
Step 8: Make It Permanent in /etc/fstab
Find the UUID:
Example:
Edit fstab:
Add:
Save and test:
Comments
Post a Comment