We've all done this at some point, you work on the wrong shell window and this was my first time making this mistake but I deleted a partition table in fdisk, recreated it and saved it with "wq" and even ran partprobe! If you haven't rebooted yet then you can still recover your partition table, otherwise you're in big trouble.
Fortunately since it was a live system and in use the kernel still had to use the old table like below:
Warning: WARNING: the kernel failed to re-read the partition table on /dev/sda (Device or resource busy). As a result, it may not reflect all of your changes until after reboot.
Warning: Error fsyncing/closing /dev/md127: Input/output error
Warning: Error fsyncing/closing /dev/md126: Input/output error
Warning: Error fsyncing/closing /dev/md125: Input/output error
Other places on the internet don't properly explain the procedure for recovery which can be done but you need the right side of instructions and info.
Step 1 -Find your device directory in /sys/block/sda/sda1 (change the /sda and /sda1 to match your disk device name and partition number).
You have to do a cat on the 'start' and 'size' which represents the starting sector of the partition and the 'size' represents how many sectors it is.
#take the size value and subtract 1 from it or you will not get the original or correct result
fdisk /dev/sda
#press u to change to sectors which is what /sys/block/sda goes by
/sys/block/sda
[root@server1 sda]# cat sda1/start
2048
[root@server1 sda]# cat sda1/size
1024000
[root@server1 sda]# cat sda2/start
1026048
[root@server1 sda]# cat sda2/size
1464121344
Step 2 -Use fdisk to take the above sector information and input it (remembering to subtract 1 from the size when telling fdisk the end sector)
"Press u" to switch to sector mode once you run:
fdisk /dev/sda
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First sector (63-1465149167, default 63): 2048
Last sector, +sectors or +size{K,M,G} (2048-1465149167, default 1465149167): +1023999
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 2
First sector (63-1465149167, default 63): 1026048
Last sector, +sectors or +size{K,M,G} (1026048-1465149167, default 1465149167): +1464121343
##########
and for those who do a normal fdisk -l /dev/sda and wonder why you can't duplicate the cylinder setup is because you need to press "u" and deal with sectors.
Using sectors shows that you can actually end and start a partition on the same cylinder and in other ways cylinders will not work for:
Device Boot Start End Blocks Id System
/dev/sda1 1 64 512000 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 64 91202 732060672 83 Linux
###########
linux, partition, kernel, restore, centos, debian, etc, ve, shell, deleted, fdisk, recreated, quot, wq, partprobe, haven, rebooted, fortunately, dev, sda, resource, reflect, reboot, fsyncing, md, input, output, info, directory, sys, disk, represents, sector, sectors, subtract, server, mode, extended, primary, default, duplicate, cylinder, cylinders, boundary,