re: no sound on debian squeeze

2009-12-05 Thread Alexander Kaphuk

G'day,

I've recently upgraded to Debian Squeeze and the sound's stopped 
working. It did work on Debian Lenny.


I'd appreciate some advice on what to do please.

Thanks in advance,

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: increasing screen resolution, nvidia xconf.org

2009-12-05 Thread Alexander Kaphuk
Please see an email below for a solution to a similar problem I had with 
the screen resolution not being detected properly on a HP Compaq 
Presario laptop.


 Original Message 
Subject:re: setting screen resolution to 1366x768 [SOLVED]
Date:   Sun, 15 Nov 2009 18:14:54 +0200
From:   Alexander Kaphuk 
To: debian-user@lists.debian.org



Hi,

I'd like to once again thank those of you who have responded to my 
earlier emails on the subject in question.


The solution to my problem turned out to be an easy one. I upgraded to 
Squeeze which uses 'xserver-xorg-video-nv' version '1:2.1.14-2', which 
automatically sets the screen resolution to '1366x768'.


So I thought I'd report back to the community just in case someone else 
find themselves in a similar situation and might find this post useful.


Regards,

Alexander Kapshuk.



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: copying files from home directory on one machine to directory on another machine

2009-11-29 Thread Alexander Kaphuk
Wow! Good to know there's an abundance of solutions to a given problem 
that can be explored.


Thanks a lot to all those who have responded to my original email!



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: copying files from home directory on one machine to directory on another machine

2009-11-28 Thread Alexander Kaphuk

Rob Owens wrote:

On Sat, Nov 28, 2009 at 09:42:23PM +0200, Alexander Kaphuk wrote:
  

G'day,

I'd appreciate somebody pointing me where to look for info on how to  
copy files from a home directory on one machine to a directory on  
another machine via network.


I've got about 100GB of data I need to copy from my desktop running  
ubuntu 9.04 on to a laptop running Debian Squeeze which are both at my 
home.




You'll have to address the ownership on those files.  If you're only
copying your own files, rsync will handle this for you.  If you're
copying many users' files as root, they will be assigned ownership based
on the UID number.  This will cause a problem under these circumstances:

Computer 1:
user1   UID=1000
user2   UID=1001

Computer 2:
user1   UID=1001
user2   UID=1002

If you transfer files from Computer 1 to Computer 2, user1's files will
end up being owned by no one when they get to Computer 2, and user2's
files will end up being owned by user1 when they get to Computer 2.

-Rob


  

Thanks for your input!

Sounds like my situation belongs to the former category. The files I 
need to transfer from one machine onto another are my own.


Good to know of what happens when dealing with files owned by someone else.

Thanks once again!


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: copying files from home directory on one machine to directory on another machine

2009-11-28 Thread Alexander Kaphuk

Andrew M.A. Cater wrote:

On Sat, Nov 28, 2009 at 09:42:23PM +0200, Alexander Kaphuk wrote:
  

G'day,

I'd appreciate somebody pointing me where to look for info on how to  
copy files from a home directory on one machine to a directory on  
another machine via network.


I've got about 100GB of data I need to copy from my desktop running  
ubuntu 9.04 on to a laptop running Debian Squeeze which are both at my 
home.


I'm not even sure how to word it in just a few words so I can google it.

Thanking you all in advance.

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a 
subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Add rsync :)

Call the user Alex and the machines One and Two for this example [192.168.1.1 
192.168.1.2]

If you can ssh from One to Two

ssh a...@one Two

or

ssh -l alex 192.168.1.2

mkdir mynewfiles

exit

On One

cd myfiles

rsync -pavz --delete . 192.168.1.2:/home/alex/myfiles/


[Copies from the current directory . to the distant directory].

-pavz - preserves permissions, archive, verbose, will try to compress files in 
transit if appropriate


If you don't have rsync, you can use scp -r to recursively copy almost 
identically - but the nice thing about
rsync is that it will restart cleanly, deleting partially copied files and preserves an internal manifest of which files 
are up to date. If your 100GB is subject to change in mid transfer, rsync will copy only the files which have changed 
and catch up.


Hope this helps,

All the best,

Andy






  

Thanks a lot for your input and the usage examples!

I've never done anything like that, so I'm open to any suggestions and 
am willing to give every piece of advice I am given a try.



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: copying files from home directory on one machine to directory on another machine

2009-11-28 Thread Alexander Kaphuk

Dave Witbrodt wrote:

Alexander Kaphuk wrote:

