-
在Linux中安装Windows字体
Nov 21, 2019
在Linux中安装Windows字体 使用的系统为xubuntu 25.04,Windows11系统分区lable为sys 参考如下操作: # 新建字体目录 alair@e6440:~$ sudo mkdir /usr/share/fonts/winfonts # 将windows字体拷贝至新目录 alair@e6440:~$ sudo cp /media/alair/sys/Windows/Fonts/* /usr/share/fonts/winfonts/ # 删除不需要的fon文件 alair@e6440:~$ sudo rm -rf /usr/share/fonts/winfonts/*.fon # 应用字体目录,生成缓存 alair@e6440:~$ sudo mkfontscale alair@e6440:~$ sudo mkfontdir alair@e6440:~$ sudo fc-cache
-
Armbian更改软件源
Nov 05, 2019
上一篇文章介绍了如何在斐迅N1上安装Armbian,现在介绍如何更改软件源为国内镜像。 编辑/etc/apt/sources.list替换为以下内容: deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free deb http://ftp.debian.org/debian jessie-backports main 接着编辑/etc/apt/sources.list.d/armbian.list ,替换为以下内容: …
-
斐讯N1安装Armbian
Nov 03, 2019
202501更新 最新斐讯N1可用Debian 12镜像 Armbian_25.02.0_amlogic_s905d_bookworm_6.6.68_server_2025.01.01.img.gz 境外地址 国内线路下载 Armbian_25.02.0_amlogic_s905d_bookworm_6.6.68_server_2025.01.01.img.gz (访问密码: 3705) 安装方法 使用balenaEtcher 等工具将系统写入 U盘里,然后把写好系统的U盘插入盒子。 …
-
Debian10中sudo配置
Jul 10, 2019
Debian10中/etc/sudoers中提示了需要通过visudo来编辑该文件,如下: This file MUST be edited with the ‘visudo’ command as root. 但奇葩的是系统中没有visudo命令,apt搜索也搜不到,-_-! …
-
Alpine Linux安装使用实例
May 14, 2019
AlpineLinux介绍 Alpine 的意思是“高山的”,比如 Alpine plants高山植物,Alpine skiing高山滑雪、the alpine resort阿尔卑斯山胜地。 Alpine Linux 网站首页注明“Small!Simple!Secure!Alpine Linux is a security-oriented, lightweight Linux distribution based on musl libc and busybox.”概括了以下特点: …
-
NokiaN900刷机方法
May 01, 2019
刷机工具以及固件文件下再地址见文章末尾。 首先安装刷机工具maemo flasher,然后下载固件,固件分以下两个文件,下载地址 …
stuffnokian900maemonokia n900rx-51firmwareemmcCOMBINEDVANILLA21.2011.38-1maemo_flasherflasherLinux
-
Linux下修复分辨率显示异常
Aug 26, 2017
家里放了台老旧的台式机,显卡是GTX 660Ti,windows下必须安装特定的驱动版本才能显示最佳分辨率(1680x1050),如果更新到最新的Nvidia驱动,反而显示器无法正常显示(1024x768)。 …
-
python-pip安装实例
Apr 20, 2017
Python-pip 是一个现代的,通用的 Python包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能。 以下为多个操作系统平台下Python-pip安装方法 通用方法 通过get-pip.py文件来安装,建议Windows用户使用,前提是你必须首先安装Python。 …
-
Termux软件管理
Mar 09, 2017
首次安装Termux后,内含一个基础系统,包括apt软件包管理功能,并且集成了一些busybox系统工具。 其余的软件包可使用apt进行安装管理,命令如下: …
-
LFTP使用实例
Apr 01, 2016
LFTP使用实例 lftp是一个功能强大的ftp/http客户端,作者是 Alexander Lukyanov。 lftp支持多种传输协议,如ftp、http、https、sftp、exp等。 如同BASH一样,lftp支持任务管理。并且具备书签管理、内置镜像和多线程传送功能。 …