On Wed, Sep 08, 1999 at 01:46:18PM -0400, David Gilbert wrote:
> So... I lost my partition table.  I'm willing to spend a little time
> on this.  Is there a byte sequence that I might recognise in a
> superblock or at the start of a partition?  I know this isn't an easy
> task, but man 5 fs leads me to believe that I might find:
> 
>      #define FS_MAGIC        0x011954   /* the fast filesystem magic number */
>      #define FS_OKAY         0x7c269d38 /* superblock checksum */
> 
> ... but I don't see those bytes.  Any hints?
> 
> I'm willing to post a description of a solution for the FAQ if I can
> find the filesystems.
> 
> Dave.

It's better to find a whole disklabel.

According to the disklabel(5):
#define DISKMAGIC       ((u_long) 0x82564557)   /* The disk magic number */

My disk is set in dedicated mode, so:
# dd if=/dev/da0c bs=1 skip=1b count=4 | hd
4+0 records in
4+0 records out
4 bytes transferred in 0.022311 secs (179 bytes/sec)
00000000  57 45 56 82                                       |WEV‚|
00000004


HTH,
-- 
Ruslan Ermilov          Sysadmin and DBA of the
[EMAIL PROTECTED]        United Commercial Bank,
[EMAIL PROTECTED]          FreeBSD committer,
+380.652.247.647        Simferopol, Ukraine

http://www.FreeBSD.org  The Power To Serve
http://www.oracle.com   Enabling The Information Age


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to