G'day,

I'd appreciate somebody pointing me where to look for info on how to 
copy files from a home directory on one machine to a directory on 
another machine via network.


I've got about 100GB of data I need to copy from my desktop running 
ubuntu 9.04 on to a laptop running Debian Squeeze which are both at 
my home.


I'm not even sure how to word it in just a few words so I can google it.


Maybe simplest way is using 'ssh'.  You can also use 'rsync', but if 
you've never used either before then learning about 'ssh' is arguably 
more important than learning 'rsync'.


First read this:
http://wiki.debian.org/ssh

Then read about 'scp' (included with 'ssh'):
http://en.wikipedia.org/wiki/Secure_copy


HTH,
Dave W.



That's right. I've never used either tool before. Thanks a lot for the tip!



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: copying files from home directory on one machine to directory on another machine

2009-11-28 Thread Alexander Kaphuk

Eduardo M KALINOWSKI wrote:

Alexander Kaphuk wrote:
  

G'day,

I'd appreciate somebody pointing me where to look for info on how to 
copy files from a home directory on one machine to a directory on 
another machine via network.


I've got about 100GB of data I need to copy from my desktop running 
ubuntu 9.04 on to a laptop running Debian Squeeze which are both at my home.


I'm not even sure how to word it in just a few words so I can google it.

Thanking you all in advance.

  



rsync can do it, and you can interrupt transfers and continue later if
necessary. It also preserves permissions, ownership, etc.


  

Thanks a lot!

I'll give it a try.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: copying files from home directory on one machine to directory on another machine

2009-11-28 Thread Alexander Kaphuk

G'day,

I'd appreciate somebody pointing me where to look for info on how to 
copy files from a home directory on one machine to a directory on 
another machine via network.


I've got about 100GB of data I need to copy from my desktop running 
ubuntu 9.04 on to a laptop running Debian Squeeze which are both at my home.


I'm not even sure how to word it in just a few words so I can google it.

Thanking you all in advance.

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: setting screen resolution to 1366x768 [SOLVED]

2009-11-15 Thread Alexander Kaphuk

Hi,

I'd like to once again thank those of you who have responded to my 
earlier emails on the subject in question.


The solution to my problem turned out to be an easy one. I upgraded to 
Squeeze which uses 'xserver-xorg-video-nv' version '1:2.1.14-2', which 
automatically sets the screen resolution to '1366x768'.


So I thought I'd report back to the community just in case someone else 
find themselves in a similar situation and might find this post useful.


Regards,

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: setting screen resolution to 1366x768

2009-11-14 Thread Alexander Kaphuk
I'd like to thank all those that have responded to my email about 
setting screen resolution to 1366x768 the other day.


Here's what I did...

1. Stopped gdm;
2. Downloaded the nVidia driver off their website ( 
NVIDIA-Linux-x86-190.42-pkg1.run);

3. Downloaded and installed the linux-headers and gcc-4.1;
4. Ran the installation script;
5. Restarted gmd;

I ended up with a screen divided into six parts (that's the best way i 
can put it).


I've done some googling looking for an answer, but haven't found 
anything in particular so far.


I'd appreciate anyone giving me some leads with regards to what needs to 
be done.


Thanks in advance.

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: setting screen resolution to 1366x768

2009-11-11 Thread Alexander Kaphuk

Boyd Stephen Smith Jr. wrote:

On Wednesday 11 November 2009 14:32:32 Alexander Kaphuk wrote:
  

I have installed Debian Lenny on a Compaq Presario. The screen
resolution was automatically set to 1024x768.
This resolution seems to be the highest available based on the output of
'xrandr'.
The native screen resolution for my laptop is 1366x768.



Video card?
  

nVidia GeForce G 103M.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: setting screen resolution to 1366x768

2009-11-11 Thread Alexander Kaphuk

Hi,
I have installed Debian Lenny on a Compaq Presario. The screen 
resolution was automatically set to 1024x768.
This resolution seems to be the highest available based on the output of 
'xrandr'.

The native screen resolution for my laptop is 1366x768.
I'd appreciate anyone suggesting how to go about it.
Thanking you all in advance.
Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: Gmail again

2009-09-23 Thread Alexander Kaphuk

Marcelo Chiapparini wrote:



2009/9/22 Alexander Kaphuk <mailto:sashaandta...@gmail.com>>


Eduardo M KALINOWSKI wrote:

On Ter, 22 Set 2009, Alexander Kaphuk wrote:

