Install cron on Fedora 38

October 21st, 2024 – 9:38 pm
Tagged as: Computing Notes

dnf install cronie systemctl enable crond.service systemctl start crond.service

Bash and *nix Note no. 2

January 10th, 2024 – 6:18 am
Tagged as: Computing Notes

  This document contains some notes on .bashrc for use with Linux systems. alias ll=’ls -alF’ alias la=’ls -A’ alias l=’ls –CF’ if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi The preceding two blocks come standard on Ubuntu as of version 2022.04. One tweak for WSL2 on Windows might be the addition of this [...]