error 1 lba 752976 while booting from USB key to install
Hello, I've some server (a 2 years old HP NAT 1000s storage system) and I want to drop the installed W2k system and re-install it with FreeBSD 7.0R and later use it as a central backup-system with Bacula. The problem is that this server has no CD or DVD device, but can (theoretically) boot from external USB CD/DVD (which I don't have either); so I cam up with the idea to boot from that USB key I have used to install 7.0-REL on that eeePC, i.e. the USB key works fine in any laptop; on the HP NAT 1000s storage system it says: FreBSD/i386 Default: 0:ad(0,a)/boot/kernel/kernel boot: error 1 lba 752976 No /boot/kernel/kernel Any idea about why it does not work? Thx matthias -- Matthias Apitz Manager Technical Support - OCLC GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e <[EMAIL PROTECTED]> - w http://www.oclc.org/ http://www.UnixArea.de/ b http://gurucubano.blogspot.com/ «...una sola vez, que es cuanto basta si se trata de verdades definitivas.» «...only once, which is enough if it has todo with definite truth.» José Saramago, Historia del Cerca de Lisboa ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
Matthias Apitz wrote: > so I cam up with the idea to boot from that USB key I have used to > install 7.0-REL on that eeePC, i.e. the USB key works fine in any > laptop; on the HP NAT 1000s storage system it says: > > FreBSD/i386 > Default: 0:ad(0,a)/boot/kernel/kernel Hm. Strange. The boot0 code should load /boot/loader, not the kernel. (While it is possible to load the kernel directly under certain conditions, AFAIK, it is better to go the "official" way and let the bootloader do its job.) Have you modified the boot sequence on that USB stick in a special way? Please make sure that it contains the proper infrastructure, i.e. a /boot directory with the loader, a kernel subdirectory etc. If it still fails, I suggest you try a more recent version of FreeBSD. I don't know if it's related to your problem, but there has been a significant change in the boot loader code (so-called BTX) that fixes USB-booting on certain machines. You can either csup RELENG_7 and build a fresh /boot directory, or fetch it from the June snapshot. Then replace /boot/loader on your USB stick with the new one, and don't forget to re-install the bootblocks, too (bsdlabel -B). Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing b. M. Handelsregister: Registergericht Muenchen, HRA 74606, Geschäftsfuehrung: secnetix Verwaltungsgesellsch. mbH, Handelsregister: Registergericht Mün- chen, HRB 125758, Geschäftsführer: Maik Bachmann, Olaf Erb, Ralf Gebhart FreeBSD-Dienstleistungen, -Produkte und mehr: http://www.secnetix.de/bsd $ dd if=/dev/urandom of=test.pl count=1 $ file test.pl test.pl: perl script text executable ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
El día Thursday, July 10, 2008 a las 03:01:54PM +0200, Oliver Fromme escribió: > Matthias Apitz wrote: > > so I cam up with the idea to boot from that USB key I have used to > > install 7.0-REL on that eeePC, i.e. the USB key works fine in any > > laptop; on the HP NAT 1000s storage system it says: > > > > FreBSD/i386 > > Default: 0:ad(0,a)/boot/kernel/kernel > > Hm. Strange. The boot0 code should load /boot/loader, > not the kernel. (While it is possible to load the kernel > directly under certain conditions, AFAIK, it is better > to go the "official" way and let the bootloader do its > job.) > > Have you modified the boot sequence on that USB stick in > a special way? Please make sure that it contains the > proper infrastructure, i.e. a /boot directory with the > loader, a kernel subdirectory etc. I've created the USB key like this (more or less) and did not specified or changed anything in the boot-sequence: # dd if=/dev/zero of=/dev/da0 bs=1m # fdisk -BI /dev/da0 # bsdlabel -wB /dev/da0s1 # export EDITOR=/mnt2/usr/bin/vi # bsdlabel -e /dev/da0s1 # newfs -m 0 -o space /dev/da0s1a # mount /dev/da0s1a /mnt # export DESTDIR=/mnt # cd /a/cdrom/7.0-RELEASE # for i in base manpages catpages do cd $i; echo y|./install.sh; cd ..; done # rmdir /mnt/boot/kernel # cd /a/cdrom/7.0-RELEASE kernels; # cat generic.??|tar --unlink -xpzf - -C /mnt/boot # cd /mnt/boot && mv GENERIC kernel # echo "/dev/da0s1a / ufs rw,noatime 1 1" >/mnt/etc/fstab # cat If it still fails, I suggest you try a more recent > version of FreeBSD. I don't know if it's related to > your problem, but there has been a significant change > in the boot loader code (so-called BTX) that fixes > USB-booting on certain machines. You can either csup > RELENG_7 and build a fresh /boot directory, or fetch > it from the June snapshot. Then replace /boot/loader > on your USB stick with the new one, and don't forget > to re-install the bootblocks, too (bsdlabel -B). ok; matthias -- Matthias Apitz Manager Technical Support - OCLC GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e <[EMAIL PROTECTED]> - w http://www.oclc.org/ http://www.UnixArea.de/ b http://gurucubano.blogspot.com/ «...una sola vez, que es cuanto basta si se trata de verdades definitivas.» «...only once, which is enough if it has todo with definite truth.» José Saramago, Historia del Cerca de Lisboa ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
Volker Werth schrieb am 10.07.2008 15:07 _ Am Donnerstag, 10. Juli 2008 14:46 schrieb Matthias Apitz: > Hello, > > I've some server (a 2 years old HP NAT 1000s storage system) and > I want to drop the installed W2k system and re-install it with > FreeBSD 7.0R and later use it as a central backup-system with > Bacula. > > The problem is that this server has no CD or DVD device, but can > (theoretically) boot from external USB CD/DVD (which I don't have > either); > > so I cam up with the idea to boot from that USB key I have used to > install 7.0-REL on that eeePC, i.e. the USB key works fine in any > laptop; on the HP NAT 1000s storage system it says: > > FreBSD/i386 > Default: 0:ad(0,a)/boot/kernel/kernel > boot: error 1 lba 752976 Try playing with boot0cfg's option (try with enabling/disabling packet access). -- Volker Werth system engineering Bally Wulff Entertainment GmbH Maybachufer 48-51 12045 Berlin, Germany ph: +49(30)62002-109 Bally Wulff Entertainment GmbH, Maybachufer 48-51, 12045 Berlin, Postanschrift: Postfach 44 01 57, 12001 Berlin Tel.: 030-620 02-0 FAX: 030-620 02-200, Geschäftsführer: Sascha Blodau, Wolfram J. Seiffert, Tim Wittenbecher, Amtsgericht Berlin-Charlottenburg, HRB 91532 B, UST-ID DE 234 517 998 _ Dieses E-Mail ist nur für den Empfänger bestimmt, an den es gerichtet ist und kann vertrauliches bzw. unter das Berufsgeheimnis fallendes Material enthalten. Jegliche darin enthaltene Ansicht oder Meinungs- äußerung ist die des Autors und stellt nicht notwendigerweise die Ansicht oder Meinung von Bally Wulff Entertainment GmbH dar. Sind Sie nicht der Empfänger, so haben Sie diese E-Mail irrtümlich erhalten und jegliche Verwendung, Veröffentlichung, Weiterleitung, Abschrift oder jeglicher Druck dieser E-Mail ist strengstens untersagt. Weder Bally Wulff Entertainment GmbH noch der Absender (Volker Werth) übernehmen die Haftung für Viren; es obliegt Ihrer Verantwortung, die E-Mail und deren 0 Anhänge auf Viren zu prüfen. 0 Anhänge: _ Versand am 10.07.2008 15:07 von Werth Volker ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
On Thu, Jul 10, 2008 at 03:17:16PM +0200, Matthias Apitz wrote: > El día Thursday, July 10, 2008 a las 03:01:54PM +0200, Oliver Fromme escribió: > > > Matthias Apitz wrote: > > > so I cam up with the idea to boot from that USB key I have used to > > > install 7.0-REL on that eeePC, i.e. the USB key works fine in any > > > laptop; on the HP NAT 1000s storage system it says: > > > > > > FreBSD/i386 > > > Default: 0:ad(0,a)/boot/kernel/kernel > > > > Hm. Strange. The boot0 code should load /boot/loader, > > not the kernel. (While it is possible to load the kernel > > directly under certain conditions, AFAIK, it is better > > to go the "official" way and let the bootloader do its > > job.) > > > > Have you modified the boot sequence on that USB stick in > > a special way? Please make sure that it contains the > > proper infrastructure, i.e. a /boot directory with the > > loader, a kernel subdirectory etc. > > > and again: the USB key works fine in the eeePC 900 and other laptops I > have; If the device works with another system then this is purely a BIOS/USB-device compatibility problem. FreeBSD bootcode has to use the BIOS to read disk blocks, since the kernel isn't running yet. -- B.Walter <[EMAIL PROTECTED]> http://www.bwct.de Modbus/TCP Ethernet I/O Baugruppen, ARM basierte FreeBSD Rechner uvm. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
Matthias Apitz wrote: > I've created the USB key like this (more or less) and did not specified > or changed anything in the boot-sequence: > [...] > and again: the USB key works fine in the eeePC 900 and other laptops I > have; > > here is what is in /mnt/boot: > [...] OK, that looks good. So it's probably the well-known BIOS access problem that was patched in FreeBSD's BTX code after 7.0-RELEASE. I suggest you try RELENG_7 or the June snapshot, as explained in my previous mail. Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing b. M. Handelsregister: Registergericht Muenchen, HRA 74606, Geschäftsfuehrung: secnetix Verwaltungsgesellsch. mbH, Handelsregister: Registergericht Mün- chen, HRB 125758, Geschäftsführer: Maik Bachmann, Olaf Erb, Ralf Gebhart FreeBSD-Dienstleistungen, -Produkte und mehr: http://www.secnetix.de/bsd "Life is short (You need Python)" -- Bruce Eckel, ANSI C++ Comitee member, author of "Thinking in C++" and "Thinking in Java" ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
On Thursday 10 July 2008 14:46:58 Matthias Apitz wrote: > Hello, > > I've some server (a 2 years old HP NAT 1000s storage system) and > I want to drop the installed W2k system and re-install it with > FreeBSD 7.0R and later use it as a central backup-system with > Bacula. > > The problem is that this server has no CD or DVD device, but can > (theoretically) boot from external USB CD/DVD (which I don't have > either); > > so I cam up with the idea to boot from that USB key I have used to > install 7.0-REL on that eeePC, i.e. the USB key works fine in any > laptop; on the HP NAT 1000s storage system it says: > > FreBSD/i386 > Default: 0:ad(0,a)/boot/kernel/kernel > boot: error 1 lba 752976 > No /boot/kernel/kernel Let me ask a stupid question: why is it trying to access an ATA/ATAPI disk, not an USB (scsi da(4)) disk. Can you boot via: 0:da(0,a)/boot/kernel/kernel Or variants of those, see boot(8) for the syntax explanation. -- Mel ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: error 1 lba 752976 while booting from USB key to install
On Thu, Jul 10, 2008 at 04:52:31PM +0200, Mel wrote: > On Thursday 10 July 2008 14:46:58 Matthias Apitz wrote: > > Hello, > > > > I've some server (a 2 years old HP NAT 1000s storage system) and > > I want to drop the installed W2k system and re-install it with > > FreeBSD 7.0R and later use it as a central backup-system with > > Bacula. > > > > The problem is that this server has no CD or DVD device, but can > > (theoretically) boot from external USB CD/DVD (which I don't have > > either); > > > > so I cam up with the idea to boot from that USB key I have used to > > install 7.0-REL on that eeePC, i.e. the USB key works fine in any > > laptop; on the HP NAT 1000s storage system it says: > > > > FreBSD/i386 > > Default: 0:ad(0,a)/boot/kernel/kernel > > boot: error 1 lba 752976 > > No /boot/kernel/kernel > > Let me ask a stupid question: why is it trying to access an ATA/ATAPI disk, > not an USB (scsi da(4)) disk. Can you boot via: > 0:da(0,a)/boot/kernel/kernel > > Or variants of those, see boot(8) for the syntax explanation. Because the system BIOS is very likely using some form of ATA emulation to make the USB device available for booting. Many BIOSes let you pick what kind of emulation mode to use, though -- and there are many. USB-FDD, USB-HDD, USB-ZIP, USB-CDROM, USB-KEY, USB-LS120, etc... They're all handled in different ways. -- | Jeremy Chadwickjdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
GPG encryption of binary sample requested.
Hi [EMAIL PROTECTED] Could a few people please post to list saying they will private mail me (off list) some encrypted binary junk please ? If you have a Microsoft PC (or non BSD) to mail binary junk from, so much the better, but some BSD too would help. Examples: dd if=/dev/random of=junk count=2 /boot/kernel/kernel Please also mail output of md5 junk # or kernel I'd like to prove my FreeBSD can receive large encrypted binary from MS, as: I have an MS sender who can't mail me large encrypted binaries, I get gpg: fatal: zlib inflate problem: invalid code lengths set secmem usage: 2048/4000 bytes in 4/9 blocks of pool 5120/32768 I'm receiving Content-Transfer-Encoding: 7bit I suspect it's not his Microsoft as such failing to send, but likely his MS mailer &/or corporate defaults or gateway failing to ascii armour & encrypt in right order. I send large base64 encrypted binaries OK using exmh & gpg. I append my GPG public key, as a MIME enclosure, to make it easy to click & save, (but guessing the freebsd.org mailman will chop that), indented for edit below, & also here http://www.berklix.org/~jhs/txt/pgp.html Thanks for any help ! Julian S. XX -BEGIN PGP PUBLIC KEY BLOCK- XX Version: GnuPG v1.4.5 (FreeBSD) XX XX mQGiBEhGVO0RBACs/CNBqX/SNaNyC4PgddejxSaqQ2saMPRD2op46RYaP8ce/wIP XX 67ckuNiHzpWQ0hA9nYsLkLAff8LFtLPpr9PsQr+efV5Q4EO7t9ddLTJA5lSUjegy XX QHf14FAMqQIiKgQkwRU8K3bXBZJUEAuuBjU/0Q0w5W4PmEsbRrMnNC4HxwCg0Ibi XX Y8hO0al6w62f5YbaAy2ruK8D/AuYqWmtKgiAHpjqSrCeqL0y7pR86cKiziqQLAbF XX fZtFn9Fmz34GjvhO3cHCE95teK9pTLN0P89dNp6X4XWqy/v3F3Vl9LAWGDkqiLbf XX Kk/bF0ucbg363LrTljcel6R1uqA0XP3yWXi8rTpcX/AnZ14i0+7AjsVJKXA5D9L3 XX tIyyA/sGZT8PXx6JEg25VwDgUrgx4+WvNzpyOxJeG4BdEnvw+tVdwo880Jkvlju+ XX uCwY7d8+j8nRMtr0a0EulhSy3eoPXaw07yR0Sdp3UDii6KZGu8EYalV8ouqXURU/ XX hykHLLtC6oO6x/Ep/fQxjWF64G58FeCZ1bFNmjl++YO/IJz3ibQzSnVsaWFuIEgu XX IFN0YWNleSAoMjAwODA2MDQxMDM5MTApIDxqaHNAYmVya2xpeC5vcmc+iGAEExEC XX ACAFAkhGVO0CGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRCMDdcn+Ybf4WpM XX AJ900uoDXQ1hqinNCF8AzWhj9LmYxgCfe63Lu6uU9nEc7AZoIVzMH7yd9BK5Ag0E XX SEZU8BAIAL3lH3/O1xzCe9XX1omUf1CVuQe02W0CPJkM0s/VaGsBViLQlMoltyud XX zXQXGB0Oa/9n+sRIKIOz/tSbCvLSyw42fO6inp1Vxn+/02SGwz9bKiWTYdW4gaJI XX 0Z3DA8n97gw8PTwP0s5GinrC5CfjHBFRHrPUHmlgb6hoFCHk3ZEISxAfU6bxixnH XX x+yJ2KVz0OPMdULhuDLP45Ep+pgjRQ6+haD1x/pPoKmSeYT+gHAeZ7gLysSLGIhw XX hCmYN1fQqwU+DC5Yd5uRJ6sEkMMRMEOWStgWkEOyGrhE8P3FwvwCC1OBRrvlmyYt XX 2JRdvuejHkU1BGRohgngDohqVp/gMsMAAwUH/ApINMJyU6zCuzjgYyk5TzzT/kEG XX XBBQ01E3TM9WstukoO+3+fku3dpYIsWchJLsvYM5j23KmRQCTpvR9zyHY9U1SeIF XX yqDEbrV9TWigUzKhEJ2qpTXmC7WuHdFB0Vt/S3yKC8GU4uZUz5KSH9x+8BOUF3rB XX 9a3jGODcwqPLKuQYubrJtzAMx/ZRgLyCiVQ98KoddyEFpb0Tw/hA1FYGMNCjFHia XX IrBcF+2AFOC+AYI40/hRTsj/oZuDoqWUebjm1oWD5TBVql/r332qn8lmDJGWmTAr XX YWZgqHBs4JvmYbRz0DtU8ezTBDbLOqCXh3Wmmc9l8gDp0D4gEmMCdzOlvgqISQQY XX EQIACQUCSEZU8AIbDAAKCRCMDdcn+Ybf4ePTAJ91bvPB230c2pD9NrNTORkY3USu XX bACgoYGo20521SC+5VgIdR4CCtmVIQqZAaIESEU9aREEALlbkl1Ae2TkpsFUa0J7 XX pU4LOz5TvQ5Y+mORLB6t9HhiP//jWX59DNogFCrt6CvKiX36PjUV+OZtAnMAbf8w XX 8x/vjMEl3gqhS/ZaWFvLsAGtRtgvP2GXT0GaINjAFmUuYTy+OjxbXkeU+H7cmH73 XX nMSPdYpn9Hgct1TfXrnNrVY3AKD01Da5Q4dOnUJvH6XDnkfQlnW2WwP/aAMUCIjI XX eiP0Q3QjbRWp/0LFlimN1BFAVcRI807IlsJ/7dobw9ZatC4ZEmitcSNhUTR/jyZ+ XX fyzPdA/6tAUFpySzO/UOWibPaTkpbOZsjq8S+VmjWEF0wpAHXS//Hk/94VeQA+jN XX C+c2E6qc05PZTYW1ne+Iu71zTpoWWwifhb8D/jB/tButD7aSo8T+sKChzUWFOyGg XX pp9fYlE/p7iQtOI5taPPlToXXb6ze3kUwmlEn/wkJPycAQCo/RPuqfy2RQ1iyWSv XX JmiA+55SczzTnRbjMUGcGLj3pzxPr0FqXulJJCtkghFBvMYa/80S68ujWKk0PvC+ XX 7LMaXRG4iXHJ6KmptCJKdWxpYW4gSC4gU3RhY2V5IDxqaHNAYmVya2xpeC5jb20+ XX iGAEExECACAFAkhFPWkCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRCl8u02 XX NZE4NLtxAJ9BSPEzsPp+zNBxdPXgtAdXfogiYQCeMOh4o+RsomG1k03D8aaGWwiP XX fCK5Ag0ESEU9bxAIALdUwOKz0sRO89+Qr4woCislFbVMpoYTMcafodbs18ROkaR/ XX MGtfAnNT/ZgdmvRIAe94LtE1GgNrf20DFNyctM5A09j4wVqGZfR0rbMYhlQ147dY XX siblTeZQEUHHb86esNzP3aETKK97d4VSrpnIETzqWWFq/j8tl3psRrjZ0gOwjSp8 XX OpcSCFIXqjYnyaGh7iRfQbBRRxU8B39/LnSpi10h+MvtY1ijuMgFElA4IiLD5f0D XX wNkNsiOT7lxPpPeKP7WNRSxPSe+oi/tpDt2aIh1k1U7FQtVFBUNjJqrPHGVMwK3F XX 9xLqj0vaE9QbzvcMzoe3obzyTnFydyksufNwqbcAAwcIAKkeezjzs0wJaQsxYkbD XX OiiPNMfcxzQoneNl5bSBEh2V1p2Yn6ULqQh6ENVXIIYDKALs2OjoRhGCuLh+SrMj XX +N0BaM9kTR6MKq2Ph24wJixmMRbcSJpkcqXsv9v7xxqJWgjU3ahI1Ln+IDfbDdgN XX qbqV3Ne8sr9qxnbMe2+aGaN9n2xXrforOfSgs8Q8bmkZMAjeAvRPO6oYO1gBG/mZ XX RLVv1KFOdzwARbpE697KDwrvuJmyFNvYDGO9VG/QKTVt4mebrCNd+WlT2qS0BUog XX sx4CS7jrj7jBGcOhBYOfu4w/O/HDWITy48ymhJtPtLc4NHpYByfzO4CZQxPDVY9W XX roOISQQYEQIACQUCSEU9bwIbDAAKCRCl8u02NZE4NPDqAKDNH+lqIk+poejpjiHT XX cFv6X4LcawCg4bqjYziIMrNIg8MukzLuOgHJV+o= XX =lwO2 XX -END PGP PUBLIC KEY BLOCK- Julian -- Julian Stacey: BSDUnixLinux C Prog Admin SysEng Consu
Re: Sysinstall is still inadequate after all of these years
On Jul 9, 2008, at 10:19 PM, Mike Makonnen wrote: Yes, libdisk is bad. GEOM_PART has been designed for use by installers. It can be interfaced faily easily. See gpart(8) for example. Is there documentation for the geom_part API somewhere (I couldn't find any) or do I have to look at gpart(8) to figure out how to use it? I haven't written any documentation yet, so gpart(8) is probably the best place to start. Is it ok to just use gpart(8) instead of using the geom_part API? Using gpart(8) works just fine, except that you don't have access to all the information that's in the XML. Things like geometry come to mind. But of course, you can always read the XML, use gpart(8) to make a change and read the XML again. Having that, it's only a tiny step to use the gctl interface directly. FYI, -- Marcel Moolenaar [EMAIL PROTECTED] ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: massive interrupt storm
-Original Message- From: Jeremy Chadwick [mailto:[EMAIL PROTECTED] Sent: Tuesday, 8 July 2008 5:37 PM To: Murray Taylor Cc: Sergey Babkin; freebsd-hackers@FreeBSD.org Subject: Re: massive interrupt storm On Tue, Jul 08, 2008 at 05:21:34PM +1000, Murray Taylor wrote: > We have variously shutdown all USB in the bios, pulled the > Raid daughter board, and still cant solve this storm. Have you tried disabling MSI and MSI-X in FreeBSD to see if it makes a difference? Set hw.pci.enable_msi="0" and hw.pci.enable_msix="0" in /boot/loader.conf and reboot. -- | Jeremy Chadwickjdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | Nope, :( Interrupt usage is still around the 89-95% :( NB sysctl -a | grep msi returns nothing, and attempting to set the values directly returns 'unknown OID' this is on 6.2 GENERIC --- The information transmitted in this e-mail is for the exclusive use of the intended addressee and may contain confidential and/or privileged material. Any review, re-transmission, dissemination or other use of it, or the taking of any action in reliance upon this information by persons and/or entities other than the intended recipient is prohibited. If you received this in error, please inform the sender and/or addressee immediately and delete the material. E-mails may not be secure, may contain computer viruses and may be corrupted in transmission. Please carefully check this e-mail (and any attachment) accordingly. No warranties are given and no liability is accepted for any loss or damage caused by such matters. --- ### This e-mail message has been scanned for Viruses by Bytecraft ### ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"