ResourceSource.com Control
Ops Dashboard
Day-to-Day Operations

Global Search

Scan web root for specific strings with line numbers.

Reveal & Copy ▾grep -Hrn 'race' /var/www/.

Find Modified

Locate files created or updated since a specific reference date.

Reveal & Copy ▾find /var/www/ehorseracing/mike -type f -newermt "2026-03-14"

List Recent

View directory contents sorted by newest modification time.

Reveal & Copy ▾ls -alt
Logs & Cache Troubleshooting

Error Logs

Dump latest Apache web server errors for debugging.

Reveal & Copy ▾sudo cat /var/log/apache2/error.log

Live Traffic Feed

Monitor incoming web requests in real-time.

Reveal & Copy ▾tail -f /var/log/apache2/access.log

Cache Flush (Telnet)

Purge Memcached data via manual connection.

Reveal & Copy ▾telnet localhost 11211; flush_all

Cache Flush (PyMemcache)

Flush the cache programmatically using Python.

Reveal & Copy ▾python3 -c "import pymemcache.client.base as base; c = base.Client(('127.0.0.1', 11211)); c.flush_all()"
Users & Group Management

Create User

Add a new system user with a home directory.

Reveal & Copy ▾sudo adduser [user]

Add User to Group

Assign an existing user to a group (e.g., www-data).

Reveal & Copy ▾sudo usermod -aG [group] [user]

List Group Members

See all users currently in a specific group.

Reveal & Copy ▾getent group [group]

List All Groups

Display every group defined on this machine.

Reveal & Copy ▾cut -d: -f1 /etc/group
Server Setup & Permissions

Fix Web Ownership

Reset folder owner/group to the web server user.

Reveal & Copy ▾sudo chown -R www-data:www-data /var/www/html

Set ACL Permissions

Apply advanced RWX permissions for web server storage.

Reveal & Copy ▾sudo setfacl -R -m u:www-data:rwx /var/www/storage

Environment Clone

Copy directory structure while preserving all metadata.

Reveal & Copy ▾cp -a /source/. /destination/
System Health

Disk Usage

Check total available space on all partitions.

Reveal & Copy ▾df -h

Memory Usage

Check RAM and Swap usage in Megabytes.

Reveal & Copy ▾free -m

Folder Sizes

Calculate size of each directory in the web root.

Reveal & Copy ▾sudo du -sh /var/www/*

System Update

Refresh package lists and upgrade all software.

Reveal & Copy ▾sudo apt update && sudo apt upgrade -y
AI & Process Management

Find AI Processes

List active Claude, Gemini, or Python jobs.

Reveal & Copy ▾ps aux | grep -Ei "claude|gemini|python"

Process ID Lookup

Quick list of PIDs and names for running AI tasks.

Reveal & Copy ▾pgrep -fl "claude|gemini"

Force Kill Job

Instantly terminate a process using its Process ID.

Reveal & Copy ▾sudo kill -9 [PID]

Kill by Keyword

Stop all processes containing "claude" in the command.

Reveal & Copy ▾sudo pkill -f "claude"
Command Copied!