How to Make File and Directory Undeletable in Linux
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 like to protect this way…
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 like to protect this way…
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 Epub to PDF file to…
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 Linux box. 1. Using OpenSSL…
Chkrootkit is an open source rootkit scanner for Linux systems. Rootkits are hard to detect software & programs that allow access to a computer where access it not allowed. They…
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 a sudo lasts only 15…
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 good practice before you dispose…
$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 It Work? Every time you…
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, into a single zipped file…
Here is a quick scrip to pull report on recent password changes for users in Active Directory: Import-Module ActiveDirectory $DateCutOff = (Get-Date).AddDays(-5) Get-ADUser -Filter * -Property passwordlastset | Where-Object {…
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 columns samaccountname | emailaddress john.doe …