Re: Mounting/examining dd image?

2007-11-07 Thread Jon Drukman
On Nov 7, 2007 4:52 PM, Chad Gross [EMAIL PROTECTED] wrote:


 # mount /dev/vn0s1a /mnt
   mount: /dev/vn0s1a on /mnt: incorrect super block
  
 
  You have to mount the device with 'mount -t cd9660' because it is an ISO
  which is a cd9660 format.
 
 

 Never mind I saw imagine and thought ISO. I apologize, this should
 hopefully help: 
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/disks-virtual.html



thanks, but no, it doesn't help.  i made this image by doing dd if=/dev/ad0
of=some.file, but i haven't yet found the magic incantation for being able
to mount the filesystems.

if i ever get some free time i am going to have to open the box up, attach a
real hard disk and try dd'ing the image back onto the disk at least long
enough to get the important files out of it.


-jsd-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mounting/examining dd image?

2007-11-03 Thread Jon Drukman
Hm, anything that works in Freebsd 4.9?  I've never been able to
install 5.0 or higher on this machine, it always freezes when booting.

On Nov 2, 2007 10:22 PM, John Nielsen [EMAIL PROTECTED] wrote:

 On Friday 02 November 2007, Jon Drukman wrote:
  I was trying to transplant my system from a small, old drive to a big,
  new one.  I made a dd dump of the entire small drive, but then I
  accidentally destroyed the drive (be careful with bare drives and
  metal PC cases...)
 
  Anyway, I have the dd file but I don't have a spare drive onto which
  to copy it.  Is there a way to read its contents/mount it/explore
  it/hopefully extract files from it on a running system?

 Yes there is:

 mdconfig -a -t vnode -f /path/to/dd/image/file

 That will cause the file to be treated as an md device. See also man
 mdconfig. The output of that command is the newly created /dev/md? device
 node. Depending on whether you dumped the whole disk, a slice, or a
 partition there may be additional devices. If you dd'ed the whole disk your
 former root partition might show up as /dev/md0s1a, for example.

 Once you've identified the device node(s) that contain(s) the filesystem(s)
 you're interested in, just mount it/them like you would any other device,
 e.g.
 mount /dev/md0s1a /mnt

 JN

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mounting/examining dd image?

2007-11-03 Thread Jon Drukman
On Nov 3, 2007 9:23 AM, Warren Block [EMAIL PROTECTED] wrote:
 vnconfig is the predecessor of mdconfig.  It should be present in 4.9.

thanks, it is.  however, i am unable to mount the vnconfig'd device.
any ideas?  i made the backup originally just by doing dd if=/dev/ad0
of=some.file

then i ran vnconfig vn0 some.file

if i dd /dev/ad0 i see all the boot sector stuff, etc.  however i
can't use disklabel or mount.

# disklabel -r vn0
disklabel: bad pack magic number (label is damaged, or pack is unlabeled)
# disklabel -r vn0a
disklabel: bad pack magic number (label is damaged, or pack is unlabeled)
# disklabel -r vn0b
disklabel: bad pack magic number (label is damaged, or pack is unlabeled)

# mount /dev/vn0s1a /mnt
mount: /dev/vn0s1a on /mnt: incorrect super block


it seems like the data is there but i don't know how to access it.

  fc 31 c0 8e c0 8e d8 8e  d0 bc 00 7c be 1a 7c bf  |.1.|..|.|
