How to Check CentOS and RHEL Version in Linux
Check CentOS and Red Hat Enterprise Linux (RHEL) release versions from terminal: inspect cat /etc/os-release, hostnamectl, and rpm -q centos-release.
Learn
Practical tutorials and deep explanations grounded in reproducible environments, exact versions, and observable results.
Start learning your way
Learn by technology
Learning resources
Structured tutorials
Existing library
Check CentOS and Red Hat Enterprise Linux (RHEL) release versions from terminal: inspect cat /etc/os-release, hostnamectl, and rpm -q centos-release.
Open Google Play Store app listing links directly in Android: launch market://details?id=package_name URI intents with HTTPS fallback in browser.
Launch the Gmail email compose screen on button click in Android using Kotlin: build ACTION_SENDTO Intent with mailto: URI and subject extras.
Install Apache Tomcat 10 web server on Ubuntu Linux: setup OpenJDK Java 17, create tomcat system user, configure systemd service, and open firewall.
Upload files and images via HTTP POST using cURL: execute curl -F "file=@photo.jpg" URL for multipart form uploads and binary payload POSTs.
Transfer files securely over SSH using SFTP on Ubuntu Linux: connect via sftp user@host, download with get, upload with put, and configure non-standard ports.
Redirect website subfolders (domain.com/blog/) to subdomains (blog.domain.com): configure Nginx return 301 and Apache .htaccess RewriteRule.
Master open-source Linux performance profiling and debugging tools: trace system calls with strace, profile CPU with perf, and find memory leaks.
Measure USB flash drive write and read speed on Linux: benchmark block performance using dd count=1000 bs=1M status=progress and hdparm.