pacote debian para o arquivo ko

1

Eu baixei o pacote hp-be2net_4.0.359.0-2_all.deb que é usado para o driver NIC para Linux.

Eu instalei o pacote acima usando o comando abaixo

dpkg --install hp-be2net_4.0.359.0-2_all.deb

Então eu verifiquei se o pacote está instalado corretamente?

dpkg --list | grep -i "be2net"
ii hp-be2net 4.0.359.0-2

Como converter deb to ko file? Porque eu preciso do arquivo be2net.ko, que é o driver da placa de rede. Ao instalar o pacote debian hp-be2net_4 eu não encontrei nenhum arquivo .ko.

Command output :

/hp-be2net-4.0.359.0
/hp-be2net-4.0.359.0/be_ethtool.c
/hp-be2net-4.0.359.0/be_compat.c
/hp-be2net-4.0.359.0/Makefile
/hp-be2net-4.0.359.0/be_main.c
/hp-be2net-4.0.359.0/be_cmds.c
/hp-be2net-4.0.359.0/be.h
/hp-be2net-4.0.359.0/COPYING
/hp-be2net-4.0.359.0/version.h
/hp-be2net-4.0.359.0/be_compat.h
/hp-be2net-4.0.359.0/be_misc.c
/hp-be2net-4.0.359.0/be_cmds.h
/hp-be2net-4.0.359.0/be_proc.c
/hp-be2net-4.0.359.0/be_hw.h
/usr
/usr/share
/usr/share/doc
/usr/share/doc/hp-be2net
/usr/share/doc/hp-be2net/copyright
/usr/share/doc/hp-be2net/changelog.Debian.gz

actually our network card was detected with be2net-2.101.205 driver in 2.6.32-5.686.while doing the ping to some ip address, reply packet does not come. but we are able to observe the reply as error packet through ifconfig output. So that we planned to upgrade driver . which we saw in the following url Reference Link

please suggest us, if it is there any better idea, if we are doing some thing wrong.

    
por Pavunkumar 22.01.2012 / 11:37

1 resposta

2

O arquivo deb não pode ser convertido em arquivo ko. O arquivo deb é um pacote debian que é um arquivo compactado contendo os arquivos do pacote com as instruções de instalação. O arquivo ko é um objeto do kernel (módulo). Eles são muito diferentes.

No entanto, você deve obter os arquivos necessários se esse for realmente o driver necessário. Para ver os arquivos instalados, use o seguinte comando:

$ sudo dpkg -L hp-be2net
    
por 22.01.2012 / 11:42