Install cron on Fedora 38
Posted in Computing Notes on Oct 21st, 2024 Comments Off
dnf install cronie systemctl enable crond.service systemctl start crond.service
Posted in Computing Notes on Oct 21st, 2024 Comments Off
dnf install cronie systemctl enable crond.service systemctl start crond.service
Posted in Computing Notes on Jan 10th, 2024 Comments Off
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 [...]