Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2008-01-13 Thread Max
Ah! Success, it worked!
The drives are getting detected as expected on boot and I can fdisk
them and such.
The problem is now the install! When I am promted ton what drive to
install the software on, it does not contain any thing...

I found the following drives on your system:

Install the image on? []:

I tried to manualy set the drive /dev/ida/c0d0 at the prompt, but it
looks like it just hangs.

Any ideas?

On Jan 13, 2008 1:52 PM, Max [EMAIL PROTECTED] wrote:
 Nope, still no dice :(
 It boots like it is supose to this time though.
 Any other recomendations?


 On Nov 29, 2007 9:15 PM, Robert Bays [EMAIL PROTECTED] wrote:
  It looks like it can't find or open the initramfs.  In the initrd
  creation step try this instead.
 
  find . | cpio --quiet --dereference -o -H newc | gzip -9 
  ../tmpiso/boot/initrd.img
 
  Cheers,
  Robert.
 
 
  Max wrote:
   Well I followed your directions step by step and didn't have any
   problems until attempting to boot the CD. Check out the attached
   screen shot..
   What do you recommend checking out?
  
  
  
   On Nov 27, 2007 5:39 PM, Max [EMAIL PROTECTED] wrote:
   That was more less what i was going to do. You saved me a good deal of
   work trying to figure out the right way to recreate the ISO. If this
   works out, I owe you a pint! :D
  
  
   On Nov 27, 2007 5:07 PM, Robert Bays [EMAIL PROTECTED] wrote:
   Max,
  
   To avoid building from scratch you could just edit the initrd.  Try
   something like the following...
  
   1. mount the iso to a loop device and copy the contents to a tmpdir
   mount -o loop ./livecd-vc3.iso ./dir
   cp -R ./dir/* ./tmpiso/
   umount ./dir
   2. extract the initrd.img
   mkdir tmpinitrd
   cd tmpinitrd
   gzip -cd ../tmpiso/boot/initrd.img.img | cpio -imd --quiet
   3. remove the module
   rm ./lib/modules/2.6.20/kernel/drivers/scsi/sym53c8xx_2/sym53c8xx.ko
   4. zip up the initrd and copy it into the temporary iso dir
   chmod -R 755 ../tmpiso
   rm ../tmpiso/boot/initrd.img
   find . | cpio --quiet -c -o | gzip -9 -n  ../tmpiso/boot/initrd.img
   5. create the iso
   cd ../tmpiso
   mkisofs -J -r -o ../livecd.iso -b boot/isolinux/isolinux.bin  -c
   boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table
   /home/rbays/tmpiso/
  
   Should work...
  
   Cheers,
   Robert.
  
  
   Max wrote:
   No I have not had any time to fool with it these past few days...
   but from what I can tell the sym53c8xx module is loaded before the 
   needed
   cpqarray module and thats what is causing the failure. I have tried
   unloading the modules and reloading cpqarray but don't seem to have
   any luck. My guess is the SCSI controller needs to be reset or what
   have you.
   I have not had any luck disabling the sym53c8xx module from the boot
   loader so I think the next step is to build a live CD from scratch.
   I've never built a live CD so its going to be a learning thing for me
   for sure. Maybe you will have better luck... Let me know if you find
   anything :)
  
   On Nov 26, 2007 11:46 PM, Cory B. Goleman [EMAIL PROTECTED] wrote:
  
  
   I'm having the same problem, trying to install Vyatta 3.0 to a DL 360 
   G1
   with a RAID 1 configuration, have you made any progress on this?
  
  
  
   Regards
  
   Cory-
  
  
   ___
   Vyatta-users mailing list
   Vyatta-users@mailman.vyatta.com
   http://mailman.vyatta.com/mailman/listinfo/vyatta-users
  
   
 
  
  ___
  Vyatta-users mailing list
  Vyatta-users@mailman.vyatta.com
  http://mailman.vyatta.com/mailman/listinfo/vyatta-users
 

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2008-01-13 Thread Max
Well nevermind I figured it out after looking at the install-system script.

I provided ida/c0d0 instead of /dev/ida/c0d0

Wish me luck :)

On Jan 13, 2008 1:57 PM, Max [EMAIL PROTECTED] wrote:
 Ah! Success, it worked!
 The drives are getting detected as expected on boot and I can fdisk
 them and such.
 The problem is now the install! When I am promted ton what drive to
 install the software on, it does not contain any thing...

 I found the following drives on your system:

 Install the image on? []:

 I tried to manualy set the drive /dev/ida/c0d0 at the prompt, but it
 looks like it just hangs.

 Any ideas?


 On Jan 13, 2008 1:52 PM, Max [EMAIL PROTECTED] wrote:
  Nope, still no dice :(
  It boots like it is supose to this time though.
  Any other recomendations?
 
 
  On Nov 29, 2007 9:15 PM, Robert Bays [EMAIL PROTECTED] wrote:
   It looks like it can't find or open the initramfs.  In the initrd
   creation step try this instead.
  
   find . | cpio --quiet --dereference -o -H newc | gzip -9 
   ../tmpiso/boot/initrd.img
  
   Cheers,
   Robert.
  
  
   Max wrote:
Well I followed your directions step by step and didn't have any
problems until attempting to boot the CD. Check out the attached
screen shot..
What do you recommend checking out?
   
   
   
On Nov 27, 2007 5:39 PM, Max [EMAIL PROTECTED] wrote:
That was more less what i was going to do. You saved me a good deal of
work trying to figure out the right way to recreate the ISO. If this
works out, I owe you a pint! :D
   
   
On Nov 27, 2007 5:07 PM, Robert Bays [EMAIL PROTECTED] wrote:
Max,
   
To avoid building from scratch you could just edit the initrd.  Try
something like the following...
   
1. mount the iso to a loop device and copy the contents to a tmpdir
mount -o loop ./livecd-vc3.iso ./dir
cp -R ./dir/* ./tmpiso/
umount ./dir
2. extract the initrd.img
mkdir tmpinitrd
cd tmpinitrd
gzip -cd ../tmpiso/boot/initrd.img.img | cpio -imd --quiet
3. remove the module
rm ./lib/modules/2.6.20/kernel/drivers/scsi/sym53c8xx_2/sym53c8xx.ko
4. zip up the initrd and copy it into the temporary iso dir
chmod -R 755 ../tmpiso
rm ../tmpiso/boot/initrd.img
find . | cpio --quiet -c -o | gzip -9 -n  ../tmpiso/boot/initrd.img
5. create the iso
cd ../tmpiso
mkisofs -J -r -o ../livecd.iso -b boot/isolinux/isolinux.bin  -c
boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 
-boot-info-table
/home/rbays/tmpiso/
   
Should work...
   
Cheers,
Robert.
   
   
Max wrote:
No I have not had any time to fool with it these past few days...
but from what I can tell the sym53c8xx module is loaded before the 
needed
cpqarray module and thats what is causing the failure. I have tried
unloading the modules and reloading cpqarray but don't seem to have
any luck. My guess is the SCSI controller needs to be reset or what
have you.
I have not had any luck disabling the sym53c8xx module from the boot
loader so I think the next step is to build a live CD from scratch.
I've never built a live CD so its going to be a learning thing for me
for sure. Maybe you will have better luck... Let me know if you find
anything :)
   
On Nov 26, 2007 11:46 PM, Cory B. Goleman [EMAIL PROTECTED] wrote:
   
   
I'm having the same problem, trying to install Vyatta 3.0 to a DL 
360 G1
with a RAID 1 configuration, have you made any progress on this?
   
   
   
Regards
   
Cory-
   
   
___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users
   

  
   
   ___
   Vyatta-users mailing list
   Vyatta-users@mailman.vyatta.com
   http://mailman.vyatta.com/mailman/listinfo/vyatta-users
  
 

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-28 Thread Max
Well I followed your directions step by step and didn't have any
problems until attempting to boot the CD. Check out the attached
screen shot..
What do you recommend checking out?



On Nov 27, 2007 5:39 PM, Max [EMAIL PROTECTED] wrote:
 That was more less what i was going to do. You saved me a good deal of
 work trying to figure out the right way to recreate the ISO. If this
 works out, I owe you a pint! :D


 On Nov 27, 2007 5:07 PM, Robert Bays [EMAIL PROTECTED] wrote:
  Max,
 
  To avoid building from scratch you could just edit the initrd.  Try
  something like the following...
 
  1. mount the iso to a loop device and copy the contents to a tmpdir
  mount -o loop ./livecd-vc3.iso ./dir
  cp -R ./dir/* ./tmpiso/
  umount ./dir
  2. extract the initrd.img
  mkdir tmpinitrd
  cd tmpinitrd
  gzip -cd ../tmpiso/boot/initrd.img.img | cpio -imd --quiet
  3. remove the module
  rm ./lib/modules/2.6.20/kernel/drivers/scsi/sym53c8xx_2/sym53c8xx.ko
  4. zip up the initrd and copy it into the temporary iso dir
  chmod -R 755 ../tmpiso
  rm ../tmpiso/boot/initrd.img
  find . | cpio --quiet -c -o | gzip -9 -n  ../tmpiso/boot/initrd.img
  5. create the iso
  cd ../tmpiso
  mkisofs -J -r -o ../livecd.iso -b boot/isolinux/isolinux.bin  -c
  boot/isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table
  /home/rbays/tmpiso/
 
  Should work...
 
  Cheers,
  Robert.
 
 
  Max wrote:
   No I have not had any time to fool with it these past few days...
   but from what I can tell the sym53c8xx module is loaded before the needed
   cpqarray module and thats what is causing the failure. I have tried
   unloading the modules and reloading cpqarray but don't seem to have
   any luck. My guess is the SCSI controller needs to be reset or what
   have you.
   I have not had any luck disabling the sym53c8xx module from the boot
   loader so I think the next step is to build a live CD from scratch.
   I've never built a live CD so its going to be a learning thing for me
   for sure. Maybe you will have better luck... Let me know if you find
   anything :)
  
   On Nov 26, 2007 11:46 PM, Cory B. Goleman [EMAIL PROTECTED] wrote:
  
  
  
   I'm having the same problem, trying to install Vyatta 3.0 to a DL 360 G1
   with a RAID 1 configuration, have you made any progress on this?
  
  
  
   Regards
  
   Cory-
  
  
   ___
   Vyatta-users mailing list
   Vyatta-users@mailman.vyatta.com
   http://mailman.vyatta.com/mailman/listinfo/vyatta-users
 

attachment: Picture 1.png___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-26 Thread Aubrey Wells
As far as I am aware, XORP does nothing but routing. Vyatta adds in  
the firewall, nat, vpn, and other features. They've also made changes  
to XORP itself. One of the Vyatta guys will probably chime in with  
more detail than I can provide here soon.

--
Aubrey Wells
Senior Engineer
Shelton | Johns Technology Group
A Vyatta Ready Partner
www.sheltonjohns.com




On Nov 26, 2007, at 6:20 PM, Max wrote:

 I am curious as to what makes Vyatta different from XORP other than
 the commercial support? Are there features in Vyatta that XORP does
 not have?

 On Nov 22, 2007 10:39 AM, silvertip257 [EMAIL PROTECTED] wrote:
 All righty ;) ... if you say so ... at this point I'm trying to  
 learn all I
 can before I get a full time job as a net admin or something like  
 that (I'm
 still in college at this point).  The pinch time brings in weird  
 proprietary
 crap called mainly Micr0$0ft, but I've been seeing lately Ci$c0  
 hasn't been
 much better ;).  Maybe it's the outrageous prices for IOS compact  
 flash
 cards we use in the networking labs.  Hell the profs got smart and  
 copied
 the IOS to a hard drive and then re-imaged them on $8 128MB compact  
 flash
 cards.  But just having such a price difference is a lotta crap.

 I'm seeing that when companies work with me and let me work with  
 them, I
 understand their products more and actually want to roll their  
 products out
 in a workplace.

 Good luck to you ... the above was nothing personal ... until I learn
 everything about Vyatta  and customization, I will most likely not  
 use it or
 suggest it in the workplace.  No job is worth being fired b/c I  
 suggested
 something I don't know (almost) everything about.  That's an extreme
 example, but I hate screwing up or getting loads of criticism  
 (unless it's
 truly constructive).

 Tell me how it goes.  Vyatta is not out of the picture ... they're  
 fixing
 features everyday.
 They also don't have all the hardware, nor have they had all of it  
 tested
 with their OS.

 Have a good holiday,
 Mike



 On Nov 21, 2007 1:52 AM, Max [EMAIL PROTECTED] wrote:

 I've been a Linux guy for years but have never messed around with  
 any of
 the boot CD stuff. This is going to be a learning thing for me for  
 sure, so
 wish me luck ;)
 If I am unsucessful on my own (+misc support), I am afraid I am  
 just going
 to lean twards buying a few cisco 7900's. It is the proven  
 reliability and
 support that Cisco brings to the table.

 *note* I am a CCNP so I am a little biast, also down 8 pints of  
 Guinness
 ;p

 
 From: silvertip257  [EMAIL PROTECTED]
 Sent: Tuesday, November 20, 2007 11:38 PM
 To: Max  [EMAIL PROTECTED]
 Subject: Re: [Vyatta-users] Compaq DL360 G1 - cpqarray




 I'm reading it, but as I have not customized Vyatta myself yet, I  
 really
 can't help you much.
 If you feel like it and learn something neat on how to build one a  
 certain
 way, please do share the information!

 Mike


 On Nov 20, 2007 6:12 PM, Max [EMAIL PROTECTED] wrote:

 I have been unable to blacklist the sym53c8xx module from the boot
 loader so I am going to try to create another live CD with out the
 sym53c8xx in the initramfs. Unless anyone has any comments?




 On Nov 19, 2007 9:32 PM, Max [EMAIL PROTECTED] wrote:
 Hey'a fellas! I have a bit of a head scratcher here.. it seems the
 Vyatta 3.0 live CD does not work out of the box on G1 Compaq  
 DL360's.
 From what I can tell the sym53c8xx module is loaded before the  
 needed
 cpqarray module and thats what is causing the failure. I have  
 tried
 unloading the modules and reloading cpqarray but don't seem to  
 have
 any luck. My guess is the SCSI controller needs to be reset or  
 what
 have you.
 Is there a way to prevent the sym53c8xx module from loading from  
 the
 boot loader? Or should I look into recreating the live CD from  
 scratch
 with my own kernel? Thanks in advance!

 ___
 Vyatta-users mailing list
 Vyatta-users@mailman.vyatta.com
 http://mailman.vyatta.com/mailman/listinfo/vyatta-users




 --
 //  SilverTip257  //
 ==
 Ubuntu 7.04 (Feisty Fawn)
 --- Linux for human beings.
 (http://www.ubuntu.com/)
 ~~
 Helix --- Don't leave /home without it.
 (http://www.efense.com/helix/)



 --
 //  SilverTip257  //
 ==
 Ubuntu 7.04 (Feisty Fawn)
 --- Linux for human beings.
 (http://www.ubuntu.com/)
 ~~
 Helix --- Don't leave /home without it.
 (http://www.efense.com/helix/)
 ___
 Vyatta-users mailing list
 Vyatta-users@mailman.vyatta.com
 http://mailman.vyatta.com/mailman/listinfo/vyatta-users

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-26 Thread Dave Roberts
 I am curious as to what makes Vyatta different from XORP 
 other than the commercial support? Are there features in 
 Vyatta that XORP does not have?

Yes, lots. Other than the stuff Aubrey mentioned at the macro-feature
level (firewall, VPN, NAT, etc.), we have also made extensive changes to
the routing protocol codebase to include features such as VLANs and
scalability enhancements and bug fixes.

-- Dave

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-26 Thread Justin Fletcher
It's also an integrated system; you configure the entire router
through the Vyatta
interface, rather than running multiple programs and editing numerous
and varied configuration files, all with different formats in
entertaining locations.

Justin

On Nov 26, 2007 3:20 PM, Max [EMAIL PROTECTED] wrote:
 I am curious as to what makes Vyatta different from XORP other than
 the commercial support? Are there features in Vyatta that XORP does
 not have?

 On Nov 22, 2007 10:39 AM, silvertip257 [EMAIL PROTECTED] wrote:
  All righty ;) ... if you say so ... at this point I'm trying to learn all I
  can before I get a full time job as a net admin or something like that (I'm
  still in college at this point).  The pinch time brings in weird proprietary
  crap called mainly Micr0$0ft, but I've been seeing lately Ci$c0 hasn't been
  much better ;).  Maybe it's the outrageous prices for IOS compact flash
  cards we use in the networking labs.  Hell the profs got smart and copied
  the IOS to a hard drive and then re-imaged them on $8 128MB compact flash
  cards.  But just having such a price difference is a lotta crap.
 
  I'm seeing that when companies work with me and let me work with them, I
  understand their products more and actually want to roll their products out
  in a workplace.
 
  Good luck to you ... the above was nothing personal ... until I learn
  everything about Vyatta  and customization, I will most likely not use it or
  suggest it in the workplace.  No job is worth being fired b/c I suggested
  something I don't know (almost) everything about.  That's an extreme
  example, but I hate screwing up or getting loads of criticism (unless it's
  truly constructive).
 
  Tell me how it goes.  Vyatta is not out of the picture ... they're fixing
  features everyday.
  They also don't have all the hardware, nor have they had all of it tested
  with their OS.
 
  Have a good holiday,
  Mike
 
 
 
  On Nov 21, 2007 1:52 AM, Max [EMAIL PROTECTED] wrote:
  
   I've been a Linux guy for years but have never messed around with any of
  the boot CD stuff. This is going to be a learning thing for me for sure, so
  wish me luck ;)
   If I am unsucessful on my own (+misc support), I am afraid I am just going
  to lean twards buying a few cisco 7900's. It is the proven reliability and
  support that Cisco brings to the table.
  
   *note* I am a CCNP so I am a little biast, also down 8 pints of Guinness
  ;p
  
   
  From: silvertip257  [EMAIL PROTECTED]
   Sent: Tuesday, November 20, 2007 11:38 PM
   To: Max  [EMAIL PROTECTED]
   Subject: Re: [Vyatta-users] Compaq DL360 G1 - cpqarray
  
  
  
  
   I'm reading it, but as I have not customized Vyatta myself yet, I really
  can't help you much.
   If you feel like it and learn something neat on how to build one a certain
  way, please do share the information!
  
   Mike

  
  
   On Nov 20, 2007 6:12 PM, Max [EMAIL PROTECTED] wrote:
  
I have been unable to blacklist the sym53c8xx module from the boot
loader so I am going to try to create another live CD with out the
sym53c8xx in the initramfs. Unless anyone has any comments?
   
   
   
   
On Nov 19, 2007 9:32 PM, Max [EMAIL PROTECTED] wrote:
 Hey'a fellas! I have a bit of a head scratcher here.. it seems the
 Vyatta 3.0 live CD does not work out of the box on G1 Compaq DL360's.
 From what I can tell the sym53c8xx module is loaded before the needed
 cpqarray module and thats what is causing the failure. I have tried
 unloading the modules and reloading cpqarray but don't seem to have
 any luck. My guess is the SCSI controller needs to be reset or what
 have you.
 Is there a way to prevent the sym53c8xx module from loading from the
 boot loader? Or should I look into recreating the live CD from scratch
 with my own kernel? Thanks in advance!

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users
   
  
  
  
   --
   //  SilverTip257  //
   ==
   Ubuntu 7.04 (Feisty Fawn)
   --- Linux for human beings.
   (http://www.ubuntu.com/)
   ~~
   Helix --- Don't leave /home without it.
   (http://www.efense.com/helix/)
 
 
 
  --
  //  SilverTip257  //
  ==
  Ubuntu 7.04 (Feisty Fawn)
  --- Linux for human beings.
  (http://www.ubuntu.com/)
  ~~
  Helix --- Don't leave /home without it.
  (http://www.efense.com/helix/)

 ___
 Vyatta-users mailing list
 Vyatta-users@mailman.vyatta.com
 http://mailman.vyatta.com/mailman/listinfo/vyatta-users

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-26 Thread Max
Sounds like Vyatta is the one :)
I'm still having issues with this freakin cpqarray, I will have to bug
you guys some more on it when I get back to it :p

On Nov 26, 2007 7:02 PM, Justin Fletcher [EMAIL PROTECTED] wrote:
 It's also an integrated system; you configure the entire router
 through the Vyatta
 interface, rather than running multiple programs and editing numerous
 and varied configuration files, all with different formats in
 entertaining locations.

 Justin


 On Nov 26, 2007 3:20 PM, Max [EMAIL PROTECTED] wrote:
  I am curious as to what makes Vyatta different from XORP other than
  the commercial support? Are there features in Vyatta that XORP does
  not have?
 
  On Nov 22, 2007 10:39 AM, silvertip257 [EMAIL PROTECTED] wrote:
   All righty ;) ... if you say so ... at this point I'm trying to learn all 
   I
   can before I get a full time job as a net admin or something like that 
   (I'm
   still in college at this point).  The pinch time brings in weird 
   proprietary
   crap called mainly Micr0$0ft, but I've been seeing lately Ci$c0 hasn't 
   been
   much better ;).  Maybe it's the outrageous prices for IOS compact flash
   cards we use in the networking labs.  Hell the profs got smart and copied
   the IOS to a hard drive and then re-imaged them on $8 128MB compact flash
   cards.  But just having such a price difference is a lotta crap.
  
   I'm seeing that when companies work with me and let me work with them, I
   understand their products more and actually want to roll their products 
   out
   in a workplace.
  
   Good luck to you ... the above was nothing personal ... until I learn
   everything about Vyatta  and customization, I will most likely not use it 
   or
   suggest it in the workplace.  No job is worth being fired b/c I suggested
   something I don't know (almost) everything about.  That's an extreme
   example, but I hate screwing up or getting loads of criticism (unless it's
   truly constructive).
  
   Tell me how it goes.  Vyatta is not out of the picture ... they're fixing
   features everyday.
   They also don't have all the hardware, nor have they had all of it tested
   with their OS.
  
   Have a good holiday,
   Mike
  
  
  
   On Nov 21, 2007 1:52 AM, Max [EMAIL PROTECTED] wrote:
   
I've been a Linux guy for years but have never messed around with any of
   the boot CD stuff. This is going to be a learning thing for me for sure, 
   so
   wish me luck ;)
If I am unsucessful on my own (+misc support), I am afraid I am just 
going
   to lean twards buying a few cisco 7900's. It is the proven reliability and
   support that Cisco brings to the table.
   
*note* I am a CCNP so I am a little biast, also down 8 pints of Guinness
   ;p
   

   From: silvertip257  [EMAIL PROTECTED]
Sent: Tuesday, November 20, 2007 11:38 PM
To: Max  [EMAIL PROTECTED]
Subject: Re: [Vyatta-users] Compaq DL360 G1 - cpqarray
   
   
   
   
I'm reading it, but as I have not customized Vyatta myself yet, I really
   can't help you much.
If you feel like it and learn something neat on how to build one a 
certain
   way, please do share the information!
   
Mike
 
   
   
On Nov 20, 2007 6:12 PM, Max [EMAIL PROTECTED] wrote:
   
 I have been unable to blacklist the sym53c8xx module from the boot
 loader so I am going to try to create another live CD with out the
 sym53c8xx in the initramfs. Unless anyone has any comments?




 On Nov 19, 2007 9:32 PM, Max [EMAIL PROTECTED] wrote:
  Hey'a fellas! I have a bit of a head scratcher here.. it seems the
  Vyatta 3.0 live CD does not work out of the box on G1 Compaq 
  DL360's.
  From what I can tell the sym53c8xx module is loaded before the 
  needed
  cpqarray module and thats what is causing the failure. I have tried
  unloading the modules and reloading cpqarray but don't seem to have
  any luck. My guess is the SCSI controller needs to be reset or what
  have you.
  Is there a way to prevent the sym53c8xx module from loading from the
  boot loader? Or should I look into recreating the live CD from 
  scratch
  with my own kernel? Thanks in advance!
 
 ___
 Vyatta-users mailing list
 Vyatta-users@mailman.vyatta.com
 http://mailman.vyatta.com/mailman/listinfo/vyatta-users

   
   
   
--
//  SilverTip257  //
==
Ubuntu 7.04 (Feisty Fawn)
--- Linux for human beings.
(http://www.ubuntu.com/)
~~
Helix --- Don't leave /home without it.
(http://www.efense.com/helix/)
  
  
  
   --
   //  SilverTip257  //
   ==
   Ubuntu 7.04 (Feisty Fawn)
   --- Linux for human beings.
   (http://www.ubuntu.com/)
   ~~
   Helix --- Don't leave /home without it.
   (http://www.efense.com/helix

Re: [Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-20 Thread Max
I have been unable to blacklist the sym53c8xx module from the boot
loader so I am going to try to create another live CD with out the
sym53c8xx in the initramfs. Unless anyone has any comments?

On Nov 19, 2007 9:32 PM, Max [EMAIL PROTECTED] wrote:
 Hey'a fellas! I have a bit of a head scratcher here.. it seems the
 Vyatta 3.0 live CD does not work out of the box on G1 Compaq DL360's.
 From what I can tell the sym53c8xx module is loaded before the needed
 cpqarray module and thats what is causing the failure. I have tried
 unloading the modules and reloading cpqarray but don't seem to have
 any luck. My guess is the SCSI controller needs to be reset or what
 have you.
 Is there a way to prevent the sym53c8xx module from loading from the
 boot loader? Or should I look into recreating the live CD from scratch
 with my own kernel? Thanks in advance!

___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users


[Vyatta-users] Compaq DL360 G1 - cpqarray

2007-11-19 Thread Max
Hey'a fellas! I have a bit of a head scratcher here.. it seems the
Vyatta 3.0 live CD does not work out of the box on G1 Compaq DL360's.
From what I can tell the sym53c8xx module is loaded before the needed
cpqarray module and thats what is causing the failure. I have tried
unloading the modules and reloading cpqarray but don't seem to have
any luck. My guess is the SCSI controller needs to be reset or what
have you.
Is there a way to prevent the sym53c8xx module from loading from the
boot loader? Or should I look into recreating the live CD from scratch
with my own kernel? Thanks in advance!
___
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users