002 - Prerequisites Commands for SQL Server on Linux

Опубликовано: 09 Октябрь 2024
на канале: Quick IT
11
0

DESCRIPTION
===========
Commands to quickly check SQL server Prerequisites before installation


USEFUL RESOURCES
================


TO Check SERVER Memory
======================
free -g


TO display details about block devices
======================================
lsblk -f




TO check disk space
===================
df -Ph


To get frequency/speed of the cpu
==================================
cat /proc/cpuinfo | grep 'model name' | uniq


OR
--


lscpu | grep -i mhz


OR
--
watch -n1 "grep \"^[c]pu MHz\" /proc/cpuinfo


How to check OS name on linux
============================
cat /etc/*rele*


cat /etc/os-release
lsb_release -a
hostnamectl


uname -r
lsb_release -a


To check Process type and cores
===============================
lscpu
less /proc/cpuinfo


LINKS
=====
Offictial Microsoft documentation link -- https://docs.microsoft.com/en-us/sql/...
RHEL quickstart link -- https://docs.microsoft.com/en-us/sql/...


FOR SPECIFIC VERSION
====================
SQL Server 2017 release notes -- https://docs.microsoft.com/en-us/sql/...
SQL Server 2019 release notes -- https://docs.microsoft.com/en-us/sql/...

OTHER VIDEO LINKS
=================
001 - Prereqs MSSQL on linux --    • 001 - SQL Server on Linux Prerequisites  
002 - Prerequisites Commands for SQL Server on Linux --    • 002  -  Prerequisites Commands for SQ...  
002.1 - Prerequisites Commands for SQL Server on Linux --    • 02.1 -- Commands to check Linux version  
003 - SQL Server Installation on Linux RHEL7 --    • 003 -  SQL Server Installation on Lin...