Tape Drive,

2009-03-23 Thread Milan Prihoda
gal Request ASC/ASCQ: End-Of-Partition/Medium Detected st0: cannot set selected mode ... I've bad knowledge about scsi, maybe it's stupid Have You any idea ? Thanks Milan Prihoda

Re: Tape Drive,

2009-03-24 Thread Milan Prihoda
/Medium Detected st0: cannot set selected mode ... I tried this tape drive on linux box for a while and I could rewind, fsf or erase and so.. but I couldn't read or write. :-( Thanks Milan Prihoda. Brynet wrote: Hey Milan, I admit I haven't used a tape drive in some time, but could that be

47.html typo ?

2010-03-22 Thread Milan Prihoda
... OpenSSH 5.5: New features: ... Milan Prihoda

Oxford OX16PCI954

2010-03-23 Thread Milan Prihoda
www.openbsd.org/cgi-bin/cvsweb/src/sys/dev/pci/pucdata.c.diff?r1=1.61;r2=1.62 There is one OX16PCI954 chip (and four rs232<->ttl chips) which sits on the card. Thanks. Milan Prihoda.

authpf+carp gateway

2010-02-15 Thread Milan Prihoda
e. If machine A suddenly goes down -> authpf session, of course, also goes down and user will have to reconnect. Is there any other way how to setup Carp+Authpf without this trouble ? Thank You. Milan Prihoda.

Middle mouse button, ThinkPad R61

2009-09-06 Thread Milan Prihoda
Hi, I have ThinkPad R61 and I have no idea, how to get middle mouse button to work with 4.5/i386. When I try to use xev only left (=1) and right (=3) mouse button respond. Thank You, for any ideas. Milan Prihoda.

Re: Middle mouse button, ThinkPad R61

2009-09-06 Thread Milan Prihoda
Joe Gidi wrote: On Sun, September 6, 2009 9:55 am, Milan Prihoda wrote: Hi, I have ThinkPad R61 and I have no idea, how to get middle mouse button to work with 4.5/i386. When I try to use xev only left (=1) and right (=3) mouse button respond. Thank You, for any ideas. Milan Prihoda

IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
fixed sd2: drive offline ... Thank You for any ideas. Milan Prihoda

Re: IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
Jan Stary wrote: On Sep 10 10:36:41, Milan Prihoda wrote: Hi, i have few IBM scsi drives from old (risc-based) IBM as/400. These drives have 520KByte sector size instead of 512KByte. Is there any way how to dump raw data from these drives without reformat drive to different sector size

Re: IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
Brynet wrote: Milan Prihoda wrote: These drives have 520KByte sector size instead of 512KByte. Is there any way how to dump raw data from these drives without reformat drive to different sector size ? Most disks have a sector size of 512 bytes, not kilobytes. -Brynet Hi, i

Re: IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
Hi Brynet, thank You very much for Your idea. It works :-) Brynet wrote: Hi Milan, David Vasek was on the right track with his message, it seems likely that the driver is bailing out on line 1439 in /usr/src/sys/scsi/sd.c. 1423: /* 1424:* Restrict blksize values to powers of two between

Re: IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
Milan Prihoda wrote: Hi Brynet, thank You very much for Your idea. It works :-) Brynet wrote: Hi Milan, David Vasek was on the right track with his message, it seems likely that the driver is bailing out on line 1439 in /usr/src/sys/scsi/sd.c. 1423:/* 1424: * Restrict blksize values

Re: IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
Brynet wrote: Hi Milan, I'm glad that it works.. can you post the new attachment message? :) -Brynet Do you mean this :? # dmesg | grep sd2 sd2 at scsibus0 targ 2 lun 0: SCSI2 0/direct fixed sd2: 4173MB, 520 bytes/sec, 8414494 sec total

Re: IBM 520KByte sector size scsi drives

2009-09-10 Thread Milan Prihoda
Line 1423 and following of /usr/src/sys/scsi/sd.c show that we will only accept devices with sector sizes that are multiples of 512 (DEV_BSIZE). Others will be impossible to open. Now, if you delete that code you may be able to open the raw device. No idea, but I'd be interested in what happens.

Re: IBM 520KByte sector size scsi drives

2009-09-11 Thread Milan Prihoda
David Vasek wrote: On Thu, 10 Sep 2009, Milan Prihoda wrote: and now, # dd if=/dev/rsd2c of=disk1.img bs=520 works for me :-) Are you sure you are getting all 520 bytes from each sector and not only first 512 bytes? Can you verify it? Regards, David Hi David, it seems you're