How to Fix "Linux Failure to Download extra data files for ttf-mscorefonts-installer" error

How to Fix "Linux Failure to Download extra data files for ttf-mscorefonts-installer" error

Hi 
Using Linux for a time ,in its very essence one of the errors I often come across with is downloading problem for certain add-ons.

If you get the following error:


Failure to download extra data files

The following packages requested additional data downloads after package installation,
but the data could not be downloaded or could not be processed.

ttf-mscorefonts-installer

The download will be attempted again later, or you can try the download again now.
 Running this command requires an active Internet connection.  

So this certain packet actually stands for Microsoft‘s font files freely available from the Microsoft for you to use and download without sharing with any 3rd party or individual.Therefore, there is a probable connection problem that you must have had when you attempted to download it.

To fix it:

sudo apt-get remove --purge ttf-mscorefonts-installer
sudo apt-get install ubuntu-restricted-extras
     

use these two lines of commands respectively and you are ready to go !

Sincerely,Ahmet

Written on February 4, 2017

原文地址:https://www.cnblogs.com/mouseleo/p/10847614.html

时间: 2024-11-09 17:56:57

How to Fix "Linux Failure to Download extra data files for ttf-mscorefonts-installer" error的相关文章

How To Use XDOLoader to Manage, Download and Upload Files? (文档 ID 469585.1)

Applies to: BI Publisher (formerly XML Publisher) - Version 5.6.3 to 5.6.3 [Release 5] Information  in this document applies to any platform. Oracle XML Publisher - Version: 11.5.10 Checked for relevance on 18-MAR-2013 Goal How to use XDOLoader to Ma

How To Use XDOLoader to Manage, Download and Upload Files? (DOC ID 469585.1)

In this Document Goal Fix     Downloading Files   Uploading Files References Applies to: BI Publisher (formerly XML Publisher) - Version 5.6.3 to 5.6.3 [Release 5]Information in this document applies to any platform.Oracle XML Publisher - Version: 11

解决vs2013下创建的python文件,到其他平台(如linux)下中文乱码(或运行时报SyntaxError: (unicode error) 'utf-8' codec can't decode byte...)

Vs2013中创建python文件,在文件中没输入中文时,编码为utf-8的,如图 接着,在里面输入几行中文后,再次用notepad++查看其编码如下,在vs下运行也报错(用cmd运行就不会): 根据以有经验,这是字符编码的问题了,试着将python文件的转化为utf-8的,直接在notepad++上转utf-8 无bom编码格式的,保存,打开vs,会有以下提示 这里不要选择no吧,不然可能会提示以下类似的错误 如果有提示,直接关闭,不然的话,vs又会将此文件保存为ascii格式了 解决vs20

Linux下安装过程中编译PHP时报错:configure: error: libjpeg.(a|so) not found

在Linux下安装PHP过程中,编译时出现configure: error: libjpeg.(a|so) not found 错误的解决的方法: 检查之后发现已经安装libjpeg.可是/usr/lib文件夹下没有libjpeg.so这个文件,在/usr/lib64下是有的,使用–with-jpeg-dir=/usr/lib64 依旧无效, 最后用ln -s /usr/lib64/libjpeg.so /usr/lib/libjpeg.so问题解决 libpng报错解决方法一样

Linux - 修改系统的max open files、max user processes(附ulimit的使用方法)

目录 1 问题说明 2 修改max open files 3 修改max user processes 4 附录: ulimit命令说明 1 问题说明 Linux 系统默认的max open files = 1024, 在大内存服务器中, 如果运行负载比较大的程序, 很容易发生error: too many open files, 特别是提供大量静态文件访问的Web服务器.缓存服务器中这种错误更加常见. open files表示系统级别的能够打开的文件句柄的数量, 是系统级别的安全策略: 限制所

SUSE Linux ntp 升级报错(MAKE [1]:*** 【all】Error 2)

NTP升级,升级REDHAT时很顺利,升级完成后会默认覆盖掉原有文件,重启服务后,使用ntpd --version查看验证上即可,可在升级SUSE Linux时却发现错误频频,以下是我再升级时遇到的一些问题,小结之后希望有和我遇到同样错误的亲们可以作为参考: 一. 由于NTP包有漏洞,需下载4.2.7之后版本,网络下ntp-dev-4.2.7p26.tar.gz 1.解压#  tar –zxf  ntp-dev-4.2.7p26.tar.gz –C /usr/src 2.编译#  cd/usr/

Linux环境下Oracle数据泵(expdp)备份报ORA-39006: internal error

问题描述: Oracle一直用数据泵备份,今天在终端备份时突然报ORA-39006: internal error错误. 数据泵导出日志文件为以下信息: ORA-39097: Data Pump job encountered unexpected error -31644 ORA-39065: unexpected master process exception in FILE ORA-31644: unable to position to block number 2 in dump f

Linux server上too many open files问题

之前测试遇到了"too many open files"的问题.ulimit -Hn 查了下发现server上最大open file数是4096.写了个简单的脚本检测发现进程创建的fd个数在不断增加,8分钟之后达到上限然后程序报错,其中绝大部分fd都是关于socket的. 在server上安装lsof查看当前进程打开文件,并定位出现频率最高的通信主机和端口.最后发现是一个Java程序bug,每两秒执行一次的方法会不断创建新的httpclient.修正bug后进程创建的fd数稳定在24.

【Linux基础】mount报错:mount.nfs: Remote I/O error

mount 报错:mount.nfs: Remote I/O error 挂载时需要指明版本,由于NFS服务器有多个版本,V2.V3.V4.而且各版本同时运行,因此挂载时需要说明版本号. 由于NFS V2最大只支持32BIT的文件大小(4g),而NFS V3则支持64BIT文件大小.另外V3对于V2还有其他优势,比如文件传输,异步写入等,因此建议采用V3进行访问. 解决办法:mount 加选项 -o nfsvers=3或者-o nfsvers=2       后面IP:/.../..   /..