@Clemon · 8 天前 在 Windows 中启用自动登录功能 本文节选自微软官方文档,如有必要请参考原文 适用于: Windows Server 2022、Windows Server 2019、Windows Server 2016、Windows 10、Windows 11 重要:为了方便起见,提供了自动登录功能。 但是,此功能可能会带来安全风险。 如果将计算 ...
@Clemon · 2024 年 10 月 10 日 各版本Windows系统KMS产品密钥 本文参考Microsoft官方文档整理,其中密钥均来自MS官方 安装产品密钥 slmgr /ipk <product key> 设置KMS服务器 slmgr -skms <kms server> 激活系统 slmgr -ato Windows Server LTSC Windows Server 2025 操作系 ...
@Clemon · 2024 年 7 月 16 日 Linux无法正常显示中文 可通过执行以下命令解决 locale-gen zh_CN.UTF-8 运行 locale-gen zh_CN.UTF-8 命令会在系统中生成和启用 zh_CN.UTF-8 区域设置。这意味着系统将支持使用中文(中国)的格式和UTF-8编码。这对于在系统中运行中文软件,显示中文字符,或者按 ...
@Clemon · 2024 年 7 月 14 日 Linux允许root用户登录 Ubuntu等系统默认不支持使用root用户进行登录,需要做如下修改 vim /etc/ssh/sshd_config # 修改以下内容 PermitRootLogin yes PasswordAuthentication yes systemctl restart ssh