我安装了ttf-mscorefonts-installer包来为我的系统获得额外的字体。
然后我注意到这些文件是"exe“。为什么会这样呢?
据我所知,字体不是二进制文件。
$ sudo apt-get install "ttf-mscorefonts-installer"
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
ttf-mscorefonts-installer
0 upgraded, 1 newly installed, 0 to remove and 9 not upgraded.
Need to get 0 B/27.8 kB of archives.
After this operation, 134 kB of additional disk space will be used.
Preconfiguring packages ...
Selecting previously unselected package ttf-mscorefonts-installer.
(Reading database ... 298130 files and directories currently installed.)
Preparing to unpack .../ttf-mscorefonts-installer_3.4+nmu1ubuntu1_all.deb ...
Unpacking ttf-mscorefonts-installer (3.4+nmu1ubuntu1) ...
Processing triggers for update-notifier-common (0.154.1ubuntu1) ...
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/andale32.exe
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/arial32.exe
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/arialb32.exe
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/comic32.exe
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/courie32.exe发布于 2015-03-04 19:48:12
因为exe包含字体--我不认为它们是像windows那样安装的,所以它们被解压(编辑:在它们自解压缩的窗口上,谢谢@JakeGould)
要查看这个,您可以下载一个(我做了这一个),并在file-roller (归档管理器)中打开它:

Ubuntu和其他人可能无法将字体直接分发给MS中的授权程序--在安装程序提示中链接的尤拉中,exe可能被计算为‘再发行’:

包括这一点,可能还包括其中的其他内容:
发布于 2015-03-04 19:49:44
MS Office字体是来自Microsoft的字体。微软不为其他操作系统(如Ubuntu )制作二进制文件,因此ttf-mscorefonts-installer以exe格式下载各种MS字体,然后cabextract从这些exe文件中提取字体。
发布于 2021-04-23 14:06:46
下载后,您需要的字体将从这些exe文件中提取出来。您可以在控制台中看到从输出中提取的进度。没有包含输出的答案,所以我在这里发布它(请注意包“content”和许可证的内容在中间):
$ sudo apt install ttf-mscorefonts-installer
...
The following NEW packages will be installed:
cabextract libmspack0 ttf-mscorefonts-installer
...
ttf-mscorefonts-installer: processing...
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/andale32.exe
...
These fonts were provided by Microsoft "in the interest of cross-
platform compatibility". This is no longer the case, but they are
still available from third parties.
You are free to download these fonts and use them for your own use,
but you may not redistribute them in modified form, including changes
to the file name or packaging format.
Extracting cabinet: /var/lib/update-notifier/package-data-downloads/partial/andale32.exe
extracting fontinst.inf
extracting andale.inf
extracting fontinst.exe
extracting AndaleMo.TTF
extracting ADVPACK.DLL
extracting W95INF32.DLL
extracting W95INF16.DLL
All done, no errors.
...
All fonts downloaded and installed.
Processing triggers for fontconfig (2.13.1-2ubuntu3) ...由于“您不能以修改过的形式重新分发它们,包括对文件名或打包格式的更改”,所以包维护人员必须保持原样,即使这些文件是CAB存档(“柜子”是出租车 )。
https://askubuntu.com/questions/592807
复制相似问题