0010  1a 06 b9 e6 01 f3 a4 e9  00 8a 31 f6 bb be 07 b1  |..1.|
0020  04 38 2f 74 08 7f 78 85  f6 75 74 89 de 80 c3 10  |.8/t..x..ut.|
0030  e2 ef 85 f6 75 02 cd 18  80 fa 80 72 0b 8a 36 75  |u..r..6u|
0040  04 80 c6 80 38 f2 72 02  8a 14 89 e7 8a 74 01 8b  |8.r..t..|
0050  4c 02 bb 00 7c 80 fe ff  75 32 83 f9 ff 75 2d 51  |L...|...u2...u-Q|
0060  53 bb aa 55 b4 41 cd 13  72 20 81 fb 55 aa 75 1a  |S..U.A..r ..U.u.|
0070  f6 c1 01 74 15 5b 66 6a  00 66 ff 74 08 06 53 6a  |...t.[fj.f.t..Sj|
0080  01 6a 10 89 e6 b8 00 42  eb 05 5b 59 b8 01 02 cd  |.j.B..[Y|
0090  13 89 fc 72 0f 81 bf fe  01 55 aa 75 0c ff e3 be  |...r.U.u|
00a0  bc 06 eb 11 be d4 06 eb  0c be f3 06 eb 07 bb 07  ||
00b0  00 b4 0e cd 10 ac 84 c0  75 f4 eb fe 49 6e 76 61  |u...Inva|
00c0  6c 69 64 20 70 61 72 74  69 74 69 6f 6e 20 74 61  |lid partition ta|
00d0  62 6c 65 00 45 72 72 6f  72 20 6c 6f 61 64 69 6e  |ble.Error loadin|
00e0  67 20 6f 70 65 72 61 74  69 6e 67 20 73 79 73 74  |g operating syst|
00f0  65 6d 00 4d 69 73 73 69  6e 67 20 6f 70 65 72 61  |em.Missing opera|
0100  74 69 6e 67 20 73 79 73  74 65 6d 00 00 00 00 00  |ting system.|
0110  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mounting/examining dd image?

2007-11-02 Thread Jon Drukman
I was trying to transplant my system from a small, old drive to a big,
new one.  I made a dd dump of the entire small drive, but then I
accidentally destroyed the drive (be careful with bare drives and
metal PC cases...)

Anyway, I have the dd file but I don't have a spare drive onto which
to copy it.  Is there a way to read its contents/mount it/explore
it/hopefully extract files from it on a running system?

-jsd-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 4.11 binary compatibility (libm.so.2, etc)

2007-08-28 Thread Jon Drukman
I just installed FBSD 6.2, but I have a requirement to use some 
precompiled binaries from FreeBSD 4.11.  They are failing because 
libm.so.2 is not available.  Is there a compatibility package that I can 
install which will give me the older libraries?  I do not have the 
source code to recompile these applications.


-jsd-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 4.11 binary compatibility (libm.so.2, etc)

2007-08-28 Thread Jon Drukman
 I just installed FBSD 6.2, but I have a requirement to use some precompiled
binaries from FreeBSD 4.11.  They are failing because libm.so.2 is not
available.  Is there a compatibility package that I can install which will
give me the older libraries?  I do not have the source code to recompile
these applications.

-jsd-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.11 binary compatibility (libm.so.2, etc)

2007-08-28 Thread Jon Drukman
On 8/28/07, Duane Hill [EMAIL PROTECTED] wrote:

 Have you tried the compat4 port:

/usr/ports/misc/compat4x


thanks!  that got me past one error, now i'm stuck on libcrypt.so.2

is there a port for libcrypt compat?  (i didn't find anything obvious by
searching on *compat* or *crypt*)

-jsd-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 4.11 binary compatibility (libm.so.2, etc)

2007-08-28 Thread Jon Drukman
On 8/28/07, Kris Kennaway [EMAIL PROTECTED] wrote:

   Have you tried the compat4 port:
  /usr/ports/misc/compat4x
 
  thanks!  that got me past one error, now i'm stuck on libcrypt.so.2
 
  is there a port for libcrypt compat?  (i didn't find anything obvious by
  searching on *compat* or *crypt*)

 It's part of the same freebsd compat ports.


It's not in compat4x.  On a whim I tried installing compat5x and that
provided the missing library.

thanks
-jsd-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Bandwidth limiting with ipfw and dummynet

2007-02-13 Thread Jon Drukman
   I'd like to limit him to 384Kbit/sec.Can someone help me get 
bandwidth limiting working?  I've tried all the examples I could find 
via google but none of them work.  My roomate is frequently uploading 
stuff to his office, and when he does, it completely saturates our 
outbound link and makes everything very pokey.  His IP address is 
10.0.2.195 and we've got FreeBSD set up as a router for our cable modem, 
with natd.


I added the pipe to limit the bw:

 ipfw pipe 1 config bw 384Kbit

I added a rule for his IP:

 ipfw add 10 pipe 1 tcp from 10.0.2.195 to any

Doing ipfw show doesn't show any packets ever matching that rule.

# ipfw show
00010 00 pipe 1 tcp from 10.0.2.195 to any
00015 00 pipe 1 tcp from any to 10.0.2.195
00050 21745 18784920 divert 8668 ip from any to any via dc0
00100 8 1036 allow ip from any to any via lo0
00200 00 deny ip from any to 127.0.0.0/8
00300 00 deny ip from 127.0.0.0/8 to any
65000 44051 37589386 allow ip from any to any
65535 00 deny ip from any to any

Is the natd divert rule somehow interfering?

-jsd-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Realtek (re(4)) Driver in 6.1

2006-12-04 Thread Jon Drukman
I'm about to install 6.1 on a machine that's been happily ticking away 
with 4.1.1 for years now.  (I need to upgrade it to gigabit ethernet.)


Does the default kernel on the 6.1-R installation CD include the realtek 
re(4) driver?  If not, what would I have to do to enable it?


-jsd-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Thanks for FBSD6

2005-12-07 Thread Jon Drukman
Just a note to say thanks to all the hard working people who created 
FBSD6.  I spent an annoying week trying to get some minimal 
lightweight Linux distros to work out of the box on an ancient 
laptop that I had lying around.  They all had various problems, such as: 
 unable to recognize/configure the wireless ethernet card, or the X 
server wouldn't come up properly.  FBSD6 worked basically out of the 
box.  I had to create a custom script in rc.d to get the wireless to 
work on boot, but that was about it.


basically the meat of the script looks like:

ifconfig ath0 ssid my wireless network
dhclient ath0


if someone can tell me what /etc/rc.conf options i need to set to 
duplicate that, that would be cool.  i played around with it for a while 
but never got it to work without my custom script.


-jsd-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


installing 4.9-R: READ command timeout

2003-11-02 Thread Jon Drukman
i'm trying to install 4.9-RELEASE from the bootable CDROMs.  i can't get 
very far because it hangs during the boot process with the following error:

ad3: READ command timeout tag=0 serv=0 resetting
ata1: resetting devices...
and that's it.  total freeze.

i've done a little googling and most of the suggestions i've found 
center around drive cabling/jumpering.  however, the system is totally 
functional under Windows XP (that's how i'm writing this message) so i'm 
pretty sure all the hardware is wired up properly.

ideas?

hardware: asus a7n8x motherboard, athlon xp 2200+, onboard IDE

primary master: western digital wd1200JB
primary slave: yamaha crw-f1e cd-rw
secondary master: western digital wd1200JB
secondary slave: ibm dtla-307045


-jsd-

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]