You are here |
sylvaindurand.org | ||
| | | |
willhaley.com
|
|
| | | | For this post I'm assuming you already have Tiny Core Linux up and running and persistence (Tiny Core's ability to save changes) is working. I'm also assuming that your installation of Tiny Core Linux has an adequately sized hard drive. Setup MySQL Use these instructions, or whatever method you prefer, to get MariaDB (A "drop-in" MySQL replacement) working in your Tiny Core installation. Note: I may use the names MySQL and MariaDB interchangeably in these instructions. | |
| | | |
blog.cavelab.dev
|
|
| | | | I've set up a local Arch repository, a dynamic reverse proxy cache using nginx - and a local "build server" for AUR packages, using aurutils. Here is how, and why ?? | |
| | | |
pingbin.com
|
|
| | | | ||
| | | |
negativesign.com
|
|
| | I run a GitLab server that I use to collaborate with coworkers.1 It's a custom-built machine with a RAID, lots of memory, redundant power supplies, and is running Ubuntu. Every day, a simple cron script to makes a backup copy of the data on the server to another machine. The script looks something like this: #!/bin/sh cd /home/gitlab/gitlab sudo -u gitlab -H bundle exec rake gitlab:backup:create RAILS_ENV=production rsync -avrcpt /home/gitlab/gitlab/tmp/backups/ user@remotemachine:/path/to/gitlabtars rsy... |