Skip to main content

Posts

Showing posts from March, 2018

Audit tool: Lynis

Lynis is a free open source audit tool. Download Lynis:  https://packages.cisofy.com Install Lynis on Ubuntu 16.04.4 LTS sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C80E383C3DE9F082E01391A0366C67DE91CA5D5F sudo apt install apt-transport-https echo 'Acquire::Languages "none";' | sudo tee /etc/apt/apt.conf.d/99disable-translations echo "deb https://packages.cisofy.com/community/lynis/deb/ xenial main" | sudo tee /etc/apt/sources.list.d/cisofy-lynis.list sudo apt update sudo apt install lynis lynis --version sudo lynis audit system lynis show details sudo less /var/log/lynis.log

IBM i: PUB400.COM is back

PUB400.COM - your public IBM i system is back!

Building Resilience

Tatiana Kolovou - Senior Lecturer, Business Communication Tatiana Kolovou and this course on  Building Resilience  will help you identify the what, why, and how of resilience skills and help you be more effective in your every day life.  This course will describe what resilience is and what it's not. Most importantly, this course will help you assess your own level of resilience and provide learning strategies for strengthening your own resilience. Pre-Event strategies Building Resilience: Pre-Event Strategies Post-Event strategies Building Resilience: Post-Event Strategies Articles by Tatiana Konovou Raising Your Resilience Threshold One Word At A Time

Go: Unexpected NUL input

Go error "unexpected NUL input" Encoding MUST be "Encode in UTF-8"

Microsoft SQL Versions

Source:  https://support.microsoft.com/en-us/help/321185/how-to-determine-the-version-edition-and-update-level-of-sql-server-an -- Check version -- PRINT @@VERSION Microsoft SQL Server 2012 (SP1) - 11.0.3000.0 (X64)  Oct 19 2012 13:38:57  Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor) -- Check version -- PRINT @@VERSION Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64)  Dec 28 2012 20:23:12  Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) -- Check version -- PRINT @@VERSION Microsoft SQL Server 2012 ( SP4 ) (KB4018073) - 11.0.7001.0 (X64)  Aug 15 2017 10:23:29  Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.3 <X64> (Build 9600: ) (Hypervisor) -- Check version -- PRINT @@VERSION Microsoft SQL Server 2012 ( SP4-GDR ) (KB4057116) - 11.0.7462.6 (X64)  Jan  5 2018 22:11:56

IBM Domino: Exprired password

Your account is locked out if you do not change your expired password. IBM Notes: Password is expired Account is locked out when password is expired Example of password policy

Linux command: wget

wget - World Wide Web get

Lord, how many times shall I forgive my brother or sister who sins against me?

Then Peter came to Jesus and asked, "Lord, how many times shall I forgive my brother or sister who sins against me? Up to seven times?" Jesus answered, "I tell you, not seven times, but seventy-seven times. - Matthew 18:21-22

Install Microsoft .NET Core SDK

.NET Core Software Development Kit (SDK) is a set of libraries and tools that allow developers to create .NET Core applications and libraries.

Windows: Get Disk Drive's Serial Number

Several ways to get serial number of disk drive. Powershell:  Get-Disk | Format-Table -AutoSize DOS Command: wmic diskdrive get serialnumber Get Disk Drive's serial number

Powershell: Get-Disk

List all disks visible to the operating system. Powershell: Get-Disk - List all disks visible to the operating system Powershell: Get-Disk | Format-Table -Autosize Powershell: Get-Volume - List all volumes