dam@ubuntu:~$ sudo apt-get update
W: Failed ....
adam@ubuntu:~$ sudo apt-get install fetch
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package fetch
答案1
要安装 Wine,只需按下键盘上的Ctrl+ Alt+T打开终端。打开后,运行以下命令:
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.6
sudo apt-get install winetricks
根据您的评论,您没有互联网连接。
现在,由于你没有互联网连接,你需要下载 Wine 1.6文件。下载后,将文件按原样复制到 Ubuntu 系统,然后查看如何安装 .tar.gz(或 .tar.bz2)文件
答案2
您在问题中说您“正在尝试安装程序包 fetch”。
fetch 是一款基于 HTTP Fetcher 库构建的简单、灵活的下载工具。还有其他实用程序可以处理 HTTP 下载(wget),但其中很多都用于镜像网站等;fetch 允许您在命令行中下载文件,只需说“fetch URL”即可。fetch 可以下载www.sourceforge.net 获取网页。
在安装 fetch 之前,必须安装 HTTP Fetcher 库。可以从以下网址下载:https://sourceforge.net/projects/http-fetcher/?source=directory
安装 fetch通过运行解压缩 fetch 包tar xf fetch-1.0.tar.gz
,然后从主 fetch 目录中输入:
sudo apt-get install build-essential
./configure
make
sudo make install
就是这样。然后程序应该位于/usr/local/bin/
(除非您指定了不同的前缀)。注意:以上命令适用于基本安装,您也可以使用它checkinstall
来制作 .deb 包。