These are just some random notes that might help me to remember stuff. Things like installations and upgrades that I only do now and again.
I have a debian installation on a virtual machine with a btrfs filesystem at /dev/vda2
. A subvolume named @
is mounted at / and @home
is mounted at /home.
My aim is to do a clean reinstall of the OS while keeping the files in @home
. The problem is that formatting the btrfs partition in the...
My notes on migrating a Drupal 7 site to Drupal 9.
Log into MySQL as root (assumes password is stored on /root/.my.cnf, otherwise you will have to enter a password):
sudo -H mysql -p
Create a new database for your site:
CREATE DATABASE databasename CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
Create the database user and grant privi...
SELECT moz_bookmarks.id,moz_bookmarks.title,moz_places.url,description FROM moz_bookmarks INNER JOIN moz_places ON moz_bookmarks.fk = moz_places.id;