Linux Como posso obter mais detalhes sobre meu modem de 56k de hardware?

1

Estou usando o xubuntu e no meu laptop hp 6730b eu tenho um modem de 56k mas não conheço marca ou fabricante. Parece que ele não roda no linux, mas gostaria de ver mais informações sobre o dispositivo.

Alguma sugestão?

Já usado:

lspci -Vvv | grep -i modem 

lsusb
    
por Fernando André 19.03.2013 / 00:47

2 respostas

2

Você pode tentar lspci sem o grep apenas no caso de não ser reconhecido como um modem (o que é provável). Alternativamente:

  1. O ScanModem foi projetado especificamente para detectar modems no Linux e ajudá-lo a configurá-los. Consulte aqui para obter mais informações.

  2. hwinfo

    hwinfo is used to probe for the hardware present in the system. It can be used to generate a system overview log which can be later used for support.

    sudo apt-get install hwinfo
    
  3. lshw e / ou lshw-gtk (GUI)

    lshw is a small tool to extract detailed information on the hardware configuration of the machine. It can report exact memory configuration, firmware version, mainboard configura‐ tion, CPU version and speed, cache configuration, bus speed, etc. on DMI-capable x86 or IA-64 systems and on some PowerPC machines (PowerMac G4 is known to work).

    sudo apt-get install lshw lshw-gtk 
    
  4. A riqueza de informações disponíveis em linmodems .

por 19.03.2013 / 01:09
1

A HP6730B que eu vi tinha um modem interno LSI (nee Agere nee Lucent) HDA.

então tente lspci | egrep -i '(lsi|agere)'

    
por 19.03.2013 / 01:24