linux 配置登陆 MOTD

linux 配置登陆 MOTD

登录时显示的消息确实有一个特定的名称。这个消息通常被称为"登录标语"或"欢迎横幅"。在Linux系统 ...

August 25, 2024 | 1 分钟 | 443 字 | Tianlun Song
ubuntu 配置 nfs 服务

ubuntu 配置 nfs 服务

步骤 步骤一:安装NFS服务器软件包 首先,打开终端窗口,并以管理员权限运行以下命令来 ...

July 27, 2024 | 2 分钟 | 989 字 | Tianlun Song
ubuntu 克隆 netplan dhcp ip 冲突问题

ubuntu 克隆 netplan dhcp ip 冲突问题

在被克隆的机器上编辑 /etc/netplan/xx-installer-config.yaml ...

July 27, 2024 | 3 分钟 | 1130 字 | Tianlun Song
Windows XP 所有版本密钥集合

Windows XP 所有版本密钥集合

![Windows XP Logo](https://cdn-imagehost.frytea.co ...

July 27, 2024 | 2 分钟 | 507 字 | Tianlun Song
PVE 解决  x86/split lock detection

PVE 解决 x86/split lock detection

1、add in /etc/default/grub GRUB_CMDLINE_LINU X_DEFAULT="quiet split_lock_detect=off" 2、now run update-grub and reboot. ...

July 27, 2024 | 1 分钟 | 29 字 | Tianlun Song
VirtualBox 安装 macOS

VirtualBox 安装 macOS

VBoxManage modifyvm "Type Your Virtual Mac hine Name Here" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff VBoxManage setextradata "Type Your Virtual Machine Name Here" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" VBoxManage setextradata "Type Your Virtual Machine Name Here" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" VBoxManage setextradata "Type Your Virtual Machine Name Here" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" VBoxManage setextradata "Type Your Virtual Machine Name Here" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" VBoxManage setextradata "Type Your Virtual Machine Name Here" "VBoxInternal/Devi References How to Install macOS in VirtualBox ...

July 27, 2024 | 1 分钟 | 71 字 | Tianlun Song
Docker  交叉编译多架构镜像

Docker 交叉编译多架构镜像

# 安装模拟器(用于多平台镜像构建) docker run --rm --privi leged tonistiigi/binfmt:latest --install all # 查看构建器,查阅支持的构建架构 docker buildx ls References docker交叉编译 ...

July 27, 2024 | 1 分钟 | 55 字 | Tianlun Song
Linux 生成随机字符串的方法

Linux 生成随机字符串的方法

Linux 生成随机字符串的方法 随机字符串常用于创建随机账号或密码,Linux 可用以下方法生成随机字符串。 1.生成由大写字母组成的随机字符串: $ head /dev/urandom | tr -dc A-Z | head -c 20 NRXFYZRTUEDXTVPJAYJW 2.生成由小写字母组成的随机字符串: ...

June 30, 2024 | 3 分钟 | 1239 字 | Tianlun Song
debian 软件包仓库优先级配置

debian 软件包仓库优先级配置

在 Debian 和 Ubuntu 系统中,可以通过配置 APT 包管理器的优先级来管理多个软件仓库 ...

June 30, 2024 | 2 分钟 | 546 字 | Tianlun Song
软件分发方法概述

软件分发方法概述

分发软件有多种方式,具体取决于你的目标受众和软件的类型。以下是一些常见的软件分发方式: 在...

June 30, 2024 | 2 分钟 | 844 字 | Tianlun Song