Install cron on Fedora 38
dnf install cronie systemctl enable crond.service systemctl start crond.service
dnf install cronie systemctl enable crond.service systemctl start crond.service
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 [...]
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.
Use about:config –> browser.uidensity . browser.uidensity is set to 0 by default. Changer the value to 1 and it takes immediate effect.
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 [...]
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 [...]
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 [...]
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 [...]
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 [...]
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.
Use printenv to see what environment variables are set. #!/usr/bin/env bash printenv set -x
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 [...]
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 [...]
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..
dnf install oracle-epel-release-el9 dnf install iftop iptraf is already in the default repositories.
A really good version of the ll alias is: ls –lahF, although on some versions ls –lahp looks better than F.
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.
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 [...]
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 [...]
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.
Jeremiah Ch. 6: "Stand ye by the ways and see, And ask for the old paths,
Where is this-the good way? and go ye And find rest for yourselves."
(Young's Literal Translation Bible, Translated by Robert Young, A. Fullarton & Company, 1863)
