gpt4 book ai didi

linux - 在 ec2 上安装 mscorefonts

转载 作者:可可西里 更新时间:2023-11-01 11:49:04 25 4
gpt4 key购买 nike

我正在尝试在 ec2 上安装 mscorefonts,但是我似乎无法找到实现它的终端命令的神奇组合。我正在使用 m1.medium 实例,uname -a 返回 Linux worker 3.11.0-12-generic#19-Ubuntu SMP Wed Oct 9 16:20:46 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

在我的个人笔记本电脑上运行:sudo apt-get install -y ttf-mscorefonts-installer 工作正常,但是在我的 ec2 实例上我收到以下错误消息:

以下包具有未满足的依赖项:
ttf-mscorefonts-installer :取决于:defoma 但它不可安装
建议:ttf-liberation 但不可安装
建议:x-ttcidfont-conf 但不可安装

事实上,我还没有找到安装这些组件的方法。我试图用这些修改我的 /etc/apt/sources.list 文件:

deb http://us.archive.ubuntu.com/ubuntu/lucid multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/lucid multiverse
deb http://us.archive.ubuntu.com/ubuntu/lucid-updates 多元宇宙
deb-src http://us.archive.ubuntu.com/ubuntu/lucid-updates multiverse

如下所示:Getting Microsoft Calibri font on Amazon EC2 ubuntu ,但即使在运行 sudo apt-get update 之后我仍然不成功。如何在 ec2 上安装 mscore 字体?我的应用程序需要它们才能运行。

最佳答案

我终于明白了。我的解决方案是启用多元宇宙 ppa。这是我使用的脚本。

#font installation -- required to properly display fonts used in 
echo "deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ saucy multiverse" | sudo tee -a /etc/apt/sources.list
echo "deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ saucy multiverse" | sudo tee -a /etc/apt/sources.list
echo "deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ saucy-updates multiverse" | sudo tee -a /etc/apt/sources.list
echo "deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ saucy-updates multiverse" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
# preselect yes for ms EULA
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
sudo apt-get install -y ttf-mscorefonts-installer

截至 2015 年 1 月,这适用于 EC2 ubuntu 和我运行 ubuntu 14.04 的本地计算机。

关于linux - 在 ec2 上安装 mscorefonts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27431470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com