Anybody installed on HP Pavilion XH215?
Or as anybody even heard of an HP Pavilion XH215? I can get that model for a pretty decent price at my local CostCo. (a club warehouse seller), but I haven't been able to find much info re: the chipsets, etc in the laptop. Of course, if I do purchase the laptop, I intend to install Debian. So, back to my original question: does anybody have experience with this model? Thanks, Alan Chen __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Re: Anybody installed on HP Pavilion XH215?
The model seems very similiar to their N5000 series in general. The XH215 specs are: PIII 750 194MB RAM (not one of the more common RAM demoninations) CD-RW 13.3" screen 56k+NIC 20G HD PCMCIA slots of some sort Sound of some sort Unfortunately, CostCo has great prices, but pretty much puts their merchandise in warehouses, with stacked cardboard boxes. They're really good about selecting high-quality stuff in general though. I'll probably think about it for a while to see if HP rolls out some info on their website. I'll probably buy it anyway. :) --- "John R. Sheets" <[EMAIL PROTECTED]> wrote: > On Feb 26, 2001, Alan Chen <[EMAIL PROTECTED]> wrote: > <> > > Nope, haven't heard of it. Is it brand new? What does it have in it? > I'm running Debian woody on my Pavilion N5195 laptop, and for the most > part it works pretty well. I haven't gotten APM working yet, nor the > middle scrollbutton below the trackpad. You could look up the N5195 > on hp.com, and if it's similar, I could give you some pointers. You > might be able to get some hardware stats from CostCo too. > > Otherwise, I've heard that HP is going to roll out a bunch of new > stuff on its linux.hp.com website in the next month or so (just second > hand info, so don't quote me on that). > > John __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Compiling tulip driver
I've just installed Debian on my new HP Pavilion XH215. (a N5xxx equivalent) One minor wrinkle is that the ethernet device is an Accton EN2422 MiniPCI. Apparently, there is an updated tulip driver which recognizes my ethernet device. I've downloaded it and am now looking for the simplest method to recompile my tulip driver. So far I'm considering 1) recompiling the whole kernel and having the new tulip.c file picked up in the process 2) trying to recompile just the tulip.o module and use it with my stock 2.2r2 install. So are there any recommendations, dire warnings, etc? --Alan __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Re: dhcp with pcmcia
Can you manually enable your ethernet card using ifup eth0 I'm using dhcpcd with my internal ethernet. --Alan --- Andrew D Dixon <[EMAIL PROTECTED]> wrote: > Hi All, > I'm trying to configure my laptop to use dhcp and I'm running into some > trouble. > > Formerly it was using a static IP address so I went into /etc/pcmcia and > edited network.opts deleting all of the static stuff and I added: > > DHCP="y" > > Now, when I inster my ethernet card I get two beeps, one high and the second > low (problem). the LED's on the jack indicate that the connection's OK but > ifconfig doesn't show an entry for eth0. > > Any help, hints, pointers in the right direction would be greatly > appreciated. > > Thanks, > Andy > > P.S. I'm using pump right now and I'm going to try dhcpcd and dhcp-client. __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Hot keys on HP Pavilion
I'm trying to get my hot keys to respond on my HP Pavilion. There's a mail key, a www key, a help key, and a misc key. I've tried xev and scankey -s and neither shows any response to keypresses on those buttons. I'm willing to do some coding to get them to work eventually, but am at a loss for where to start looking to start that process. Can anyone point me in the right direction? --Alan __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Re: compaq internet keys
BTW, I think you might need to be in a non-X console for showkey to work. I have similiar keys on my HP laptop, but I haven't gotten to work yet. Talking to the author of the keyboard howto, if showkey doesn't respond to keypresses for your "zone" keys, you might need to play with some kernel code to see if the kernel is even receiving data for those buttons via the kb interface. I haven't had time to do this yet, but it's on my list of "nice if I could get it working" features for my laptop -- just after "upgrade to 2.4 to see if ACPI let's me suspend,resume" In my case, I suspect that the HP buttons are attached to some special purpose h/w in the laptop. They're also near a microswitch that shuts off the LCD when it's sufficiently closed. I'd be interested in how it goes for your buttons -- either on the list or off. --Alan --- Peter Cordes <[EMAIL PROTECTED]> wrote: > On Mon, Mar 26, 2001 at 12:47:59AM -0500, Brian Stults wrote: > > Does anyone know how to remap the "internet zone" keys on a Compaq > > 1800? I tried xkeycaps, but it doesn't recognize the key when > pressed. > > xev also does not notice the key being pressed. > > The X server can't send events if the kernel isn't passing keycodes > to it, > or if it doesn't know what events to map the keycodes to. > > Use showkey(1) to find out what the key codes are, then feed > something like > keycode 200 = Hyper_L > or > keycode 220 = XF86LightBulb > (I just fired up xkeycaps to see what weird stuff you could do with > extra > keys, and under Vendor keysyms, XF86LightBulb really exists... :) > > BTW, some/all of this may not work at all, since I just pulled it > out of my > ass :) __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Re: compaq internet keys
Well, there was no joy on /proc/stat. None of the interrupts responded to "zone" keypresses, no interrupts on the "rocker" switch on my keypad either. I'm thinking that something needs to be enabled first. Back to plan A, look at kernel code. :) Thanks anyway, it's still a useful tip. --Alan --- Peter Cordes wrote: > On Mon, Mar 26, 2001 at 10:50:14AM -0800, Alan Chen wrote: > > BTW, I think you might need to be in a non-X console for showkey > to > > work. > > Yes, of course. > > > I have similiar keys on my HP laptop, but I haven't gotten to > > work yet. Talking to the author of the keyboard howto, if showkey > > doesn't respond to keypresses for your "zone" keys, you might need > to > > play with some kernel code to see if the kernel is even receiving > data > > for those buttons via the kb interface. > > You can see if pressing them makes anything at all happen, by > looking > at > the interrupt counters in /proc/stat. Run > watch -n1 grep intr /proc/stat > and press the keys. If any interrupt counters other than the timer > (irq 0), > ethernet, and disk (and anything else that generates interrupts by > itself) > go up, then you've got something. > The first number after intr is the total of all interrupts, the > numbers > after are the counts for irq0, irq1, ... > > BTW, this will work even if there is no driver using that IRQ, > which > is > necessary for /proc/interrupts to show it. > > -- > #define X(x,y) x##y > Peter Cordes ; e-mail: X([EMAIL PROTECTED] , ns.ca) __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Re: HP Pavillion n5270
I've gotten a HP Pavilion XH215 working. I think they're similiar. I have an Accton EN2242 ethernet (tulip based) and a ESS Allegro Modem (non-operational win-modem) in mine. The sound will supposedly work, but I haven't gotten around to installing the alsa drivers yet. The video was a S2 Savage IX Mobile and it worked fine. I'm running Debian 2.2r2 with the latest updates. I had to do some tweaking the ethernet working. The tulip driver just needed the mfr. ID added to various tables in the tulip.c file. Feel free to mail me if the hardware matches and if you have any problems. --- Bill Shui <[EMAIL PROTECTED]> wrote: > Has anyone got this model working under debian? > > I'm not sure about the mini-pci modem/ethernet > and the sound. > > are they supported? > > Bill > -- > Documentation is like sex: when it is good, it is very, > very good; and when it is bad, it is better than nothing. > -- Dick Brandon > - > Bill Shui Email: [EMAIL PROTECTED] > Bioinformatics Programmer __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
Anybody installed on HP Pavilion XH215?
Or as anybody even heard of an HP Pavilion XH215? I can get that model for a pretty decent price at my local CostCo. (a club warehouse seller), but I haven't been able to find much info re: the chipsets, etc in the laptop. Of course, if I do purchase the laptop, I intend to install Debian. So, back to my original question: does anybody have experience with this model? Thanks, Alan Chen __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Anybody installed on HP Pavilion XH215?
The model seems very similiar to their N5000 series in general. The XH215 specs are: PIII 750 194MB RAM (not one of the more common RAM demoninations) CD-RW 13.3" screen 56k+NIC 20G HD PCMCIA slots of some sort Sound of some sort Unfortunately, CostCo has great prices, but pretty much puts their merchandise in warehouses, with stacked cardboard boxes. They're really good about selecting high-quality stuff in general though. I'll probably think about it for a while to see if HP rolls out some info on their website. I'll probably buy it anyway. :) --- "John R. Sheets" <[EMAIL PROTECTED]> wrote: > On Feb 26, 2001, Alan Chen <[EMAIL PROTECTED]> wrote: > <> > > Nope, haven't heard of it. Is it brand new? What does it have in it? > I'm running Debian woody on my Pavilion N5195 laptop, and for the most > part it works pretty well. I haven't gotten APM working yet, nor the > middle scrollbutton below the trackpad. You could look up the N5195 > on hp.com, and if it's similar, I could give you some pointers. You > might be able to get some hardware stats from CostCo too. > > Otherwise, I've heard that HP is going to roll out a bunch of new > stuff on its linux.hp.com website in the next month or so (just second > hand info, so don't quote me on that). > > John __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Compiling tulip driver
I've just installed Debian on my new HP Pavilion XH215. (a N5xxx equivalent) One minor wrinkle is that the ethernet device is an Accton EN2422 MiniPCI. Apparently, there is an updated tulip driver which recognizes my ethernet device. I've downloaded it and am now looking for the simplest method to recompile my tulip driver. So far I'm considering 1) recompiling the whole kernel and having the new tulip.c file picked up in the process 2) trying to recompile just the tulip.o module and use it with my stock 2.2r2 install. So are there any recommendations, dire warnings, etc? --Alan __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: dhcp with pcmcia
Can you manually enable your ethernet card using ifup eth0 I'm using dhcpcd with my internal ethernet. --Alan --- Andrew D Dixon <[EMAIL PROTECTED]> wrote: > Hi All, > I'm trying to configure my laptop to use dhcp and I'm running into some > trouble. > > Formerly it was using a static IP address so I went into /etc/pcmcia and > edited network.opts deleting all of the static stuff and I added: > > DHCP="y" > > Now, when I inster my ethernet card I get two beeps, one high and the second > low (problem). the LED's on the jack indicate that the connection's OK but > ifconfig doesn't show an entry for eth0. > > Any help, hints, pointers in the right direction would be greatly > appreciated. > > Thanks, > Andy > > P.S. I'm using pump right now and I'm going to try dhcpcd and dhcp-client. __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Hot keys on HP Pavilion
I'm trying to get my hot keys to respond on my HP Pavilion. There's a mail key, a www key, a help key, and a misc key. I've tried xev and scankey -s and neither shows any response to keypresses on those buttons. I'm willing to do some coding to get them to work eventually, but am at a loss for where to start looking to start that process. Can anyone point me in the right direction? --Alan __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: compaq internet keys
BTW, I think you might need to be in a non-X console for showkey to work. I have similiar keys on my HP laptop, but I haven't gotten to work yet. Talking to the author of the keyboard howto, if showkey doesn't respond to keypresses for your "zone" keys, you might need to play with some kernel code to see if the kernel is even receiving data for those buttons via the kb interface. I haven't had time to do this yet, but it's on my list of "nice if I could get it working" features for my laptop -- just after "upgrade to 2.4 to see if ACPI let's me suspend,resume" In my case, I suspect that the HP buttons are attached to some special purpose h/w in the laptop. They're also near a microswitch that shuts off the LCD when it's sufficiently closed. I'd be interested in how it goes for your buttons -- either on the list or off. --Alan --- Peter Cordes <[EMAIL PROTECTED]> wrote: > On Mon, Mar 26, 2001 at 12:47:59AM -0500, Brian Stults wrote: > > Does anyone know how to remap the "internet zone" keys on a Compaq > > 1800? I tried xkeycaps, but it doesn't recognize the key when > pressed. > > xev also does not notice the key being pressed. > > The X server can't send events if the kernel isn't passing keycodes > to it, > or if it doesn't know what events to map the keycodes to. > > Use showkey(1) to find out what the key codes are, then feed > something like > keycode 200 = Hyper_L > or > keycode 220 = XF86LightBulb > (I just fired up xkeycaps to see what weird stuff you could do with > extra > keys, and under Vendor keysyms, XF86LightBulb really exists... :) > > BTW, some/all of this may not work at all, since I just pulled it > out of my > ass :) __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: compaq internet keys
Well, there was no joy on /proc/stat. None of the interrupts responded to "zone" keypresses, no interrupts on the "rocker" switch on my keypad either. I'm thinking that something needs to be enabled first. Back to plan A, look at kernel code. :) Thanks anyway, it's still a useful tip. --Alan --- Peter Cordes wrote: > On Mon, Mar 26, 2001 at 10:50:14AM -0800, Alan Chen wrote: > > BTW, I think you might need to be in a non-X console for showkey > to > > work. > > Yes, of course. > > > I have similiar keys on my HP laptop, but I haven't gotten to > > work yet. Talking to the author of the keyboard howto, if showkey > > doesn't respond to keypresses for your "zone" keys, you might need > to > > play with some kernel code to see if the kernel is even receiving > data > > for those buttons via the kb interface. > > You can see if pressing them makes anything at all happen, by > looking > at > the interrupt counters in /proc/stat. Run > watch -n1 grep intr /proc/stat > and press the keys. If any interrupt counters other than the timer > (irq 0), > ethernet, and disk (and anything else that generates interrupts by > itself) > go up, then you've got something. > The first number after intr is the total of all interrupts, the > numbers > after are the counts for irq0, irq1, ... > > BTW, this will work even if there is no driver using that IRQ, > which > is > necessary for /proc/interrupts to show it. > > -- > #define X(x,y) x##y > Peter Cordes ; e-mail: X([EMAIL PROTECTED] , ns.ca) __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: HP Pavillion n5270
I've gotten a HP Pavilion XH215 working. I think they're similiar. I have an Accton EN2242 ethernet (tulip based) and a ESS Allegro Modem (non-operational win-modem) in mine. The sound will supposedly work, but I haven't gotten around to installing the alsa drivers yet. The video was a S2 Savage IX Mobile and it worked fine. I'm running Debian 2.2r2 with the latest updates. I had to do some tweaking the ethernet working. The tulip driver just needed the mfr. ID added to various tables in the tulip.c file. Feel free to mail me if the hardware matches and if you have any problems. --- Bill Shui <[EMAIL PROTECTED]> wrote: > Has anyone got this model working under debian? > > I'm not sure about the mini-pci modem/ethernet > and the sound. > > are they supported? > > Bill > -- > Documentation is like sex: when it is good, it is very, > very good; and when it is bad, it is better than nothing. > -- Dick Brandon > - > Bill Shui Email: [EMAIL PROTECTED] > Bioinformatics Programmer __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]