1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-09-18 13:14:43 -04:00

Remove old timeshift configs

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-11-10 16:06:21 -07:00
parent 6c92727673
commit 1b3afc8148
No known key found for this signature in database
GPG Key ID: D30DEC268D3FEB17

View File

@ -141,16 +141,4 @@ sudo dnf -y install gnome-console git-core gnome-shell-extension-appindicator gn
# Enable auto TRIM
sudo systemctl enable fstrim.timer
# Setup BTRFS layout and Timeshift
sudo mkdir /btrfs_pool
sudo mount -o subvolid=5 /dev/mapper/${PARTITIONID} /btrfs_pool
sudo mv /btrfs_pool/root /btrfs_pool/@
sudo mv /btrfs_pool/home /btrfs_pool/@home
sudo btrfs subvolume list /btrfs_pool
sudo sed -i 's/subvol=root/subvol=@,ssd,noatime,space_cache,commit=120,compress=zstd:1,discard=async/' /etc/fstab
sudo sed -i 's/subvol=home/subvol=@home,ssd,noatime,space_cache,commit=120,compress=zstd:1,discard=async/' /etc/fstab
sudo echo "UUID=${PARTITIONUUID} /btrfs_pool btrfs subvolid=5,ssd,noatime,space_cache,commit=120,compress=zstd:1,discard=async,x-systemd.device-timeout=0 0 0" | sudo tee -a /etc/fstab
sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
sudo dnf -y install timeshift
## The script is done. You can also remove gnome-terminal since gnome-console will replace it.