Skip to content

Ubuntu 安装

约 124 字小于 1 分钟

Linux

2025-02-13

sudo apt update
sudo apt install openssh-server
/etc/ssh/sshd_config
PasswordAuthentication yes

TimeShift 快照管理

TimeShift是一款专为Linux设计的快照工具,类似于Windows的“系统还原”。它支持手动和自动备份,可以按小时、每日、每周或每月创建快照。

  • 安装

    sudo apt update
    sudo apt install timeshift
  • 创建快照

    sudo timeshift --create --comments "Initial Snapshot" --tags D
  • 查看快照

    sudo timeshift --list
  • 恢复快照

    sudo timeshift --restore --snapshot "Name(时间)"