我在终端的第一步:
aivinor@mcph:~$ sudo apt-get install ttf-mscorefonts-installer
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
imagemagick-common liblqr-1-0 libmagickcore5 libmagickcore5-extra
libmagickwand5 libnetpbm10 linux-headers-3.13.0-32
linux-headers-3.13.0-32-generic linux-image-3.13.0-32-generic
linux-image-extra-3.13.0-32-generic netpbm
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
cabextract
The following NEW packages will be installed:
cabextract ttf-mscorefonts-installer
0 upgraded, 2 newly installed, 0 to remove and 32 not upgraded.
Need to get 70.6 kB of archives.
After this operation, 282 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
我的第二步:
WARNING: The following packages cannot be authenticated!
cabextract ttf-mscorefonts-installer
Install these packages without verification? [y/N] y
0% [Connecting to 172.16.19.10 (172.16.19.10)]
Err http://in.archive.ubuntu.com/ubuntu/ trusty/universe cabextract amd64 1.4-4
此时,我遇到了许多错误,这些错误声称无法连接到 172.16.19.10,因为连接超时 - 我没有互联网问题,说无法获取并有链接,例如
in.archive.ubuntu.com/ubuntu/ trusty/multiverse ttf-mscorefonts-installer all 3.4+nmu1ubuntu1
in.archive.ubuntu.com/ubuntu/pool/universe/c/cabextract/cabextract_1.4-4_amd64.deb
in.archive.ubuntu.com/ubuntu/pool/multiverse/m/msttcorefonts/ttf-mscorefonts-installer_3.4+nmu1ubuntu1_all.deb
最后一行是:
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
答案1
该问题似乎与网络连接有关。
因此,首先检查你的电脑是否已连接到路由器:
ifconfig
上述命令将显示 PC 网络接口。现在查看命令输出并搜索inet addr
。它应该位于您连接的接口之一的第二行(在eth0
或之类的内容下wlan0
,具体取决于您是通过电缆还是通过 WI-FI 连接的)。如果您的值inet addr
类似于172.16.x.x
您的 PC 位于路由器的同一网络中。
如果不是,你必须重新连接到路由器。您可以使用网络管理器执行此操作。
现在您可以使用以下命令检查您的 PC 和路由器之间的连接:
ping 172.16.19.10
如果有效,您可以检查与互联网的连接:
ping www.google.com -c 8
如果这也有效,您可以按照@mikeymop 的建议安装字体:
sudo apt-get update
sudo apt-get install ubuntu-restricted-extras
如果ping
命令不起作用,则意味着两件事:
- ICMP 数据包无法通过您的网络发送或传出。
- 您无法访问路由器或外部服务器(例如 www.google.com)
在第一种情况下,你可以尝试直接运行以下命令检查你的连接
apt-get update
在另一种情况下,您可以尝试重新启动路由器,然后希望一切都能正常工作。
我希望这可以帮到你。