There may be situation that you want to make sure your file or directory cannot be DELETED by accident or intentionally. In my case I…
View More How to Make File and Directory Undeletable in LinuxTag: command line
How to Convert Epub to PDF in Ubuntu Linux
EPUB is a popular file format supported by e-book readers on Amazon Kindle, Mobiles, Tablets and other devices. But sometimes you may need to convert…
View More How to Convert Epub to PDF in Ubuntu LinuxHow to Check Remote SSL Certificate from terminal inLinux
Here are 3 options you can use if you want to check on SSL certificate on any website from command line in terminal on your…
View More How to Check Remote SSL Certificate from terminal inLinuxScan your Linux Ubuntu machine for rootkits or malware
Chkrootkit is an open source rootkit scanner for Linux systems. Rootkits are hard to detect software & programs that allow access to a computer where…
View More Scan your Linux Ubuntu machine for rootkits or malwareHow to change SUDO password timeout in Linux
Some Linux orders require Administrator privilege for execution of certain scripts or tasks in Linux. However, the default for the administrative permissions whene you issue…
View More How to change SUDO password timeout in LinuxHow to Clean Wipe your hard drive before disposal
There is no need to buying very expensive tools to wipe your drive clean and securely so the data cannot be recovered. It is a…
View More How to Clean Wipe your hard drive before disposalEasier way to add DIRECTORY to your path in LINUX
$PATH is very important environment variable and knowing how to work with it, can be very useful What Is $PATH on Linux, and How Does…
View More Easier way to add DIRECTORY to your path in LINUXCompress files or folders with PowerShell
The Compress-Archive cmdlet creates a compressed, or zipped, archive file from one or more specified files or directories. An archive packages multiple files, with optional compression,…
View More Compress files or folders with PowerShellGet report on recent password changes in AD
Here is a quick scrip to pull report on recent password changes for users in Active Directory: 123Import-Module ActiveDirectory $DateCutOff = (Get-Date).AddDays(-5) Get-ADUser -Filter *…
View More Get report on recent password changes in ADAdd SMTP-ProxyAddress to users in AD with PowerShell
Here is a quick way to add new SMTP/ProxyAddress for the users in Active Directory with use of PowerShell. Create a csv file with two…
View More Add SMTP-ProxyAddress to users in AD with PowerShell