Certimate It is a free and open source self-hosting tool designed to automate the complete management cycle of SSL certificates, including issuance, deployment, renewal and monitoring, using a visual interface.
fireshell
XMPP/Jabber: fireshell[at]linux[dot]monster
OMEMO fingerprints: 497caf3d 63fa6692 44a892e8 e0caab2e a1361f14 92f826f7 aa80e611 10030725
IRC: fireshell on Libera Chat
OTR fingerprints: 1A66175C 7E713B1E 6D15079 87FB1952 C6866E05
- 0 Posts
- 10 Comments
fireshell@kbin.earthto
Technology@lemmy.world•Canonical lays out a plan for AI in Ubuntu Linux
22·4 months agoUbuntu has taken another wrong turn. She’s going left and right like a prodigal daughter. And no one will be able to talk sense into her until she’s had her share of bumps.
fireshell@kbin.earthto
Technology@lemmy.world•Microsoft Mysteriously Freezes Accounts for VeraCrypt, WireGuard, Windscribe
65·5 months agoIntroduce mandatory signatures for driver files, they said. It’s so safe, it’s for your protection against viruses - they said. Keys can always be revoked from unscrupulous developers - they said. It will never be used to fight opensource, they said. It will never be a tool against inconvenient CIA applications - they said.
fireshell@kbin.earthto
Technology@lemmy.world•Mastodon now has an official share button for sites
11·6 months agoI got a website from them MastodonShare
fireshell@kbin.earthto
Selfhosted@lemmy.world•SSH Client for Linux Desktop and Android - Alternative to Termius
1·7 months agosshch - SSH connection and aliases manager with curses and command line interface.
Fossify Calendar in f-droid and Nextcloud. Termux calcurse-caldav and Nextcloud.
fireshell@kbin.earthto
Selfhosted@lemmy.world•Forgejo fills up hard drive with repo-archives
26·1 year agoScript for monitoring disk space in Linux
The script below is designed to monitor disk space usage on a specified server partition. Configurable parameters include the maximum allowable percentage of disk space usage (
MAX), the e-mail address to receive alerts (EMAIL) and the target partition (PARTITION).The script uses the df command to collect disk usage information and sends email alerts if the current usage exceeds the specified threshold
#!/bin/bash # Script: ./df_guard.sh [config_file] # Set the maximum allowed disk space usage percentage MAX=90 # Set the email address to receive alerts EMAIL=user@example.com # Set the partition to monitor (change accordingly, e.g., /dev/sda1) PARTITION=/dev/sda1 # Get the current disk usage percentage and related information USAGE_INFO=$(df -h "$PARTITION" | awk 'NR==2 {print $5, $1, $2, $3, $4}' | tr '\n' ' ') USAGE=$(echo "$USAGE_INFO" | awk '{print int($1)}') # Remove the percentage sign if [ "$USAGE" -gt "$MAX" ]; then # Send an email alert with detailed disk usage information echo -e "Warning: Disk space usage on $PARTITION is $USAGE%.\n\nDisk Usage Information:\n$USAGE_INFO" | \ mail -s "Disk Space Alert on $HOSTNAME" "$EMAIL" fiInstallation
sudo install -m 0755 df_guard.sh /usr/local/bin/df_guard.shMake the script executable:
sudo chmod +x /usr/local/bin/df_guard.shLaunch examples
- Every 15 minutes.
In crontab (root)
*/15 * * * * * /usr/local/bin/df_guard.sh
fireshell@kbin.earthto
Selfhosted@lemmy.world•Forgejo fills up hard drive with repo-archives
331·1 year agoAnubis is usually installed in such a case.

I use Wallabag in a similar way.