系统相关
首页 > 系统相关> > ubuntu 字体安装 —— 以nerd font为例

ubuntu 字体安装 —— 以nerd font为例

作者:互联网

首先下载文件

	wget -c https://github.com/ryanoasis/nerd-fonts/releases/download/v2.0.0/SourceCodePro.zip
	或者:
	git clone https://github.com/blobject/agave.git

然后解压到文件夹:

	sudo unzip SourceCodePro -d /usr/share/fonts/SourceCodePro
	或者:
	suod cp agave/*.ttf /usr/share/fonts/

转到/usr/share/fonts/SourceCodePro目录,并安装

	cd /usr/share/fonts/SourceCodePro
	或者
	cd /usr/share/fonts/agave
	sudo mkfontscale # 生成核心字体信息
	sudo mkfontdir # 生成字体文件夹
	sudo fc-cache -fv # 刷新系统字体缓存

参考链接

标签:sudo,为例,fonts,share,agave,usr,ubuntu,SourceCodePro,font
来源: https://blog.csdn.net/qq_39785418/article/details/122796861