Q. How Do I Create a New ext3 File System If a Disk Was Added To The Server / Desktop Under Any Linux Operating Systems?
A.First, create the partition using the fdisk command line utility. To start fdisk, type the following command at a shell prompt. You need a device name refers to the entire hard disk.:
# fdisk /dev/device-name
# fdisk /dev/sdb
Where /dev/sdb is the device name for the drive you want to configure and format with a new ext3 filesystem.
The Command (m for help): prompt is displayed as follows:
(m for help):
Type n then p, to create a new (n) primary (p) partition. You will then be asked to enter a partition number 1-4. You can only have a total of 4 primary partitions. If you need more than 4 partitions, then your 4th partition will become your extended partition. You will then enter the size of the partition that you want to create. The easiest way to do this is to select the defaulted start cylinder, then issue a size based on MB. Example: +10000MB to create a 10 GB partition.
Format hard disk
To format the partition with the ext3 file system use mke2fs command.
# mke2fs -j /path/to/partition
# mke2fs -j /dev/sdb1
Where /dev/sdb1 is the partition you want to format. If mke2fs does not recognize your partition, then you must reboot your system or run this command so that the new partition table is recognized.
Update /etc/fstab
Create a mount point:
# mkdir /disk2
Edit the /etc/fstab to include the new partition
# vi /etc/fstab
Append the new line as follows:
/dev/sdb1 /disk2 ext3 defaults 1 2
To mount, enter:
# mount -a
# df -H
🐧 5 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
finally I was able to add a new drive very good instruction-God bless you
When I try to format the partition, It shows me “/dev/sda4 is mounted; will not make a filesystem here! ”
Any suggestion??
Thanks
nice post, thanks
crfs -v jfs2 -d /dev/$2 -m $3 -a yes -p’rw’
$3 – Size
$2 -VG
The above is in AIX….I am in need of equivalent unix code.. can any one help me??
9 years later – still short, simple and helpful.
Thanks a lot!