软件安装
import { Tabs, TabItem } from ‘@astrojs/starlight/components’;
Windows 软件
Section titled “Windows 软件”| 软件 | 用途 | 下载地址 |
|---|---|---|
| Microsoft Edge | 浏览器 | 系统自带 |
| 7-Zip | 压缩软件 | https://www.7-zip.org/ |
| VS Code | 代码编辑器 | https://code.visualstudio.com/ |
| OBS Studio | 录屏直播 | https://obsproject.com/ |
| VLC Media Player | 视频播放 | https://www.videolan.org/vlc/ |
适合:需要与 Office 文档完全兼容的用户
包含:
- Word(文档处理)
- Excel(电子表格)
- PowerPoint(演示文稿)
- Outlook(邮件客户端)
价格:¥398/年(个人版)
适合:个人用户,轻量级需求
优势:
- 完全免费
- 兼容 Office 格式
- 体积小、启动快
适合:开源爱好者
优势:
- 完全免费开源
- 跨平台支持
- 功能完整
推荐播放器:
-
VLC Media Player
- 支持几乎所有格式
- 轻量级
- 免费开源
-
MPC-BE
- 轻量级
- 硬件加速支持好
-
PotPlayer
- 功能强大
- 设置丰富
Linux 软件
Section titled “Linux 软件”Ubuntu/Debian
Section titled “Ubuntu/Debian”# 更新软件源sudo apt update && sudo apt upgrade -y
# 安装常用软件sudo apt install -y \ vim \ git \ curl \ wget \ htop \ neofetch \ build-essential \ python3 \ python3-pip \ nodejs \ docker.io \ code| 软件 | 安装命令 | 用途 |
|---|---|---|
| VS Code | sudo snap install code | 代码编辑器 |
| Chrome | 下载 .deb 包 | 浏览器 |
| GIMP | sudo apt install gimp | 图像编辑 |
| Kdenlive | sudo apt install kdenlive | 视频编辑 |
| OBS Studio | sudo apt install obs-studio | 录屏直播 |
Docker 安装
Section titled “Docker 安装”# 添加 Docker 官方 GPG 密钥curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
# 添加 Docker 仓库echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
# 安装 Dockersudo apt updatesudo apt install docker-ce docker-ce-cli containerd.io
# 将当前用户添加到 docker 组sudo usermod -aG docker $USER
# 安装 Docker Composesudo apt install docker-composeAndroid 软件
Section titled “Android 软件”| 应用 | 用途 |
|---|---|
| Kodi | 家庭影院媒体中心 |
| VLC | 视频播放 |
| Termux | 终端模拟器 |
| QuickSSHD | SSH 服务器 |
| Feem | 文件传输 |
- Google Play 商店(如有)
- APKPure:https://apkpure.com/
- F-Droid:开源应用仓库
Home Assistant
Section titled “Home Assistant”智能家居控制中心:
# 安装 Docker# 运行 Home Assistant 容器docker run -d \ --name homeassistant \ --privileged \ --restart=unless-stopped \ -e TZ=Asia/Shanghai \ -v /home/homeassistant:/config \ --network=host \ ghcr.io/home-assistant/home-assistant:stableJellyfin
Section titled “Jellyfin”媒体服务器:
docker run -d \ --name jellyfin \ --restart=unless-stopped \ -e TZ=Asia/Shanghai \ -v /path/to/config:/config \ -v /path/to/media:/media \ -p 8096:8096 \ jellyfin/jellyfinNextcloud
Section titled “Nextcloud”个人云存储:
docker run -d \ --name nextcloud \ --restart=unless-stopped \ -e TZ=Asia/Shanghai \ -v /path/to/data:/var/www/html \ -p 8080:80 \ nextcloudWindows 优化
Section titled “Windows 优化”-
关闭启动项
- 任务管理器 → 启动
- 禁用不必要的启动项
-
启用高性能模式
- 设置 → 系统 → 电源和睡眠
- 选择”高性能”
-
关闭透明效果
- 设置 → 轻松使用 → 显示
- 关闭”关闭透明效果”
Linux 优化
Section titled “Linux 优化”# 减少 swap 使用echo 'vm.swappiness=10' | sudo tee -a /etc/sysctl.conf
# 启用 zramsudo apt install zram-config
# 优化 SSDecho 'vm.vfs_cache_pressure=50' | sudo tee -a /etc/sysctl.conf| 工具 | 系统 | 功能 |
|---|---|---|
| 任务管理器 | Windows | 系统自带 |
| htop | Linux | 进程监控 |
| neofetch | Linux | 系统信息 |
| GPU-Z | Windows | 显卡信息 |
| CrystalDiskInfo | Windows | 硬盘信息 |