Thanks for the tips. Since I've already partitioned the drive and formatted it ext3, I did this:
losetup -o $[512+63*512] /dev/loop0 /dev/nbd0
But when I try to mount /dev/loop0 as ext3 under Linux, I get this error:
mount: wrong fs type, bad option, bad superblock on /dev/loop0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
Dmesg says this:
VFS: Can't find ext3 filesystem on dev loop0.
I _can_ still access the partition if it's in SC101. Here's the dmesg from that activity:
nbd: registered device at major 43
nbd0: unknown partition table
kjournald starting. Commit interval 5 seconds
EXT3 FS on nbd0, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
And "fdisk -l /dev/nbd0":
Disk /dev/nbd0: 79.9 GB, 79993765888 bytes
255 heads, 63 sectors/track, 9725 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000
Disk /dev/nbd0 doesn't contain a valid partition table
root@ibm:/mnt/test# cfdisk /dev/nbd0
And "ut listall":
===============================================================================
VERSION : 4.23.0 ROOT IP ADDR : 192.168.1.106
TOTAL(MB): 76315 # PARTITIONS : 1
FREE (MB): 27
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PARTITION LABEL IP ADDR SIZE (MB)
D8A92090-D1D4-11DD-8C71-000AE4C2C9E0 NAS1 192.168.1.107 76288
===============================================================================
I'm using Debian unstable, kernel 2.6.27
I'm not sure where to look. All I can think is my partition table is wrong. Any ideas?
Thanks!
-Chris