New Search

If you are not happy with the results below please do another search

3 search results for: redhat

2

odbc and php mssql support for cloudlinux

For your Cloudlinux or a different Redhat based server, add the appropriate version repo below to your server. #RHEL 7 and Oracle Linux 7 #curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/mssql-release.repo #RHEL 8 and Oracle Linux 8 # curl https://packages.microsoft.com/config/rhel/8/prod.repo | sudo tee /etc/yum.repos.d/mssql-release.repo #RHEL9 # curl https://packages.microsoft.com/config/rhel/9/prod.repo | sudo tee /etc/yum.repos.d/mssql-release.repo Delete any potentially conflicting […]

3

Most Used Linux Commands For File Compression

Gzip Compress a file with gzip $ gzip filename Compress and keep the original file $ gzip -c file > file.gz Compress all files in a folder $ gzip -r foldername Tar.gz $ tar -czvf filename.tar.gz directory ZSTD Compression Install first the package, $ sudo apt install zstd (Debian/Ubuntu) $ dnf install zstd (Centos,AlmaLinux,Fedora,Redhat) Usage: […]