Categories
Linux

Getting overGrive Google Drive Sync tool (partially) working on a Steam Deck

overGrive is a great program to sync Google Drive files under Linux, however it’s a bit complicated to get it working on a Steam Deck because of the read-only filesystem. I’ve based this on the guide that Martin Wimpress wrote up here for ZeroTier: https://wimpysworld.com/posts/install-zerotier-on-steamdeck/ Step 1 – Install rwfus tool to allow installation of […]

Categories
Linux

How to set up suspend-then-hibernate on a KDE Neon Laptop

suspend-then-hibernate is a neat feature in systemd that allows a computer to suspend (aka sleep) for a period of time, then wake up, and hibernate. To configure this required a few steps on KDE Neon (also tested on Kubuntu 23.10), though: Configure Hibernate To configure hibernate, you need to have a swap partition that is […]

Categories
Linux Programming Systems Administration

“How I got a Feature Before I Even Asked for It” or “Open Source is Awesome”

To backup my server I uses a tool called restic (https://restic.net/) – It’s great. I’ve recently been testing out using MEGA (https://mega.io/) as the backend storage for my backups, and to integrate that with restic, you use rclone (https://rclone.org/) as a storage driver. Sounds complicated, but it’s really not:restic –talks-to–> rclone –talks-to–> mega However, during […]

Categories
Linux

How to fix Screen Sharing in KDE Neon Wayland Session

NOTE: This is no longer needed! ? KDE Neon have now rolled out the latest version of xdg-desktop-portal in the normal repo, which fixes the problem. Note the version is v1.14.1 and the repo is archive.neon.kde.org Old Guide: I’ve been testing the new Wayland session in KDE Neon, and it’s working pretty great, but one […]

Categories
Linux

Problems with OneDrive as a Backend to Restic Backup Tool

I’ve been trying to use OneDrive as my restic backend – which is supported through the rclone backend. Using this, restic can use any backend that rclone supports, which is very cool. However, it has revealed that the OneDrive API is very buggy and unreliable! I’m surprised by how many issues I’ve been getting. I’m […]

Categories
Linux

Setting Ubuntu 20.04 to use bfq block scheduler with Ansible

This is a simple ansible config that will set your machine to use the bfq scheduler: Put this in a file called enable_bfq_playbook.yml and then run it with ansible-playbook: Reboot, and you should now have bfq enabled on your disk:

Categories
Linux Systems Administration

My Favourite Tools in 2020 – Command line

Here are some tools that I really like using when I’m working from the command line: Fish shell The fish shell is an awesome shell with loads of autocomplete and helper tools: https://fishshell.com/ Mosh Mosh is an SSH replacement that has a much lower latency implementation: https://mosh.org/ Restic As the tagline says, backups done right! […]

Categories
Linux Networking raspberrypi

Using a Raspberry Pi 2 as a Router + Configuring Raspbian for IPv6 with Aussie Broadband

I recently decided to move away from using my Wifi access point as a router, and instead use an old my Raspberry Pi 2 as my router. I had a few reasons for doing this: I wanted a more up-to-date device as my internet facing box. My Wifi AP hasn’t received any firmware updates in […]

Categories
Linux raspberrypi

How to install Kodi 18.3 on Raspberry Pi 3 with Raspbian 10 Buster

Note – 2020-01-06 – The latest version of Kodi is now available in the standard Raspian 10 repository, so installing the standard way will get a working, up-to-date version, no need to add extra sources. To install just run: Kept for historical purposes: Since the release of Raspbian 10 Buster, I have really enjoyed using […]

Categories
Linux

How to enable BFQ IO Scheduler on Ubuntu 19.04 – with Ansible playbook to set it up

I was trying to enable the BFQ scheduler on my laptop running Ubuntu 19.04, because as I moved around and created some large files my computer became basically unusable. After some investigation I found the page on the BFQ scheduler and how it is meant to address these sorts of issues. There is some instructions […]