FreeBSD 9.x
I have two questions:
If I am using a single disk as a storage disk do I need to set up partitions on it?
[ii] I have a disk that I cannot mount - [NOT a system drive]
#
:#
Seems as if the whole disk sector 63-156344517 is seen as a boot sector, strange! as this contained data before. How can I recover this, should I just do a dd() and lay down a newfs()?
Now
#
#
Of course
#
and
#
fails too as expected.
Any Suggestions?
I have two questions:
If I am using a single disk as a storage disk do I need to set up partitions on it?
[ii] I have a disk that I cannot mount - [NOT a system drive]
#
gpart show /dev/ada4
Code:
=> 63 156355521 ada4 MBR (74G)
63 156344517 1 freebsd [active] (74G)
156344580 11004 - free - (5.4M)
:#
file -s /dev/ada4
Code:
/dev/ada4: x86 boot sector; partition 1: ID=0xa5, active, starthead 1, startsector 63, 156344517 sectors, code offset 0x31
Now
#
ls /dev/ada4*
Code:
/dev/ada4 /dev/ada4s1
#
file -s /dev/ada4s1
Code:
/dev/ada4s1: data
Of course
#
mount -v /dev/ada4 /disktmp
Code:
mount: /dev/ada4 : Invalid argument
and
#
mount -v /dev/ada4s1 /disktmp
Code:
mount: /dev/ada4s1 : Invalid argument
Any Suggestions?