title: 查看-Linux-上的-modkey-及-与-modkey-相关内容date: 2022-10-14 11:26:19tags:categories: Linux
import psutil 获取完整信息print(psutil.cpu_times()) 获取 CPU 逻辑个数print(psutil.cpu_count()) 获取 CPU 物理个数print(psutil.cpu_count(logical=False)) 获取 CPU 使用率,其有两个参数,前者为 interval, 指定计算 CPU 使用率的时间间隔后者 percpu 指定需
Archlinux-kde-配置相关
安装1sudo pacman -S xorg xorg-server xorg-xinit plasma-meta alacritty git vim docker 启动需要设置环境变量 DESKTOP_SESSION=plasma, 写入 .bash_profile 中: 1export DESKTOP_SESSION=plasma 然后编辑 .xinitrc 方便设置 startx 的启动
光猫和路由器的区别
光猫Optical Network Unit, ONU, 也称光猫, 是一种光纤接入设备, 用于将光纤信号转换成电信号, 以提供高速的宽带接入. 它通常由光收发器, 光电转换器和网络接口等组成. 光猫的主要作用是将光纤提供的光信号转换为计算机能够理解的电信号, 并将其连接到计算机或路由器上. 简单来看就是: 之所以称为 “猫”, 是因为 ONU 作为调制解调器, 英文为 “modem”, 发音和
rsync-命令的使用
参考 Archwiki 介绍rsync, remote synchronization, 是一个 fast, versatile, remote (and local) file-copying tool. 工作原理how-rsync-worksthe rsync algorithm 注意两端都需要安装有 rsync 命令. 作为 cp/mv 命令来使用在不同的 filesystems
tmux-配置
参考 github wiki 的内容 配置文件当 tmux server 启动时, 其会运行 ~/.tmux.conf 文件中的内容. 若想在 tmux server 运行时加载一个文件中的 tmux commands, 可用 source-file (简写为 source) 命令, 如: 1:source ~/tmux_command.conf 这些文件中, 每一个命令占据一行, 用 # 做为
使用-dd-和-gparted-clone-drivers
参考 Youtube 视频 dd 命令简介dd, 似乎是 “data dumplication” 的缩写, 用于将一个文件或设备的被容复制到另一个文件或设备中. gparted 命令简介gparted, Gnome Partition Editor, 是一个在Linux系统中用于图形化地管理磁盘分区的工具. 支持创建, 删除, 调整分区大小等功能.