我是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"我需要这个来安装我的无线网卡的驱动程序。
发布于 2015-06-28 07:48:03
您需要使用以下命令解压缩下载的文件:
tar zxvf ndiswrapper-1.59.tar.gz
这将创建ndiswrapper-1.59目录。切换到该目录并运行
make uninstall
make
sudo make install在INSTALL目录中的ndiswrapper-1.59文件中有更多的说明。您必须阅读它们才能理解如何使用此工具。
此外,我猜Ubuntu中有ndis包装包,您可以使用以下方法来安装:
sudo apt-get install ndiswrapper-common
https://askubuntu.com/questions/641785
复制相似问题