{% extends "base.html" %} {% block header_title %}Rocky Linux Man Pages{% endblock %} {% block header_subtitle %}Man page documentation for Rocky Linux packages{% endblock %} {% block extra_css %} .logo-container { text-align: center; margin: 2rem 0 3rem 0; } .logo-container svg { max-width: 400px; width: 100%; height: auto; } .version-grid { display: grid; grid-template-columns: repeat({{ num_columns }}, 1fr); gap: 1.5rem; margin-top: 2rem; } @media (max-width: 768px) { .logo-container { margin: 1rem 0 2rem 0; } .logo-container svg { max-width: 280px; } .version-grid { grid-template-columns: 1fr; gap: 1rem; } .version-card { padding: 1.5rem; } .version-card.small { padding: 0.75rem; } .version-card.small { padding: 0.75rem; } .version-number { font-size: 2rem; } .version-card.small .version-number { font-size: 1.5rem; } } @media (max-width: 480px) { .logo-container svg { max-width: 240px; } .version-grid { grid-template-columns: 1fr; gap: 1rem; } .version-card.small { padding: 0.5rem; } .intro { font-size: 0.9rem; } } .version-card { background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: 8px; padding: 2rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-decoration: none; display: block; } .version-card.small { padding: 1rem; opacity: 0.7; } .version-card.small .version-number { font-size: 1.8rem; } .version-card:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); border-color: var(--accent-primary); text-decoration: none; } .version-number { font-size: 2.5rem; font-weight: 700; color: var(--accent-primary); margin-bottom: 0.5rem; } .version-label { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; } .version-browse { color: var(--accent-primary); font-size: 0.85rem; font-weight: 500; } .intro { margin-bottom: 2rem; color: var(--text-secondary); line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; } .version-section h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--text-primary); text-align: center; font-size: 1.5rem; font-weight: 600; } {% endblock %} {% block content %}

Man page documentation for packages in the Rocky Linux BaseOS and AppStream repositories.

Select Version

{% for row in version_rows %} {% set outer_loop = loop %} {% for item in row %} {% if item %} {% set major, minor = item %}
{{ major }}.{{ minor }}
{% if outer_loop.first %}
Rocky Linux
Browse man pages →
{% endif %}
{% endif %} {% endfor %} {% endfor %}
{% endblock %}