Linux How To Recover Partition Table from Kernel and Restore Centos/Debian etc..

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




###########


Tags:

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,

Latest Articles

  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution
  • Ubuntu Linux Mint Debian Redhat Youtube Cannot Play HD or 4K videos, dropped frames or high CPU usage with Nvidia or AMD Driver
  • hostapd example configuration for high speed AC on 5GHz using WPA2
  • hostapd how to enable and use WPS to connect wireless devices like printers
  • Dell Server Workstation iDRAC Dead after Firmware Update Solution R720, R320, R730
  • Cloned VM/Server/Computer in Linux won't boot and goes to initramfs busybox Solution
  • How To Add Windows 7 8 10 11 to GRUB Boot List Dual Booting
  • How to configure OpenDKIM on Linux with Postfix and setup bind zonefile
  • Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial
  • efibootmgr: option requires an argument -- 'd' efibootmgr version 15 grub-install.real: error: efibootmgr failed to register the boot entry: Operation not permitted.
  • Apache Error Won't start SSL Cert Issue Solution Unable to configure verify locations for client authentication SSL Library Error: 151441510 error:0906D066:PEM routines:PEM_read_bio:bad end line SSL Library Error: 185090057 error:0B084009:x509 certif
  • Linux Debian Mint Ubuntu Bridge br0 gets random IP
  • redis requirements
  • How to kill a docker swarm
  • docker swarm silly issues
  • isc-dhcp-server dhcpd how to get longer lease
  • nvidia cannot resume from sleep Comm: nvidia-sleep.sh Tainted: Linux Ubuntu Mint Debian
  • zfs and LUKS how to recover in Linux
  • [error] (28)No space left on device: Cannot create SSLMutex Apache Solution Linux CentOS Ubuntu Debian Mint