Simply drag it to your bookmarks:
Refresh phpMyAdminAnd that’s all 🙂
Everything related to system administration.
How to find and install older macOS/OS X versions? If you want to download installer images and downgrade your operating system here you can find some instructions.
Continue reading How to downgrade macOS? Instructions with installer linksIf you want to monitor file count in some directory simply use this:
watch "ls -A | wc -l"
You can also mask specific files using asterisk char:
watch "ls sess* -A | wc -l"
If you get Argument list too long error, please change command syntax to this:
watch "ls -U | grep -c '^sess'"
I’m building a fleet of distributed Raspberry multimedia players and I’ve decided to start with a few terminal commands to manage them.
Let’s begin with a screenshot of current screen contents.
Continue reading Screenshot from console on Raspberry PiSimple code snippet to cleanup files older than n days.
Continue reading Use Powershell to periodically cleanup temporary dirsThis tutorial will guide you through the commands to change DNS remotely.
Continue reading How to use psexec to remotely change DNS server?This article will provide instructions for anyone interested in using headless Debian (or any derivatives).
And once again use psexec…
psexec64 -s /user:domain\user -i \\REMOTE_COMPUTER "rundll32 printui.dll,PrintUIEntry /in /n\\SERVER\PRINTER"
Voilà!
Here you’ll find complete instruction how to deploy Chrome on one remote host at once in Windows environment.
Continue reading How to silently deploy Chrome on a remote host?
In my previous posts you can find info how to install psexec. When you’re already done with this process, you can start updating clock settings on remote machines.
Set time
psexec64 -s /user:domain\user -i \\remote_ip net time \\domain_controller /set /y
Will output:
Bieżąca godzina na \\domain_controller to 2018-08-28 09:55:00.
At least in polish Windows 😀
Check time
psexec64 -s /user:domain\user -i \\remote_ip cmd /c time /t
Will output:
11:18
And remember good IT specialist is lazy specialist! Do not go anywhere! Eat ya buritos.