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 Oct 20th, 2024 Comments Off
When I first obtained a CompTIA A+ certification some time ago, the concept of bit rot related to what happens to software reliability as the number of updates to the system increases. Over time, software that worked in years past ceases to work as new system updates block system calls or change permissions and files [...]
Posted in Computing Notes on Sep 22nd, 2024 Comments Off
Create file /usr/lib/systemd/system/yacy.service and add this content: [Unit] Description=YaCy search server After=network.target Restart=always [Service] Type=forking User=yacy ExecStart=/opt/yacy/startYACY.sh ExecStop=/opt/yacy/stopYACY.sh Restart=on-failure RestartSec=1s [Install] WantedBy=multi-user.target Then use systemctl enable yacy.service.
Posted in Computing Notes on Jun 24th, 2024 Comments Off
Use about:config –> browser.uidensity . browser.uidensity is set to 0 by default. Changer the value to 1 and it takes immediate effect.
Posted in Computing Notes on Jun 10th, 2024 Comments Off
To convert a dynamic VirtualBox disk to a Fixed disk, run the following command: vboxmanage clonemedium disk /path/disk.vdi /path/newdisk.vdi -variant Fixed using –variant Standard would create a dynamic disk. Then open the virtual machine and remove the existing disk and attach the new disk. Then use the media manager to delete the unused media. Use [...]
Posted in Computing Notes on Jun 10th, 2024 Comments Off
Chromium: Joplin Web Clipper, Zotero Connector, floccus bookmarks sync, uBlock Origin, Quick Javascript Switcher, SingleFile, uMatrix Firefox: floccus bookmarks sync, Joplin Web Clipper, Search by Image, uMatrix, Undo Close Tab, Zotero, uBlock Origin [x] Removed some Firefox/LibreWolf extensions [+] Added Zotero and uBlock Origin, which have been long used, but neglected with regards to [...]
Posted in Computing Notes on May 18th, 2024 Comments Off
A few quirks with Debain 12 include that path not being set in similar fashion to Fedora, Ubuntu, and other distributions. One must regularly set export PATH=$PATH:/usr/sbin In Gnome, applications will open on the server instead of the client when using X11 forwarding. This will occur even though xcalc opens on the client normally. The [...]
Posted in Computing Notes on May 18th, 2024 Comments Off
To add a new virtual disk and move the existing Linux partition to the new disk use the following process. The process assumes standard partitions without the use of Logical Volume Manager (LVM). 1. Backup the existing VM. One good way to do that is to clone the Virtual Machine and use the procedure on [...]
Posted in Computing Notes on May 4th, 2024 Comments Off
Minecraft Java edition lost compatibility with Java 17 between 1.20.4 and 1.20.6. Version 1.20.4 works with Java 17, and 1.20.6 no longer works with Java 17. Several guides appear online for installing downloaded packages of the 64-bit runtime from Oracle or other sources. Since Debian offers 32-bit server operating systems in the present day, the [...]
Posted in Computing Notes on Apr 2nd, 2024 Comments Off
Open the Thunderbird program folder (e.g. C:\Program Files (x86)\Thunderbird) create a new folder named distribution Create a file named policies.json with the following content: { “policies”: { “DisableAppUpdate”: true } } Thanks to sifferedd.
Posted in Computing Notes on Apr 2nd, 2024 Comments Off
Use printenv to see what environment variables are set. #!/usr/bin/env bash printenv set -x
Posted in Computing Notes on Apr 2nd, 2024 Comments Off
Edit $HOME/.nanorc to contain the following: include /usr/share/nano/java.nanorc include /usr/share/nano/man.nanorc include /usr/share/nano/nanorc.nanorc include /usr/share/nano/python.nanorc include /usr/share/nano/sh.nanorc include /usr/share/nano/html.nanorc include /usr/share/nano/perl.nanorc include /usr/share/nano/php.nanorc CentOS 7 uses a much older version of nano than the one that presently ships on most distributions. The php.nanorc on newer The following should appear in /usr/share/nano/php.nanorc on CentOS7 to allow syntax [...]
Posted in Computing Notes on Apr 2nd, 2024 Comments Off
The .bashrc file I use on CentOS6 # .bashrc # User specific aliases and functions alias rm=’rm -i’ alias cp=’cp -i’ alias mv=’mv -i’ # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # system variables export VISUAL=nano # sets nano as the crontab editor export GZIP=-9 # maximum compression [...]
Posted in Computing Notes on Mar 2nd, 2024 Comments Off
The best alias for ls is ls –halF It is easy to remember, and produces easy to read output with human readable file sizes and / marks present by the directory names..
Posted in Computing Notes on Feb 23rd, 2024 Comments Off
dnf install oracle-epel-release-el9 dnf install iftop iptraf is already in the default repositories.
Posted in Computing Notes on Feb 20th, 2024 Comments Off
A really good version of the ll alias is: ls –lahF, although on some versions ls –lahp looks better than F.
Posted in Computing Notes on Feb 11th, 2024 Comments Off
Some useful aliases that are not always preconfigured on every Linux version: alias ll=’ls -alF’ alias la=’ls -A’ alias l=’ls –CF’ To eliminate the DRM warning in Firefox and Librewolf without enable DRM, add this to “userChrome.css”: notification[value="drmContentDisabled"]{ display:none !important; } toolkit.legacyUserProfileCustomizations.stylesheets must be set to true in about config.
Posted in Computing Notes on Feb 1st, 2024 Comments Off
The following script scans PDFs via an auto-document feeder in Hp-Lip and then collates the pages to the correct order when there are reverse sides. No scans will be saved if no data is transmitted for the second set of scans. The second set of scans is the reverse of the pages. #!/usr/bin/env bash YMD=$(date [...]
Posted in Computing Notes on Jan 21st, 2024 Comments Off
Here is a script that checks to ensure the database is running and restarts the service if it is not running. This was used on a very low memory server to ensure a database remained operational, despite it sometimes crashing due to out of memory errors. #!/bin/bash timestamp=”$(date)” systemctl stop httpd && echo “${timestamp}” Stopping [...]
Posted in Computing Notes on Jan 21st, 2024 Comments Off
To install AppImages and integrate them with the desktop environment like a conventional package, use the AppImage Launcher. LibreWolf’s documentation contains a how-to document on using AppImage Launcher.