我是 Ubuntu 新手。我已下载ndiswrapper-1.59.tar.gz
并运行:
sudo apt-get install ndiswrapper-1.59.tar.gz
我得到了这个:
Reading package lists ... Done
Building dependency tree
Reading state information ... Done
E: It has not been able to locate the package ndiswrapper-1.59.tar.gz
E: Could not find any package with the regular expression "ndiswrapper-1.59.tar.gz"
我需要这个来安装我的无线网卡的驱动程序。
答案1
您需要使用以下命令提取下载的文件:
tar zxvf ndiswrapper-1.59.tar.gz
这将创建ndiswrapper-1.59
目录。转到该目录并运行
make uninstall
make
sudo make install
INSTALL
目录内的文件中还有更多说明ndiswrapper-1.59
。您必须阅读它们才能了解如何使用此工具。
另外,我猜想 Ubuntu repo 中有一个 ndiswrapper 包,您可以使用它进行安装:
sudo apt-get install ndiswrapper-common