The glib2 devs will resolve the issue eventually. They are aware of it after all. Now that said if it’s just Timeshift for some then maybe switching to Snapper might be a solution for the time being. Myself I know my snapshots are getting created and I can do manual snapshots via Konsole so I’m good to wait.
I am not an expert like you guys, but IMO the keyword there is eventually. Since we don’t know when that will be, it means there is a risk of breaking critical things, as Dalto pointed out.
teejee2008 commented on 30 Jun
Timeshift now mounts devices to a temporary folder and unmounts the folder after use. Sometimes the temporary folder cannot be unmounted since the device is still busy. It will be unmounted in the next run. This message can be ignored.
All in all use konsole for timeshift actions
sudo timeshift --create
sudo timeshift --restore
sudo timeshift --list
(sudo timeshift --delete)
if you you use GUI and fails the next console command deletes the incomplete operation
#!/bin/bash
cmd=(dialog --separate-output --checklist "Select Timeshift options:" 22 76 16)
options=(1 "Create" off # any option can be set to default to "on"
2 "Restore" off
3 "List" off
4 "Delete" off)
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
clear
for choice in $choices
do
case $choice in
1)
echo "First Option"
sudo timeshift --create
;;
2)
echo "Second Option"
sudo timeshift --restore
;;
3)
echo "Third Option"
sudo timeshift --list
;;
4)
echo "Fourth Option"
sudo timeshift --delete
;;
esac
done
It is a very primitive bash script to minimize typing. Save it beetween the 2 ``` as ts.sh in home of user for example.
chmod 755 ts.sh
You may Add a Command in Keyboard / Application Shortcuts
xfce4-terminal -e “bash -c /home/user/ts.sh;bash”
and press a keyboard combination CTRL/ALT/I (eg.)
It is for XFCE. You will know what terminal you use. Terminology I also like because it is X-compatible and can be customised as well. Note the script is only a prototype. Selection is done by space after number. Multiple selections have no sense IMHO
Another step ahead would be by crontab which is a scheduled task control.
Yes, but downgrading is not recommended because it carries a risk, as dalto explained. And since we don’t know when there will be a fix, I’d rather not run that risk.
I’ll run Ts from the terminal, which is much faster anyway.
Just wanted to say that Timeshift doesn’t work well at all lately.
I also had the problem with snapshots not showing a few weeks ago but it was working again after updating the system.
Yesterday I could neither delete old snaps nor create a new one, TS was constantly crashing after running for about 20 seconds.