Discussion:
Unable to access GPT disk partitions - No such file or directory
(too old to reply)
Guy Helmer
2023-09-13 13:02:10 UTC
Permalink
Hi, looking for some advice to get some data back.

I've had a FreeBSD 13 system (upgraded over the years from several previous versions) on a VMware ESXi server suddenly loose access to its UFS filesystems.

I cloned the disk image in the VMware server and have attached it to another FreeBSD 13 virtual machine to try to recover access to the data (I have old backups on a separate ZFS filesystem, but I'd sure like to recover the current filesystem). There are no kernel messages about problems with the virtual disk other than the expected boot messages:

da2 at mpt0 bus 0 scbus2 target 2 lun 0
da2: <VMware Virtual disk 1.0> Fixed Direct Access SCSI-2 device
da2: 320.000MB/s transfers (160.000MHz, offset 127, 16bit)
da2: Command Queueing enabled
da2: 81920MB (167772160 512 byte sectors)
da2: quirks=0x140<RETRY_BUSY,STRICT_UNMAP>

gpart shows its info:

$ sudo gpart list da2
Geom name: da2
modified: false
state: OK
fwheads: 255
fwsectors: 63
last: 167772126
first: 34
entries: 128
scheme: GPT
Providers:
1. Name: da2p1
Mediasize: 262144 (256K)
Sectorsize: 512
Stripesize: 0
Stripeoffset: 20480
Mode: r0w0e0
efimedia: HD(1,GPT,76c936da-f200-11e4-b749-000c29d7feb4,0x28,0x200)
rawuuid: 76c936da-f200-11e4-b749-000c29d7feb4
rawtype: 83bd6b9d-7f41-11dc-be0b-001560b84f0f
label: gpboot1
length: 262144
offset: 20480
type: freebsd-boot
index: 1
end: 551
start: 40
2. Name: da2p2
Mediasize: 4294967296 (4.0G)
Sectorsize: 512
Stripesize: 0
Stripeoffset: 1048576
Mode: r0w0e0
efimedia: HD(2,GPT,954100b0-f200-11e4-b749-000c29d7feb4,0x800,0x800000)
rawuuid: 954100b0-f200-11e4-b749-000c29d7feb4
rawtype: 516e7cb6-6ecf-11d6-8ff8-00022d09712b
label: gprootfs1
length: 4294967296
offset: 1048576
type: freebsd-ufs
index: 2
end: 8390655
start: 2048
3. Name: da2p3
Mediasize: 4294967296 (4.0G)
Sectorsize: 512
Stripesize: 0
Stripeoffset: 1048576
Mode: r0w0e0
efimedia: HD(3,GPT,a2ed8c2e-f200-11e4-b749-000c29d7feb4,0x800800,0x800000)
rawuuid: a2ed8c2e-f200-11e4-b749-000c29d7feb4
rawtype: 516e7cb5-6ecf-11d6-8ff8-00022d09712b
label: gpswap1
length: 4294967296
offset: 4296015872
type: freebsd-swap
index: 3
end: 16779263
start: 8390656
4. Name: da2p4
Mediasize: 77308345856 (72G)
Sectorsize: 512
Stripesize: 0
Stripeoffset: 1048576
Mode: r0w0e0
efimedia: HD(4,GPT,a84afad7-f200-11e4-b749-000c29d7feb4,0x1000800,0x8fff7df)
rawuuid: a84afad7-f200-11e4-b749-000c29d7feb4
rawtype: 516e7cb6-6ecf-11d6-8ff8-00022d09712b
label: gpusrfs1
length: 77308345856
offset: 8590983168
type: freebsd-ufs
index: 4
end: 167772126
start: 16779264
Consumers:
1. Name: da2
Mediasize: 85899345920 (80G)
Sectorsize: 512
Mode: r0w0e0

The /dev entries look OK to me:
$ ls -l /dev/da2*
crw-r----- 1 root operator 0x66 Sep 13 14:01 /dev/da2
crw-r----- 1 root operator 0x6c Sep 13 14:01 /dev/da2p1
crw-r----- 1 root operator 0x6d Sep 13 14:01 /dev/da2p2
crw-r----- 1 root operator 0x6e Sep 13 14:01 /dev/da2p3
crw-r----- 1 root operator 0x6f Sep 13 14:01 /dev/da2p4
$ ls -l /dev/gpt/
total 0
crw-r----- 1 root operator 0x75 Sep 13 14:01 gpboot1
crw-r----- 1 root operator 0x77 Sep 13 14:01 gprootfs1
crw-r----- 1 root operator 0x79 Sep 13 14:01 gpswap1
crw-r----- 1 root operator 0x7b Sep 13 14:01 gpusrfs1

However, any attempt to access the /dev entries fails with "No such file or directory":

$ sudo fsck /dev/da2p2
Can't open /dev/da2p2: No such file or directory
$ sudo fsck /dev/da2p4
Can't open /dev/da2p4: No such file or directory
$ sudo fsck /dev/gpt/gprootfs1
Can't open /dev/gpt/gprootfs1: No such file or directory
$ sudo fsck /dev/gpt/gpusrfs1
Can't open /dev/gpt/gpusrfs1: No such file or directory

I've never had an issue like this before and I can't find anything using Google searches that resolves access to these disk devices. Any ideas?

Thanks,
Guy Helmer, Ph.D.
Eugene Grosbein
2023-09-13 13:35:15 UTC
Permalink
Post by Guy Helmer
$ sudo fsck /dev/da2p2
Can't open /dev/da2p2: No such file or directory
$ sudo fsck /dev/da2p4
Can't open /dev/da2p4: No such file or directory
$ sudo fsck /dev/gpt/gprootfs1
Can't open /dev/gpt/gprootfs1: No such file or directory
$ sudo fsck /dev/gpt/gpusrfs1
Can't open /dev/gpt/gpusrfs1: No such file or directory
I've never had an issue like this before and I can't find anything using Google searches that resolves access to these disk devices. Any ideas?
dmesg -a
glabel status




--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Guy Helmer
2023-09-13 18:52:57 UTC
Permalink
Post by Eugene Grosbein
Post by Guy Helmer
$ sudo fsck /dev/da2p2
Can't open /dev/da2p2: No such file or directory
$ sudo fsck /dev/da2p4
Can't open /dev/da2p4: No such file or directory
$ sudo fsck /dev/gpt/gprootfs1
Can't open /dev/gpt/gprootfs1: No such file or directory
$ sudo fsck /dev/gpt/gpusrfs1
Can't open /dev/gpt/gpusrfs1: No such file or directory
I've never had an issue like this before and I can't find anything using Google searches that resolves access to these disk devices. Any ideas?
dmesg -a
glabel status
Hi, Eugene, thanks for inquiring. Appreciate any assistance!

dmesg -a:

$ dmesg -a
---<<BOOT>>---
Copyright (c) 1992-2019 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 12.0-STABLE r348375 GENERIC amd64
FreeBSD clang version 8.0.0 (tags/RELEASE_800/final 356365) (based on LLVM 8.0.0)
VT(vga): text 80x25
CPU: Intel(R) Xeon(R) W-2123 CPU @ 3.60GHz (3600.00-MHz K8-class CPU)
Origin="GenuineIntel" Id=0x50654 Family=0x6 Model=0x55 Stepping=4
Features=0x1f83fbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE,SSE2,SS,HTT>
Features2=0xfefa3203<SSE3,PCLMULQDQ,SSSE3,FMA,CX16,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND,HV>
AMD Features=0x2c100800<SYSCALL,NX,Page1GB,RDTSCP,LM>
AMD Features2=0x101<LAHF,Prefetch>
Structured Extended Features=0x2c1<FSGSBASE,FDPEXC,SMEP,ERMS>
Structured Extended Features3=0xbc000400<MD_CLEAR,IBPB,STIBP,L1DFL,ARCH_CAP,SSBD>
IA32_ARCH_CAPS=0xc<RSBA,SKIP_L1DFL_VME>
TSC: P-state invariant
Hypervisor: Origin = "VMwareVMware"
real memory = 4294967296 (4096 MB)
avail memory = 4099141632 (3909 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: <PTLTD APIC >
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s)
random: unblocking device.
MADT: Forcing active-low polarity and level trigger for SCI
ioapic0 <Version 1.1> irqs 0-23 on motherboard
Launching APs: 1
random: entropy device external interface
kbd1 at kbdmux0
000.000023 [4254] netmap_init netmap: loaded module
[ath_hal] loaded
module_register_init: MOD_LOAD (vesa, 0xffffffff8112d9c0, 0) error 19
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
nexus0
vtvga0: <VT VGA driver> on motherboard
cryptosoft0: <software crypto> on motherboard
acpi0: <INTEL 440BX> on motherboard
acpi0: Power Button (fixed)
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
cpu0: <ACPI CPU> numa-domain 0 on acpi0
attimer0: <AT timer> port 0x40-0x43 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
atrtc0: <AT realtime clock> port 0x70-0x71 irq 8 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pcib1: <ACPI PCI-PCI bridge> at device 1.0 on pci0
pci1: <ACPI PCI bus> on pcib1
isab0: <PCI-ISA bridge> at device 7.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel PIIX4 UDMA33 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1060-0x106f at device 7.1 on pci0
ata0: <ATA channel> at channel 0 on atapci0
ata1: <ATA channel> at channel 1 on atapci0
pci0: <bridge> at device 7.3 (no driver attached)
vgapci0: <VGA-compatible display> port 0x1070-0x107f mem 0xec000000-0xefffffff,0xfe000000-0xfe7fffff irq 16 at device 15.0 on pci0
vgapci0: Boot video device
mpt0: <LSILogic 1030 Ultra4 Adapter> port 0x1400-0x14ff mem 0xfeba0000-0xfebbffff,0xfebc0000-0xfebdffff irq 17 at device 16.0 on pci0
mpt0: MPI Version=1.2.0.0
pcib2: <ACPI PCI-PCI bridge> at device 17.0 on pci0
pci2: <ACPI PCI bus> on pcib2
em0: <Intel(R) PRO/1000 Network Connection> port 0x2000-0x203f mem 0xfd5c0000-0xfd5dffff,0xfdff0000-0xfdffffff irq 18 at device 0.0 on pci2
em0: Using 1024 tx descriptors and 1024 rx descriptors
em0: Ethernet address: 00:0c:29:98:11:54
em0: link state changed to UP
em0: netmap queues/slots: TX 1/1024, RX 1/1024
pcib3: <ACPI PCI-PCI bridge> at device 21.0 on pci0
pcib3: [GIANT-LOCKED]
pcib4: <ACPI PCI-PCI bridge> at device 21.1 on pci0
pcib4: [GIANT-LOCKED]
pcib5: <ACPI PCI-PCI bridge> at device 21.2 on pci0
pcib5: [GIANT-LOCKED]
pcib6: <ACPI PCI-PCI bridge> at device 21.3 on pci0
pcib6: [GIANT-LOCKED]
pcib7: <ACPI PCI-PCI bridge> at device 21.4 on pci0
pcib7: [GIANT-LOCKED]
pcib8: <ACPI PCI-PCI bridge> at device 21.5 on pci0
pcib8: [GIANT-LOCKED]
pcib9: <ACPI PCI-PCI bridge> at device 21.6 on pci0
pcib9: [GIANT-LOCKED]
pcib10: <ACPI PCI-PCI bridge> at device 21.7 on pci0
pcib10: [GIANT-LOCKED]
pcib11: <ACPI PCI-PCI bridge> at device 22.0 on pci0
pcib11: [GIANT-LOCKED]
pcib12: <ACPI PCI-PCI bridge> at device 22.1 on pci0
pcib12: [GIANT-LOCKED]
pcib13: <ACPI PCI-PCI bridge> at device 22.2 on pci0
pcib13: [GIANT-LOCKED]
pcib14: <ACPI PCI-PCI bridge> at device 22.3 on pci0
pcib14: [GIANT-LOCKED]
pcib15: <ACPI PCI-PCI bridge> at device 22.4 on pci0
pcib15: [GIANT-LOCKED]
pcib16: <ACPI PCI-PCI bridge> at device 22.5 on pci0
pcib16: [GIANT-LOCKED]
pcib17: <ACPI PCI-PCI bridge> at device 22.6 on pci0
pcib17: [GIANT-LOCKED]
pcib18: <ACPI PCI-PCI bridge> at device 22.7 on pci0
pcib18: [GIANT-LOCKED]
pcib19: <ACPI PCI-PCI bridge> at device 23.0 on pci0
pcib19: [GIANT-LOCKED]
pcib20: <ACPI PCI-PCI bridge> at device 23.1 on pci0
pcib20: [GIANT-LOCKED]
pcib21: <ACPI PCI-PCI bridge> at device 23.2 on pci0
pcib21: [GIANT-LOCKED]
pcib22: <ACPI PCI-PCI bridge> at device 23.3 on pci0
pcib22: [GIANT-LOCKED]
pcib23: <ACPI PCI-PCI bridge> at device 23.4 on pci0
pcib23: [GIANT-LOCKED]
pcib24: <ACPI PCI-PCI bridge> at device 23.5 on pci0
pcib24: [GIANT-LOCKED]
pcib25: <ACPI PCI-PCI bridge> at device 23.6 on pci0
pcib25: [GIANT-LOCKED]
pcib26: <ACPI PCI-PCI bridge> at device 23.7 on pci0
pcib26: [GIANT-LOCKED]
pcib27: <ACPI PCI-PCI bridge> at device 24.0 on pci0
pcib27: [GIANT-LOCKED]
pcib28: <ACPI PCI-PCI bridge> at device 24.1 on pci0
pcib28: [GIANT-LOCKED]
pcib29: <ACPI PCI-PCI bridge> at device 24.2 on pci0
pcib29: [GIANT-LOCKED]
pcib30: <ACPI PCI-PCI bridge> at device 24.3 on pci0
pcib30: [GIANT-LOCKED]
pcib31: <ACPI PCI-PCI bridge> at device 24.4 on pci0
pcib31: [GIANT-LOCKED]
pcib32: <ACPI PCI-PCI bridge> at device 24.5 on pci0
pcib32: [GIANT-LOCKED]
pcib33: <ACPI PCI-PCI bridge> at device 24.6 on pci0
pcib33: [GIANT-LOCKED]
pcib34: <ACPI PCI-PCI bridge> at device 24.7 on pci0
pcib34: [GIANT-LOCKED]
acpi_acad0: <AC Adapter> on acpi0
atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model IntelliMouse, device ID 3
acpi_syscontainer0: <System Container> on acpi0
ppc0: <Parallel port> port 0x378-0x37b irq 7 on acpi0
ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode
ppbus0: <Parallel port bus> on ppc0
lpt0: <Printer> on ppbus0
lpt0: Interrupt-driven port
ppi0: <Parallel I/O> on ppbus0
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0
fdc0: <floppy drive controller> port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
orm0: <ISA Option ROMs> at iomem 0xc0000-0xc7fff,0xc8000-0xc9fff,0xca000-0xcafff,0xdc000-0xdffff,0xe0000-0xe7fff pnpid ORM0000 on isa0
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff pnpid PNP0900 on isa0
Timecounters tick every 10.000 msec
usb_needs_explore_all: no devclass
da0 at mpt0 bus 0 scbus2 target 0 lun 0
da0: <VMware Virtual disk 1.0> Fixed Direct Access SCSI-2 device
da0: 320.000MB/s transfers (160.000MHz, offset 127, 16bit)
da0: Command Queueing enabled
da0: 614400MB (1258291200 512 byte sectors)
da0: quirks=0x140<RETRY_BUSY,STRICT_UNMAP>
da1 at mpt0 bus 0 scbus2 target 1 lun 0
da1: <VMware Virtual disk 1.0> Fixed Direct Access SCSI-2 device
da1: 320.000MB/s transfers (160.000MHz, offset 127, 16bit)
da1: Command Queueing enabled
da1: 614400MB (1258291200 512 byte sectors)
da1: quirks=0x140<RETRY_BUSY,STRICT_UNMAP>
cd0 at ata1 bus 0 scbus1 target 0 lun 0
cd0: <NECVMWar VMware IDE CDR10 1.00> Removable CD-ROM SCSI device
cd0: Serial Number 10000000000000000001
cd0: 33.300MB/s transfers (UDMA2, ATAPI 12bytes, PIO 65534bytes)
cd0: 719MB (368571 2048 byte sectors)
cd0: quirks=0x40<RETRY_BUSY>
da2 at mpt0 bus 0 scbus2 target 2 lun 0
da2: <VMware Virtual disk 1.0> Fixed Direct Access SCSI-2 device
da2: 320.000MB/s transfers (160.000MHz, offset 127, 16bit)
da2: Command Queueing enabled
da2: 81920MB (167772160 512 byte sectors)
da2: quirks=0x140<RETRY_BUSY,STRICT_UNMAP>
Trying to mount root from ufs:/dev/da0s1a [rw]...
WARNING: / was not properly dismounted
Setting hostuuid: 564df414-3428-030c-05fc-eee74d981154.
Setting hostid: 0xb2316d34.
ZFS NOTICE: Prefetch is disabled by default if less than 4GB of RAM is present;
to enable, add "vfs.zfs.prefetch_disable=0" to /boot/loader.conf.
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Starting file system checks:
** SU+J Recovering /dev/da0s1a
** Reading 33554432 byte journal from inode 4.
** Building recovery table.
** Resolving unreferenced inode list.
** Processing journal entries.
** 4 journal records in 512 bytes for 25.00% utilization
** Freed 2 inodes (0 dirs) 10 blocks, and 0 frags.

***** FILE SYSTEM MARKED CLEAN *****
Mounting local filesystems:.
ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg /usr/local/lib/compat/pkg /usr/local/lib/perl5/5.28/mach/CORE /usr/local/lib/samba4 /usr/local/lib/samba4/private
32-bit compatibility ldconfig path: /usr/lib32
Setting hostname: share.ghelmer.com.
Setting up harvesting: PURE_RDRAND,[UMA],[FS_ATIME],SWI,INTERRUPT,NET_NG,NET_ETHER,NET_TUN,MOUSE,KEYBOARD,ATTACH,CACHED
Feeding entropy: .
lo0: link state changed to UP
Starting Network: lo0 em0.
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
options=680003<RXCSUM,TXCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2
inet 127.0.0.1 netmask 0xff000000
groups: lo
nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
em0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=81009b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,VLAN_HWFILTER>
ether 00:0c:29:98:11:54
media: Ethernet autoselect (1000baseT <full-duplex>)
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
Starting devd.
Starting dhclient.
DHCPDISCOVER on em0 to 255.255.255.255 port 67 interval 8
DHCPOFFER from 192.168.4.1
DHCPREQUEST on em0 to 255.255.255.255 port 67
DHCPACK from 192.168.4.1
bound to 192.168.5.184 -- renewal in 7200 seconds.
add host 127.0.0.1: gateway lo0 fib 0: route already in table
add host ::1: gateway lo0 fib 0: route already in table
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
Creating and/or trimming log files.
Starting syslogd.
No core dumps found.
Clearing /tmp (X related).
Starting ntpd.
Sep 13 14:02:13 share ntpd[585]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired less than 1173 days ago
Updating motd:.
Mounting late filesystems:.
Configuring vt: blanktime.
Performing sanity check on sshd configuration.
Starting sshd.
Starting cron.
Starting background file system checks in 60 seconds.


$ sudo glabel status
Password:
Name Status Components
iso9660/11_2_BETA1_AMD64_CD N/A cd0
gpt/gpboot1 N/A da2p1
gptid/76c936da-f200-11e4-b749-000c29d7feb4 N/A da2p1
gpt/gprootfs1 N/A da2p2
gpt/gpswap1 N/A da2p3
gptid/a2ed8c2e-f200-11e4-b749-000c29d7feb4 N/A da2p3
gpt/gpusrfs1 N/A da2p4
gptid/a84afad7-f200-11e4-b749-000c29d7feb4 N/A da2p4




--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Guy Helmer
2023-09-13 18:57:28 UTC
Permalink
Post by Guy Helmer
Mode: r0w0e0
$ ls -l /dev/da2*
crw-r----- 1 root operator 0x66 Sep 13 14:01 /dev/da2
crw-r----- 1 root operator 0x6c Sep 13 14:01 /dev/da2p1
crw-r----- 1 root operator 0x6d Sep 13 14:01 /dev/da2p2
crw-r----- 1 root operator 0x6e Sep 13 14:01 /dev/da2p3
crw-r----- 1 root operator 0x6f Sep 13 14:01 /dev/da2p4
$ ls -l /dev/gpt/
total 0
crw-r----- 1 root operator 0x75 Sep 13 14:01 gpboot1
crw-r----- 1 root operator 0x77 Sep 13 14:01 gprootfs1
crw-r----- 1 root operator 0x79 Sep 13 14:01 gpswap1
crw-r----- 1 root operator 0x7b Sep 13 14:01 gpusrfs1
i don't think it's FreeBSD problem at all.
Can you do dd from da2 or da2p2 to /dev/null?
Post by Guy Helmer
$ sudo fsck /dev/da2p2
Can't open /dev/da2p2: No such file or directory
$ sudo fsck /dev/da2p4
Can't open /dev/da2p4: No such file or directory
$ sudo fsck /dev/gpt/gprootfs1
Can't open /dev/gpt/gprootfs1: No such file or directory
$ sudo fsck /dev/gpt/gpusrfs1
Can't open /dev/gpt/gpusrfs1: No such file or directory
I've never had an issue like this before and I can't find anything using Google searches that resolves access to these disk devices.
Any ideas?
Thanks,
Guy Helmer, Ph.D.
Hi, Wojciech, thanks for the response - appreciate any assistance. dd seems to be able to read OK from the devices:

$ sudo dd if=/dev/da2 of=/dev/null bs=4096 count=1000
1000+0 records in
1000+0 records out
4096000 bytes transferred in 0.109224 secs (37500992 bytes/sec)
$ sudo dd if=/dev/da2p2 of=/dev/null bs=4096
1048576+0 records in
1048576+0 records out
4294967296 bytes transferred in 56.561789 secs (75934078 bytes/sec)
$ sudo dd if=/dev/da2p4 of=/dev/null bs=4096 count=1000
1000+0 records in
1000+0 records out
4096000 bytes transferred in 0.119445 secs (34291805 bytes/sec)

Guy
Guy Helmer
2023-09-14 13:04:24 UTC
Permalink
Post by Guy Helmer

$ dmesg -a
---<<BOOT>>---

FreeBSD 12.0-STABLE r348375 GENERIC amd64

Maybe not relevant to the problem, your opening post mentioned FreeBSD 13 systems alone.
Right, I had attached the broken virtual disk to a FreeBSD 12 VM I had available on the same VMware server to research and attempt to recover the filesystems. I've since updated this working VM to 13.2 and I'm getting a bit more informative error messages out of tools like fsck_ufs.

It's looking like either something trashed the superblocks, or the partition offsets were changed.

It's quite a mystery at the moment.

Regards,
Guy



--
Posted automagically by a mail2news gateway at muc.de e.V.
Please direct questions, flames, donations, etc. to news-***@muc.de
Loading...