As far as my initial email being sent three times in a
row. I do apologise for the incident. I didn't do it on
purpose though. I was under the impression that I would
receive a copy of that email straight after sending it
off. I thought that's what happened when I new post was
sent. It didn't arrive, so I thought I'd try sending it
again. Thought I'd mention about that, as I realise that
some people were a bit upset by that.


You did get the e-mail (well, at least the mailserver sent it
to you). But Gmail as a "feature" that causes this received
e-mail to be ignored because there is the same e-mail in your
Sent "folder". Once a reply is received, the whole
conversation is moved to the INBOX (or a label of your choice,
if you have a filter) again.

I see. Thanks for letting me know.


Hi,

the solutions is to define a filter in gmail. The filter should put a 
label (for example "debian-user") on every email with 
"debian-u...@lists-debian.org <mailto:debian-u...@lists-debian.org>" 
in the "To:" field. This works fine for me. Besides putting the label, 
you can choose to remove the email from the INBOX folder automatically 
as well.
 
My two cents.

Marcelo


 



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org

<mailto:debian-user-requ...@lists.debian.org> with a subject of
"unsubscribe". Trouble? Contact listmas...@lists.debian.org
<mailto:listmas...@lists.debian.org>




--
Marcelo Chiapparini
http://sites.google.com/site/marcelochiapparini

Thanks a lot. I'll look into it.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: Gmail again

2009-09-22 Thread Alexander Kaphuk

Eduardo M KALINOWSKI wrote:

On Ter, 22 Set 2009, Alexander Kaphuk wrote:
As far as my initial email being sent three times in a row. I do 
apologise for the incident. I didn't do it on purpose though. I was 
under the impression that I would receive a copy of that email 
straight after sending it off. I thought that's what happened when I 
new post was sent. It didn't arrive, so I thought I'd try sending it 
again. Thought I'd mention about that, as I realise that some people 
were a bit upset by that.


You did get the e-mail (well, at least the mailserver sent it to you). 
But Gmail as a "feature" that causes this received e-mail to be 
ignored because there is the same e-mail in your Sent "folder". Once a 
reply is received, the whole conversation is moved to the INBOX (or a 
label of your choice, if you have a filter) again.



I see. Thanks for letting me know.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




Re: wmaster0: unknown hardware address type 801 while getting IP address for eth0 interface using DHCP]

2009-09-22 Thread Alexander Kaphuk
Sorry I took a while to reply to all those who had got back to me about 
my query.


My network is up and running now. As it turned out, it was a simple 
matter of getting my laptop ping the DSL modem before trying to connect 
to the outside world. No manual configuration was required. I am fairly 
new to Linux, so I guess I've learnt a lesson there.


As far as my initial email being sent three times in a row. I do 
apologise for the incident. I didn't do it on purpose though. I was 
under the impression that I would receive a copy of that email straight 
after sending it off. I thought that's what happened when I new post was 
sent. It didn't arrive, so I thought I'd try sending it again. Thought 
I'd mention about that, as I realise that some people were a bit upset 
by that.


Thanks once again for all your help.

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: wmaster0: unknown hardware address type 801 while getting IP address for eth0 interface using DHCP

2009-09-16 Thread Alexander Kaphuk

Hi,

I'm still having trouble configuring my wired network interface on 
Debian Lenny running on HP Compaq Presario CQ61.


I put "auto eth0; iface eth0 inet dhcp" (each statment on separate line 
as shown in debian wiki) into my /etc/network/interfaces file.
I ran "ifdown eth0; ifup eth0". I got this error message in the output 
"wmaster0: unknown hardware address type 801".
I also tried configuring the network setting manually, but to no avail. 
(see output of ifconfig -a and lspci -k below for details).


Is it something I'm doing wrong? Why wouldn't DHCP work during the 
installation process?


I have done quite a bit of googling about it. I have seen posts of other 
people experiencing similar problems as me, but so far have found no 
solution to the problem.


I'd appreciate any feedback on what needs to be done in my situation.

Thanking you all in advance.

Alexander Kapshuk.

# ifconfig -a
eth0  Link encap:Ethernet  HWaddr 00:23:8b:b2:e5:1f  UP 
BROADCAST MULTICAST  MTU:1500  Metric:1

RX packets:0 errors:0 dropped:1090863010 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
Interrupt:219 Base address:0x2000

loLink encap:Local Loopback  inet addr:127.0.0.1  
Mask:255.0.0.0

inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING  MTU:16436  Metric:1
RX packets:24 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1616 (1.5 KiB)  TX bytes:1616 (1.5 KiB)

wlan0 Link encap:Ethernet  HWaddr 00:24:2c:5e:06:f2  UP 
BROADCAST MULTICAST  MTU:1500  Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

wmaster0  Link encap:UNSPEC  HWaddr 
00-24-2C-5E-06-F2-6C-6F-00-00-00-00-00-00-00-00  UP BROADCAST 
RUNNING MULTICAST  MTU:1500  Metric:1

RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)


# lspci -k
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory 
Controller Hub (rev 07)

  Subsystem: Hewlett-Packard Company Device 306a
  Flags: bus master, fast devsel, latency 0
  Capabilities: [e0] Vendor Specific Information 
  Kernel modules: intel-agp

00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI 
Express Graphics Port (rev 07) (prog-if 00 [Normal decode])

  Flags: bus master, fast devsel, latency 0
  Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
  I/O behind bridge: 4000-4fff
  Memory behind bridge: d000-d2ff
  Prefetchable memory behind bridge: c000-cfff
  Capabilities: [88] Subsystem: Hewlett-Packard Company Device 306a
  Capabilities: [80] Power Management version 3
  Capabilities: [90] Message Signalled Interrupts: Mask- 64bit- 
Queue=0/0 Enable+

  Capabilities: [a0] Express Root Port (Slot+), MSI 00
  Capabilities: [100] Virtual Channel 
  Capabilities: [140] Root Complex Link 
  Kernel driver in use: pcieport-driver
  Kernel modules: shpchp

00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 (rev 03) (prog-if 00 [UHCI])

  Subsystem: Hewlett-Packard Company Device 306a
  Flags: bus master, medium devsel, latency 0, IRQ 16
  I/O ports at 50e0 [size=32]
  Capabilities: [50] PCIe advanced features 
  Kernel driver in use: uhci_hcd
  Kernel modules: uhci-hcd

00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #5 (rev 03) (prog-if 00 [UHCI])

  Subsystem: Hewlett-Packard Company Device 306a
  Flags: bus master, medium devsel, latency 0, IRQ 21
  I/O ports at 50c0 [size=32]
  Capabilities: [50] PCIe advanced features 
  Kernel driver in use: uhci_hcd
  Kernel modules: uhci-hcd

00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #2 (rev 03) (prog-if 20 [EHCI])

  Subsystem: Hewlett-Packard Company Device 306a
  Flags: bus master, medium devsel, latency 0, IRQ 19
  Memory at d7005c00 (32-bit, non-prefetchable) [size=1K]
  Capabilities: [50] Power Management version 2
  Capabilities: [58] Debug port: BAR=1 offset=00a0
  Capabilities: [98] PCIe advanced features 
  Kernel driver in use: ehci_hcd
  Kernel modules: ehci-hcd

00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio 
Controller (rev 03)

  Subsystem: Hewlett-Packard Company Device 306a
  Flags: bus master, fast devsel, latency 0, IRQ 22
  Memory at d700 (64-bit, non-prefetchable) [size=16K]
  Capabilities: [50] Power Management version 2
  Capabilities: [60] Message Signalled Interrupts: Mask- 64bit+ 
Queue=0/0 Enable-

  Capabilities: [70]

re: wmaster0: unknown hardware address type 801 while getting IP address for eth0 interface using DHCP

2009-09-16 Thread Alexander Kaphuk

Hi,

I'm still having trouble configuring my wired network interface on 
Debian Lenny running on HP Compaq Presario CQ61.


I put "auto eth0; iface eth0 inet dhcp" (each statment on separate line 
as shown in debian wiki) into my /etc/network/interfaces file.
I ran "ifdown eth0; ifup eth0". I got this error message in the output 
"wmaster0: unknown hardware address type 801".
I also tried configuring the network setting manually, but to no avail. 
(see output of ifconfig -a and lspci -k below for details).


Is it something I'm doing wrong? Why wouldn't DHCP work during the 
installation process?


I have done quite a bit of googling about it. I have seen posts of other 
people experiencing similar problems as me, but so far have found no 
solution to the problem.


I'd appreciate any feedback on what needs to be done in my situation.

Thanking you all in advance.

Alexander Kapshuk.

# ifconfig -a
eth0  Link encap:Ethernet  HWaddr 00:23:8b:b2:e5:1f 
 UP BROADCAST MULTICAST  MTU:1500  Metric:1

 RX packets:0 errors:0 dropped:1090863010 overruns:0 frame:0
 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
 collisions:0 txqueuelen:1000
 RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
 Interrupt:219 Base address:0x2000

