Fixing Variety

Occasionally Variety will stop working on Linux. This is noticeable when the background hasn’t changed in a while.

TL;DR rename ~/.config/variety to anything else then restart Variety. This will require you to reset all the parameters, but Variety should start correctly after doing this.

Variety can be started from the command line by typing “Variety” Errors should then be displayed to the consoled.

Example error: Error: free(): invalid pointer

This error was fixed with the above steps.

Reference: https://github.com/varietywalls/variety/issues/83

Configuring the Clock

Edit ~/.config/variety/variety.conf

to format for a 12-hour clock format, in the clock_filter section, replace %H:%M with %I:%M %p.

TinyLetter

From https://tinyletter.com/site/about/

TinyLetter is a personal newsletter service brought to you by the people behind MailChimp. People use it to send updates, digests, and dispatches to their fans and friends.

Though they’re built on the same infrastructure, TinyLetter is for people who don’t need all the business features that come along with Mailchimp. Simplicity is at the heart of everything we do at TinyLetter.

TinyLetter is a completely free service.

Bitnami Application Installation

Bitnami

These steps show how to install a Bitnami application on a Linux server. In this case an AWS Lightsail server that was deployed as a Bitnami WordPress instance.

At the time of this writing, this server was running the following Bitnami applications:

  1. WordPress
  2. Mantis
  3. *DokuWiki

*Note: the steps below show how DokuWiki was installed.

Step 1

Find the Bitnami application you want to install

Step 2

Copy the Linux Bitnami stack link and run the following

Download the application

$wget https://bitnami.com/redirect/to/624782/bitnami-dokuwiki-20180422b-10-module-linux-x64-installer.run

Step 3

Make download executable

$chmod +x ./bitnami-dokuwiki-20180422b-10-module-linux-x64-installer.run

Step 4

Run installer

$sudo ./bitnami-dokuwiki-20180422b-10-module-linux-x64-installer.run

Misc Notes

Bitnami installation folder

When prompted for the folder containing the Bitnami installation type: /opt/bitnami

MySQL password

When prompted for “root” mysql password use he password found in /home/bitnami/bitnami_credentials.

Accessing the application

If this is an Apache installation, the installer will configure apache automatically. In this case the accessible URL is:

https://wiki.jeffholst.net

Creating large test files

Create a file of 500MB in Windows

fsutil file createnew [filename] [bytes]  
fsutil file createnew output.file.dat 53687091200
Linux

Create a file of 256M in Linux

dd if=[input] of=[output]  bs=[bytes]  count=[blocks]
dd if=/dev/zero of=output.file.dat  bs=256M  count=1