loLink encap:Local Loopback 
 inet addr:127.0.0.1  Mask:255.0.0.0

 inet6 addr: ::1/128 Scope:Host
 UP LOOPBACK RUNNING  MTU:16436  Metric:1
 RX packets:24 errors:0 dropped:0 overruns:0 frame:0
 TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
 collisions:0 txqueuelen:0
 RX bytes:1616 (1.5 KiB)  TX bytes:1616 (1.5 KiB)

wlan0 Link encap:Ethernet  HWaddr 00:24:2c:5e:06:f2 
 UP BROADCAST MULTICAST  MTU:1500  Metric:1

 RX packets:0 errors:0 dropped:0 overruns:0 frame:0
 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
 collisions:0 txqueuelen:1000
 RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

wmaster0  Link encap:UNSPEC  HWaddr 
00-24-2C-5E-06-F2-6C-6F-00-00-00-00-00-00-00-00 
 UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

 RX packets:0 errors:0 dropped:0 overruns:0 frame:0
 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
 collisions:0 txqueuelen:1000
 RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)


# lspci -k
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory 
Controller Hub (rev 07)

   Subsystem: Hewlett-Packard Company Device 306a
   Flags: bus master, fast devsel, latency 0
   Capabilities: [e0] Vendor Specific Information 
   Kernel modules: intel-agp

00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI 
Express Graphics Port (rev 07) (prog-if 00 [Normal decode])

   Flags: bus master, fast devsel, latency 0
   Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
   I/O behind bridge: 4000-4fff
   Memory behind bridge: d000-d2ff
   Prefetchable memory behind bridge: c000-cfff
   Capabilities: [88] Subsystem: Hewlett-Packard Company Device 306a
   Capabilities: [80] Power Management version 3
   Capabilities: [90] Message Signalled Interrupts: Mask- 64bit- 
Queue=0/0 Enable+

   Capabilities: [a0] Express Root Port (Slot+), MSI 00
   Capabilities: [100] Virtual Channel 
   Capabilities: [140] Root Complex Link 
   Kernel driver in use: pcieport-driver
   Kernel modules: shpchp

00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 (rev 03) (prog-if 00 [UHCI])

   Subsystem: Hewlett-Packard Company Device 306a
   Flags: bus master, medium devsel, latency 0, IRQ 16
   I/O ports at 50e0 [size=32]
   Capabilities: [50] PCIe advanced features 
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #5 (rev 03) (prog-if 00 [UHCI])

   Subsystem: Hewlett-Packard Company Device 306a
   Flags: bus master, medium devsel, latency 0, IRQ 21
   I/O ports at 50c0 [size=32]
   Capabilities: [50] PCIe advanced features 
   Kernel driver in use: uhci_hcd
   Kernel modules: uhci-hcd

00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #2 (rev 03) (prog-if 20 [EHCI])

   Subsystem: Hewlett-Packard Company Device 306a
   Flags: bus master, medium devsel, latency 0, IRQ 19
   Memory at d7005c00 (32-bit, non-prefetchable) [size=1K]
   Capabilities: [50] Power Management version 2
   Capabilities: [58] Debug port: BAR=1 offset=00a0
   Capabilities: [98] PCIe advanced features 
   Kernel driver in use: ehci_hcd
   Kernel modules: ehci-hcd

00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio 
Controller (rev 03)

   Subsystem: Hewlett-Packard Company Device 306a
   Flags: bus master, fast devsel, latency 0, IRQ 22
   Memory at d700 (64-bit, non-prefetchable) [size=16K]
   Capabilities: [50] Power Management version 2
   Capabilities: [60] Message Signalled Inte

Re: network configuration failed during installation

2009-09-10 Thread Alexander Kaphuk

Thanks a lot for a prompt reply to my email, Tiago!

I'll follow up on the suggestions you've made and let you know how I go.

Cheers.

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org




re: network configuration failed during installation

2009-09-10 Thread Alexander Kaphuk

G'day,

I have installed Debian Lenny on a HP Comaq Presario CQ61 laptop. 
However, the automatic network configuration failed during installation. 
I'm fairly new to Linux. I'd appreciate somebody referring me to a HOWTO 
or some other resource containing instructions on how to rectify the 
problem. Is there's a log file on the system that could point me in the 
right direction?


Thanking you all in advance,

Alexander Kapshuk.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org