├── .github └── workflows │ └── hugo.yaml ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── THIRD_PARTY_LICENSE.txt ├── archetypes └── default.md ├── assets ├── css │ └── custom.css ├── icons │ ├── luna.png │ └── luna.svg ├── img │ ├── luna-banner-white.png │ ├── luna-banner-yellow.png │ ├── oc3 │ │ └── c3-header.png │ ├── ocean-background.jpg │ ├── ocne │ │ ├── OCNE-banner-v2.png │ │ ├── OCNE-banner.jpg │ │ ├── OCNE-environ-section.png │ │ ├── OCNE-install-section.png │ │ ├── OCNE-istio-section.png │ │ ├── OCNE-kata-section.png │ │ ├── OCNE-kubernetes-section.png │ │ ├── OCNE-podman-section.png │ │ └── OCNE2-install-section.png │ ├── ol-redwood-background-2.png │ ├── ol-redwood-background-3.png │ ├── ol-redwood-background-4.png │ ├── ol-redwood-background.png │ ├── ol-train4.png │ ├── ol │ │ ├── OL-1200x200-banner.png │ │ ├── OL-banner-v2a.png │ │ ├── OL-page-admin.png │ │ ├── OL-page-howto.png │ │ ├── OL-page-install.png │ │ ├── OL-page-intro.png │ │ ├── OL-page-ksplice.png │ │ ├── OL-page-monitor.png │ │ ├── OL-page-network.png │ │ ├── OL-page-package.png │ │ ├── OL-page-remote.png │ │ ├── OL-page-storage.png │ │ ├── OL-page-virtual.png │ │ └── virt │ │ │ ├── OL-virt-containers.png │ │ │ └── OL-virt-kvm.png │ ├── olam │ │ ├── OLAM-banner-v2.png │ │ ├── OLAM-banner.jpg │ │ ├── OLAM-engine-section.png │ │ └── OLAM-ver1-section1.png │ ├── oloci │ │ ├── OLCI-1200x200-banner.png │ │ ├── OLCI-banner-v2.png │ │ ├── OLOCI-admin-header2.png │ │ ├── OLOCI-deploy-header2.png │ │ ├── OLOCI-kvm-header2.png │ │ ├── OLOCI-network-header2.png │ │ ├── OLOCI-security-header2.png │ │ ├── OLOCI-storage-header2.png │ │ └── OLOCI-vbox-header.png │ ├── oltrain-logo-transparent.png │ ├── olvm │ │ ├── OLVM-1200x200-banner.png │ │ ├── OLVM-admin-section2.png │ │ ├── OLVM-admin-section3.png │ │ ├── OLVM-backup-section2.png │ │ ├── OLVM-backup-section3.png │ │ ├── OLVM-banner-v2.png │ │ ├── OLVM-deploy-section3.png │ │ ├── OLVM-migrate-section3.png │ │ ├── OLVM-monitor-section2.png │ │ ├── OLVM-monitor-section3.png │ │ ├── OLVM-oem-section2.png │ │ ├── OLVM-storage-section2.png │ │ ├── OLVM-storage-section3.png │ │ ├── OLVM-vm-section2.png │ │ └── OLVM-vm-section3.png │ ├── opca │ │ ├── pca-banner-v2.png │ │ ├── pca-header4.png │ │ ├── pca-page-compencl2.png │ │ ├── pca-page-compinst4.png │ │ ├── pca-page-iam4x.png │ │ ├── pca-page-network4.png │ │ ├── pca-page-ocicli.png │ │ ├── pca-page-srvencl2.png │ │ └── pca-page-storage4.png │ ├── osd │ │ ├── osd-1200x200-banner.png │ │ └── osd-banner-v2.png │ ├── osmh │ │ ├── osmh-admin-header.png │ │ ├── osmh-banner-v2.png │ │ ├── osmh-deploy-header.png │ │ ├── osmh-develop-header.png │ │ ├── osmh-migrate-header.png │ │ ├── osmh-oci-header.png │ │ └── osmh-page-header-1200x200.png │ ├── quiz1.png │ ├── vbox │ │ ├── vbox-1200x200-banner.png │ │ ├── vbox-2024-1200x200-banner.png │ │ ├── vbox-6-sect.png │ │ ├── vbox-61-sect1.png │ │ ├── vbox-7-sect.png │ │ ├── vbox-70-2024-sect.png │ │ ├── vbox-70-sect1.png │ │ ├── vbox-71-2024-sect.png │ │ ├── vbox-banner.png │ │ └── vboxmanage-sect.png │ ├── whats-new-head2.png │ ├── whats-new.png │ └── ytplaylist.png └── js │ └── home.js ├── config.toml ├── config └── _default │ ├── config.toml │ ├── languages.en.toml │ ├── markup.toml │ ├── menus.en.toml │ └── params.toml ├── content ├── _index.md ├── playlists │ ├── _index.md │ ├── admin │ │ ├── _index.md │ │ └── featured.png │ ├── clips │ │ ├── _index.md │ │ └── featured.png │ ├── dtrace │ │ ├── _index.md │ │ └── dtrace-featured.png │ ├── featured.png │ ├── full │ │ ├── _index.md │ │ └── featured.png │ ├── howto │ │ ├── _index.md │ │ └── featured.png │ ├── install │ │ ├── _index.md │ │ └── featured.png │ ├── intro │ │ ├── _index.md │ │ └── featured.png │ ├── ksplice │ │ ├── _index.md │ │ └── featured.png │ ├── monitor │ │ ├── _index.md │ │ └── featured.png │ ├── network │ │ ├── _index.md │ │ └── featured.png │ ├── package │ │ ├── _index.md │ │ └── featured.png │ ├── remote │ │ ├── _index.md │ │ └── featured.png │ ├── storage │ │ ├── _index.md │ │ └── featured.png │ └── virtual │ │ ├── _index.md │ │ └── featured.png ├── posts │ ├── _index.md │ ├── oc3 │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── ocne │ │ ├── Post-33 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-10 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-11 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-19 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-21 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-22 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-23 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-24 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-25 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-26 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-27 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-28 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-29 │ │ │ ├── featured.old │ │ │ ├── index.md │ │ │ └── k8s_clips1_hires_white_thumbnail.png │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-30 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-31 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-32 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-34 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-35 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-36 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-37 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-38 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-39 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-40 │ │ │ ├── featured.old │ │ │ ├── index.md │ │ │ └── k8s_clips1_hires_white_thumbnail.png │ │ ├── post-41 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-42 │ │ │ ├── index.md │ │ │ └── k8s_clips1_hires_white_thumbnail.png │ │ ├── post-43 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-44 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-45 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-46 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-47 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-48 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-49 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-50 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-51 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-7 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-8 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-9 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── ol │ │ ├── admin │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-10 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-11 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-12 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-13 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-14 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-15 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-16 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-17 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-18 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-19 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-20 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-21 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-22 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-23 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-24 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-25 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-26 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-27 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-28 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-29 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-30 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-31 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-32 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-33 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-9 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── dtrace │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── howto │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── install │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-12 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-13 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-14 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-15 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-16 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-17 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-18 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-19 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-20 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-21 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-22 │ │ │ │ ├── index.md │ │ │ │ └── lab1_hires_white_thumbnail.png │ │ │ ├── post-23 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-24 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-25 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-9 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── intro │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-10 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-11 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-12 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-13 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-14 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-15 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-16 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-17 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-18 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-9 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── ksplice │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── monitor │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-10 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-11 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-12 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-13 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-14 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-15 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ └── post-9 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── network │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-10 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-9 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── package │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── remote │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-8 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ ├── storage │ │ │ ├── post-1 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-10 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-11 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-12 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-13 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-14 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-15 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-16 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-17 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-18 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-19 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-20 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-21 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-22 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-23 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-24 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-25 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-26 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-27 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-28 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-29 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-3 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-30 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-31 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-6 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ │ └── post-9 │ │ │ │ ├── featured.png │ │ │ │ └── index.md │ │ └── virt │ │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-10 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-11 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-19 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-21 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-22 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-23 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-24 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-25 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-26 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-27 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-28 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-29 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-30 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-31 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-32 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-33 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-34 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-36 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-37 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-38 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-39 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-40 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-41 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-42 │ │ │ ├── .index.md.swo │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-43 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-44 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-45 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-46 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-47 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-48 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-49 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-50 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-51 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-52 │ │ │ ├── clips1_hires_white_thumbnail.png │ │ │ └── index.md │ │ │ ├── post-53 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-54 │ │ │ ├── index.md │ │ │ └── luna1_hires_white_thumbnail.png │ │ │ ├── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-7 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ ├── post-8 │ │ │ ├── featured.png │ │ │ └── index.md │ │ │ └── post-9 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── olam │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-10 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-11 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-19 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-7 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-8 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-9 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── oloci │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-10 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-19 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-21 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-22 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-23 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-24 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-25 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-26 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-27 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-28 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-29 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-30 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-31 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-32 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-33 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-34 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-35 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-36 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-37 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-38 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-40 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-42 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-43 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-44 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-7 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-8 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-9 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── olvm │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-10 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-11 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-19 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-21 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-22 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-27 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-28 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-7 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-8 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-9 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── opca │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-10 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-11 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-19 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-21 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-22 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-23 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-24 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-25 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-26 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-27 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-28 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-29 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-30 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-31 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-32 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-33 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-34 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-7 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-8 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-9 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── osd │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-2 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ ├── osmh │ │ ├── post-1 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-10 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-12 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-13 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-14 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-15 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-16 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-17 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-18 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-19 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-20 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-21 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-22 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-23 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-24 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-25 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-3 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-4 │ │ │ ├── featured.png │ │ │ └── index.md │ │ ├── post-5 │ │ │ ├── featured.png │ │ │ └── index.md │ │ └── post-6 │ │ │ ├── featured.png │ │ │ └── index.md │ └── vbox │ │ ├── post-1 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-13 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-14 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-15 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-16 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-17 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-2 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-3 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-4 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-5 │ │ ├── featured.png │ │ └── index.md │ │ ├── post-6 │ │ ├── featured.png │ │ └── index.md │ │ └── post-7 │ │ ├── featured.png │ │ └── index.md ├── tags │ ├── _index.md │ └── advanced │ │ └── _index.md └── tracks │ ├── _index.md │ ├── oc3 │ ├── featured.png │ └── index.md │ ├── ocne │ ├── featured.png │ └── index.md │ ├── ol │ ├── _index.md │ ├── admin │ │ ├── featured.png │ │ └── index.md │ ├── dtrace │ │ ├── featured.png │ │ └── index.md │ ├── featured.png │ ├── howto │ │ ├── featured.png │ │ └── index.md │ ├── inst_boot │ │ ├── featured.png │ │ └── index.md │ ├── intro │ │ ├── featured.png │ │ └── index.md │ ├── ksplice │ │ ├── featured.png │ │ └── index.md │ ├── mon-log │ │ ├── featured.png │ │ └── index.md │ ├── network │ │ ├── featured.png │ │ └── index.md │ ├── pkg-mgmt │ │ ├── featured.png │ │ └── index.md │ ├── rem-mgmt │ │ ├── featured.png │ │ └── index.md │ ├── stor-mgmt │ │ ├── featured.png │ │ └── index.md │ └── virt │ │ ├── featured.png │ │ └── index.md │ ├── olam │ ├── featured.png │ └── index.md │ ├── oloci │ ├── featured.png │ └── index.md │ ├── olvm │ ├── featured.png │ └── index.md │ ├── opca │ ├── featured.png │ └── index.md │ ├── osd │ ├── featured.png │ └── index.md │ ├── osmh │ ├── featured.png │ └── index.md │ └── vbox │ ├── featured.png │ └── index.md ├── data └── .gitkeep ├── layouts ├── partials │ ├── extend-footer.html │ ├── home │ │ ├── background.html │ │ └── custom.html │ ├── recent-articles-demo.html │ └── tracks │ │ ├── cardview.html │ │ ├── cardview2.html │ │ └── cardview3.html └── shortcodes │ ├── card2.html │ ├── lead.html │ └── list2.html └── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── img ├── OL-1200x200-banner.png ├── OL-banner-v2a.png └── OL-page-intro.png └── site.webmanifest /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "themes/blowfish"] 2 | path = themes/blowfish 3 | url = https://github.com/nunocoracao/blowfish.git 4 | branch = main 5 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /assets/icons/luna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/icons/luna.png -------------------------------------------------------------------------------- /assets/img/luna-banner-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/luna-banner-white.png -------------------------------------------------------------------------------- /assets/img/luna-banner-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/luna-banner-yellow.png -------------------------------------------------------------------------------- /assets/img/oc3/c3-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oc3/c3-header.png -------------------------------------------------------------------------------- /assets/img/ocean-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocean-background.jpg -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-banner-v2.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-banner.jpg -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-environ-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-environ-section.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-install-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-install-section.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-istio-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-istio-section.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-kata-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-kata-section.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-kubernetes-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-kubernetes-section.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE-podman-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE-podman-section.png -------------------------------------------------------------------------------- /assets/img/ocne/OCNE2-install-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ocne/OCNE2-install-section.png -------------------------------------------------------------------------------- /assets/img/ol-redwood-background-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol-redwood-background-2.png -------------------------------------------------------------------------------- /assets/img/ol-redwood-background-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol-redwood-background-3.png -------------------------------------------------------------------------------- /assets/img/ol-redwood-background-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol-redwood-background-4.png -------------------------------------------------------------------------------- /assets/img/ol-redwood-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol-redwood-background.png -------------------------------------------------------------------------------- /assets/img/ol-train4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol-train4.png -------------------------------------------------------------------------------- /assets/img/ol/OL-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-1200x200-banner.png -------------------------------------------------------------------------------- /assets/img/ol/OL-banner-v2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-banner-v2a.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-admin.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-howto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-howto.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-install.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-intro.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-ksplice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-ksplice.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-monitor.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-network.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-package.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-remote.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-storage.png -------------------------------------------------------------------------------- /assets/img/ol/OL-page-virtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/OL-page-virtual.png -------------------------------------------------------------------------------- /assets/img/ol/virt/OL-virt-containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/virt/OL-virt-containers.png -------------------------------------------------------------------------------- /assets/img/ol/virt/OL-virt-kvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ol/virt/OL-virt-kvm.png -------------------------------------------------------------------------------- /assets/img/olam/OLAM-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olam/OLAM-banner-v2.png -------------------------------------------------------------------------------- /assets/img/olam/OLAM-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olam/OLAM-banner.jpg -------------------------------------------------------------------------------- /assets/img/olam/OLAM-engine-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olam/OLAM-engine-section.png -------------------------------------------------------------------------------- /assets/img/olam/OLAM-ver1-section1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olam/OLAM-ver1-section1.png -------------------------------------------------------------------------------- /assets/img/oloci/OLCI-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLCI-1200x200-banner.png -------------------------------------------------------------------------------- /assets/img/oloci/OLCI-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLCI-banner-v2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-admin-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-admin-header2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-deploy-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-deploy-header2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-kvm-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-kvm-header2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-network-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-network-header2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-security-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-security-header2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-storage-header2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-storage-header2.png -------------------------------------------------------------------------------- /assets/img/oloci/OLOCI-vbox-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oloci/OLOCI-vbox-header.png -------------------------------------------------------------------------------- /assets/img/oltrain-logo-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/oltrain-logo-transparent.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-1200x200-banner.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-admin-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-admin-section2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-admin-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-admin-section3.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-backup-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-backup-section2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-backup-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-backup-section3.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-banner-v2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-deploy-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-deploy-section3.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-migrate-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-migrate-section3.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-monitor-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-monitor-section2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-monitor-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-monitor-section3.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-oem-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-oem-section2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-storage-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-storage-section2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-storage-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-storage-section3.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-vm-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-vm-section2.png -------------------------------------------------------------------------------- /assets/img/olvm/OLVM-vm-section3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/olvm/OLVM-vm-section3.png -------------------------------------------------------------------------------- /assets/img/opca/pca-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-banner-v2.png -------------------------------------------------------------------------------- /assets/img/opca/pca-header4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-header4.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-compencl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-compencl2.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-compinst4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-compinst4.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-iam4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-iam4x.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-network4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-network4.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-ocicli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-ocicli.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-srvencl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-srvencl2.png -------------------------------------------------------------------------------- /assets/img/opca/pca-page-storage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/opca/pca-page-storage4.png -------------------------------------------------------------------------------- /assets/img/osd/osd-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osd/osd-1200x200-banner.png -------------------------------------------------------------------------------- /assets/img/osd/osd-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osd/osd-banner-v2.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-admin-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-admin-header.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-banner-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-banner-v2.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-deploy-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-deploy-header.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-develop-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-develop-header.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-migrate-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-migrate-header.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-oci-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-oci-header.png -------------------------------------------------------------------------------- /assets/img/osmh/osmh-page-header-1200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/osmh/osmh-page-header-1200x200.png -------------------------------------------------------------------------------- /assets/img/quiz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/quiz1.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-1200x200-banner.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-2024-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-2024-1200x200-banner.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-6-sect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-6-sect.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-61-sect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-61-sect1.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-7-sect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-7-sect.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-70-2024-sect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-70-2024-sect.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-70-sect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-70-sect1.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-71-2024-sect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-71-2024-sect.png -------------------------------------------------------------------------------- /assets/img/vbox/vbox-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vbox-banner.png -------------------------------------------------------------------------------- /assets/img/vbox/vboxmanage-sect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/vbox/vboxmanage-sect.png -------------------------------------------------------------------------------- /assets/img/whats-new-head2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/whats-new-head2.png -------------------------------------------------------------------------------- /assets/img/whats-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/whats-new.png -------------------------------------------------------------------------------- /assets/img/ytplaylist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/assets/img/ytplaylist.png -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | baseURL = 'http://example.org/' 2 | languageCode = 'en-us' 3 | title = 'My New Hugo Site' 4 | -------------------------------------------------------------------------------- /config/_default/markup.toml: -------------------------------------------------------------------------------- 1 | # -- Markup -- 2 | # These settings are required for the theme to function. 3 | 4 | [goldmark] 5 | [goldmark.renderer] 6 | unsafe = true 7 | 8 | [highlight] 9 | noClasses = false 10 | 11 | [tableOfContents] 12 | startLevel = 2 13 | endLevel = 4 14 | -------------------------------------------------------------------------------- /content/playlists/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oracle Linux YouTube Playlists 3 | description: "Check out our content available on YouTube." 4 | sharingLinks : false 5 | hideFeatureImage: false 6 | showHero: true 7 | --- 8 | 9 | {{< lead >}} 10 | Expand your knowledge with Oracle Linux. 11 | {{< /lead >}} 12 | 13 | This section contains links to our full Oracle Linux playlist along with partial lists by topic. 14 | 15 | --- 16 | -------------------------------------------------------------------------------- /content/playlists/admin/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Administration" 3 | date: 2023-12-10 4 | externalURL: "https://www.oracle.com/goto/linuxadminplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/admin/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/admin/featured.png -------------------------------------------------------------------------------- /content/playlists/clips/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Clips" 3 | date: 2023-12-13 4 | externalURL: "https://www.youtube.com/playlist?list=PLKCk3OyNwIztk9cpxVhPsyshV8bHN8iyp" 5 | --- -------------------------------------------------------------------------------- /content/playlists/clips/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/clips/featured.png -------------------------------------------------------------------------------- /content/playlists/dtrace/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux DTrace" 3 | date: 2023-12-08 4 | externalURL: "https://www.oracle.com/goto/linuxdtraceplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/dtrace/dtrace-featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/dtrace/dtrace-featured.png -------------------------------------------------------------------------------- /content/playlists/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/featured.png -------------------------------------------------------------------------------- /content/playlists/full/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux (Full List)" 3 | date: 2023-12-14 4 | externalURL: "https://www.youtube.com/playlist?list=PLKCk3OyNwIztOLwiTOF0HOV5aiTjGNpLl" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/full/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/full/featured.png -------------------------------------------------------------------------------- /content/playlists/howto/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux How-To" 3 | date: 2023-12-01 4 | externalURL: "https://www.oracle.com/goto/linuxhowtoplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/howto/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/howto/featured.png -------------------------------------------------------------------------------- /content/playlists/install/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Installation and Boot Process" 3 | date: 2023-12-11 4 | externalURL: "https://www.oracle.com/goto/linuxinstallplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/install/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/install/featured.png -------------------------------------------------------------------------------- /content/playlists/intro/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Introduction to Oracle Linux" 3 | date: 2023-12-12 4 | externalURL: "https://www.oracle.com/goto/linuxintroplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/intro/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/intro/featured.png -------------------------------------------------------------------------------- /content/playlists/ksplice/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Ksplice" 3 | date: 2023-12-05 4 | externalURL: "https://www.oracle.com/goto/kspliceplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/ksplice/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/ksplice/featured.png -------------------------------------------------------------------------------- /content/playlists/monitor/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Monitoring and Logging" 3 | date: 2023-12-09 4 | externalURL: "https://www.oracle.com/goto/linuxmonitorplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/monitor/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/monitor/featured.png -------------------------------------------------------------------------------- /content/playlists/network/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Networking" 3 | date: 2023-12-07 4 | externalURL: "https://www.oracle.com/goto/linuxnetworkplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/network/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/network/featured.png -------------------------------------------------------------------------------- /content/playlists/package/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Package Management" 3 | date: 2023-12-06 4 | externalURL: "https://www.oracle.com/goto/linuxpackageplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/package/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/package/featured.png -------------------------------------------------------------------------------- /content/playlists/remote/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Remote Management" 3 | date: 2023-12-04 4 | externalURL: "https://www.oracle.com/goto/linuxremoteplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/remote/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/remote/featured.png -------------------------------------------------------------------------------- /content/playlists/storage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Storage Management" 3 | date: 2023-12-03 4 | externalURL: "https://www.oracle.com/goto/linuxstorageplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/storage/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/storage/featured.png -------------------------------------------------------------------------------- /content/playlists/virtual/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oracle Linux Virtualization" 3 | date: 2023-12-02 4 | externalURL: "https://www.oracle.com/goto/linuxvirtualplay" 5 | --- 6 | -------------------------------------------------------------------------------- /content/playlists/virtual/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/playlists/virtual/featured.png -------------------------------------------------------------------------------- /content/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Posts" 3 | date: 2022-06-13T20:55:37+01:00 4 | draft: false 5 | 6 | showDate : false 7 | showDateUpdated : false 8 | showHeadingAnchors : false 9 | showReadingTime : false 10 | showTableOfContents : true 11 | showTaxonomies : false 12 | showWordCount : false 13 | showSummary : false 14 | cascade: 15 | sharingLinks : false 16 | showPagination : false 17 | invertPagination: true 18 | --- 19 | 20 | -------------------------------------------------------------------------------- /content/posts/oc3/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oc3/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/oc3/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oc3/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/oc3/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oc3/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/oc3/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oc3/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/Post-33/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/Post-33/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-24/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-24/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-25/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-25/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-26/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-26/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-27/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-27/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-28/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-28/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-29/featured.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-29/featured.old -------------------------------------------------------------------------------- /content/posts/ocne/post-29/k8s_clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-29/k8s_clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ocne/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-30/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-30/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-31/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-31/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-32/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-32/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-34/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-34/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-35/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-35/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-36/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-36/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-37/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-37/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-38/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-38/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-39/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-39/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-40/featured.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-40/featured.old -------------------------------------------------------------------------------- /content/posts/ocne/post-40/k8s_clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-40/k8s_clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ocne/post-41/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-41/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-42/k8s_clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-42/k8s_clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ocne/post-43/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-43/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-44/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-44/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-45/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-45/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-46/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-46/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-47/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-47/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-48/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-48/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-49/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-49/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-50/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-50/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-51/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-51/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ocne/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ocne/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-11/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Intro to Control Groups" 3 | date: 2025-06-19 4 | draft: false 5 | summary: "Learn how to use control groups on Oracle Linux." 6 | tags: ["ol", "video","ol-admin"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="EXSlm5UEnfY" title="Introduction to Control Groups on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information and examples for using Control Groups (cgroups) to manage CPU time. 15 | -------------------------------------------------------------------------------- /content/posts/ol/admin/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-12/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "SELinux Basics" 3 | date: 2022-04-10 4 | draft: false 5 | summary: "Learn the fundimentals of using SELinux on Oracle Linux." 6 | tags: ["ol", "video","ol-admin"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="n9ggIaMKkm8" title="SELinux Basics on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides an introduction and beginner examples on using SELinux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/admin/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-14/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Udev" 3 | date: 2022-07-26 4 | draft: false 5 | summary: "Learn about Udev on Oracle Linux." 6 | tags: ["ol", "video","ol-admin"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="entQQ9cEpdY" title="Introducing Udev on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides an introduction and examples on using Udev in Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/admin/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-24/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-24/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-25/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-25/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-26/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-26/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-27/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-27/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-28/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-28/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-29/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-29/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-30/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-30/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-31/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-31/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-32/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-32/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-33/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-33/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/admin/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/admin/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/dtrace/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/dtrace/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/dtrace/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/dtrace/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/dtrace/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/dtrace/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/dtrace/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/dtrace/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/howto/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/howto/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/howto/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/howto/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/howto/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/howto/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/howto/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/howto/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/howto/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/howto/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/howto/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/howto/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-18/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-18/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-18/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Install Image Builder on Oracle Linux" 3 | date: 2024-07-19 4 | draft: false 5 | summary: "Learn how to install Image Builder on Oracle Linux." 6 | tags: ["ol", "video", "clips", "ol-install"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="O_R5m_Q27Yk" title="Install Image Builder on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video describes the requirements for, and demonstrates how to install the Image Builder tool on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/install/post-19/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-19/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-20/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-20/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-21/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-21/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-22/lab1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-22/lab1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-24/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-24/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-25/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-25/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-25/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Kernel Boot Parameters" 3 | date: 2020-05-27 4 | draft: false 5 | summary: "Learn about configuring kernel boot parameters in Oracle Linux." 6 | tags: ["ol", "video","ol-install"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="UoVEDk_4nfI" title="Kernel Boot Parameters in Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video describes how to modify the Oracle Linux boot time parameters when booting the system. 15 | -------------------------------------------------------------------------------- /content/posts/ol/install/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-7/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-7/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/install/post-8/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Systemd Target Units" 3 | date: 2025-06-16 4 | draft: false 5 | summary: "Learn about systemd target units on Oracle Linux." 6 | tags: ["ol", "video","ol-install"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="RYSQgmY7_tI" title="systemd Target Units on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video describes the configuration and use of systemd target units in Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/install/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/install/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-15/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Customize Your Shell" 3 | date: 2021-12-21 4 | draft: false 5 | summary: "Learn how to customize your work enviroment on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="kdpfqiAp8BA" title="Customizing Work Environment on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This introduction demonstrates how to customize Oracle Linux's working environment. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-16/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Useful Linux Tools" 3 | date: 2022-01-22 4 | draft: false 5 | summary: "Learn some of the useful tools that are available on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="ZXO4hqoO52o" title="Useful Linux Tools on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This introduction discusses and demonstrates many useful tools such as grep, sed, awk and redirection available on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-17/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Bash Shell Scripting" 3 | date: 2025-01-20 4 | draft: false 5 | summary: "Learn the basics of bash scripting on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="TtDr5M3s7WQ" title="Introduction to Bash Shell Scripting" >}} 11 | 12 | ## Details 13 | 14 | This introduction discusses the basics of scripting with Bash on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-2/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Install Oracle Linux" 3 | date: 2021-06-16 4 | draft: false 5 | summary: "Learn how to install Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="dvvP4wpsAQI" title="Introduction to Installing Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates where to download Oracle Linux and the installation process. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-4/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Files and Directories" 3 | date: 2025-01-25 4 | draft: false 5 | summary: "Learn how to administer file and directories on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="NXktkK3gTuE" title="Working with Files and Directories" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates the essentials for administering files and directories on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using vim" 3 | date: 2025-01-28 4 | draft: false 5 | summary: "Learn how to use vim on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="Hn4y-SoyKIc" title="Introduction to Using vim" >}} 11 | 12 | ## Details 13 | 14 | This video provides an introduction to vim, describing Normal vs. Insert mode, how to open, save and close a file, move around a file, search, and modify a file. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-6/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Users and Groups" 3 | date: 2021-05-27 4 | draft: false 5 | summary: "Learn how work with users and groups on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="rjY_Z9diSwE" title="Introduction to Users and Groups on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates the essentials for administering users and groups on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-7/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Permissions Overview" 3 | date: 2021-06-21 4 | draft: false 5 | summary: "Learn how work with file permissions on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="Ce5gXQlw_o4" title="Permissions Overview on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This introduction describes how read, write, and execute permissions work within Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/intro/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/intro/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/intro/post-9/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Networking" 3 | date: 2021-07-14 4 | draft: false 5 | summary: "Learn about networking on Oracle Linux." 6 | tags: ["ol", "video","ol-intro"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="V6HT5lXo4g0" title="Introduction to Networking on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates the essentials for understanding networking on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-4/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Uninstall Online Mode" 3 | date: 2020-06-07 4 | draft: false 5 | summary: "Learn how to uninstall Oracle Ksplice on Oracle Linux." 6 | tags: ["ol", "video","ol-ksplice"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="G0j1XYNkomY" title="Uninstalling Oracle Ksplice (online mode) using Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video shows how to remove the Oracle Ksplice packages and unregister from the Unbreakable Linux Network. 15 | -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-5/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-5/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ksplice Known Exploit Detection" 3 | date: 2025-06-15 4 | draft: false 5 | summary: "Learn how to install and use Oracle Ksplice Known Exploit Detection on Oracle Linux." 6 | tags: ["ol", "video","ol-ksplice"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="E3EPqRJ8cio" title="Ksplice Known Exploit Detection on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information for installing Oracle Ksplice Known Exploit Detection. 15 | -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/ksplice/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/ksplice/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-10/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-10/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-2/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Run SOSReport" 3 | date: 2020-10-23 4 | draft: false 5 | summary: "Learn how to use the sosreport utility on Oracle Linux." 6 | tags: ["ol", "video","ol-monitor"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="FD-wgH4xhJI" title="Using the sosreport Utility on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates the sosreport utility to collect system information on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-3/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using IOStat" 3 | date: 2025-06-19 4 | draft: false 5 | summary: "Learn how to use the iostat utility on Oracle Linux." 6 | tags: ["ol", "video","ol-monitor"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="IoRQ_adZUuA" title="Using the iostat Utility on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates the iostat utility to review input output statistics for devices on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-4/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Use mpstat" 3 | date: 2021-01-12 4 | draft: false 5 | summary: "Learn how to use the mpstat utility on Oracle Linux." 6 | tags: ["ol", "video","ol-monitor"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="ioAP964a_Q0" title="Using the mpstat Utility on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates the mpstat utility reports processor statistics on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-5/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-5/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Use vmstat" 3 | date: 2025-05-23 4 | draft: false 5 | summary: "Learn how to use the vmstat utility on Oracle Linux." 6 | tags: ["ol", "video","ol-monitor"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="jFdYtpX8y8Y" title="Using the vmstat Utility on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates reporting virtual memory statistics using the vmstat utility on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-6/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Run top" 3 | date: 2021-01-14 4 | draft: false 5 | summary: "Learn how to use the top utility on Oracle Linux." 6 | tags: ["ol", "video","ol-monitor"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="t3JZ8Tcw7fo" title="Using the top Utility on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates reporting and displaying system processes in real time using the top utility on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-8/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-8/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/monitor/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/monitor/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-2/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "NetworkManager CLI" 3 | date: 2025-06-19 4 | draft: false 5 | summary: "Learn about NetworkManager CLI on Oracle Linux." 6 | tags: ["ol", "video","ol-network"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="sGTJ9gXpfuE" title="Using NetworkManager CLI (nmcli) on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information related to using the NetworkManager nmcli utility to add a secondary NIC to an Oracle Cloud Instance. 15 | -------------------------------------------------------------------------------- /content/posts/ol/network/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using the ip Utility" 3 | date: 2025-04-25 4 | draft: false 5 | summary: "Learn how to use the ip utility on Oracle Linux." 6 | tags: ["ol", "video","ol-network"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="uTKge05raTM" title="Using the ip command on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information related to using the Linux ip utility to get and set network details on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/network/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-6/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using firewalld" 3 | date: 2025-04-08 4 | draft: false 5 | summary: "Learn how to configure a firewall with firewalld on Oracle Linux." 6 | tags: ["ol", "video","ol-network"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="1YLZtyZmZf4" title="Using firewalld on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides an introduction to using the firewalld utility which provides a dynamically managed firewall on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/network/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/network/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/network/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-1/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using DNF" 3 | date: 2025-04-08 4 | draft: false 5 | summary: "Learn how to use DNF on Oracle Linux." 6 | tags: ["ol", "video","ol-package"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="eg39fvQw1T8" title="DNF on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides background and practical examples of administrating Oracle Linux packages using DNF. 15 | -------------------------------------------------------------------------------- /content/posts/ol/package/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-2/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Installing UEK6" 3 | date: 2020-04-07 4 | draft: false 5 | summary: "Learn how to install the UEK6 kernel on Oracle Linux." 6 | tags: ["ol", "video","ol-package"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="OeFTjC0mqLM" title="Installing the Unbreakable Enterprise Kernel Release 6 on Oracle Linux 8" >}} 11 | 12 | ## Details 13 | 14 | This video provides instructions to install the Oracle Unbreakable Enterprise Kernel Release 6 (UEK R6). 15 | -------------------------------------------------------------------------------- /content/posts/ol/package/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-3/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Installing EPEL" 3 | date: 2020-04-08 4 | draft: false 5 | summary: "Learn how to install the EPEL repository on Oracle Linux." 6 | tags: ["ol", "video","ol-package"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="R-hAYGEYWQ0" title="Installing the EPEL repository on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides instructions for installing the Extra Packages for Enterprise Linux (EPEL) repository on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/package/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/package/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/package/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-2/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-2/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-3/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "SSH Tunnels" 3 | date: 2025-04-29 4 | draft: false 5 | summary: "Learn how to use ssh tunnels on Oracle Linux." 6 | tags: ["ol", "video","ol-remote"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="8x0YGxm3d9Y" title="Using SSH tunnels with Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information and examples on using the three different types of SSH tunnels: Local, Reverse, and Dynamic. 15 | -------------------------------------------------------------------------------- /content/posts/ol/remote/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/remote/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/remote/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-13/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Introduction to GlusterFS" 3 | date: 2021-10-06 4 | draft: true 5 | summary: "Learn how to use GlusterFS on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="N7BeDUOcKg4" title="Introduction to GlusterFS on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides an introduction to the Gluster file system and a demonstration of Gluster Storage on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-14/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Logical Volume Management" 3 | date: 2025-04-25 4 | draft: false 5 | summary: "Learn about Logical Volume Management on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="eGmYAvUXX6A" title="Logical Volume Management on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information and examples for using Logical Volume Management to inspect and grow an LVM Group. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-24/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-24/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-25/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-25/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-26/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-26/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-27/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-27/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-28/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-28/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-29/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-29/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-3/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mounting File Systems" 3 | date: 2020-07-29 4 | draft: false 5 | summary: "Learn how to mount File Systems on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="2cHm9ohqZJo" title="Mounting File Systems on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information and examples for attaching or detaching a disk or block device using the mount or umount command. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-30/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-30/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-31/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-31/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using Swap Space" 3 | date: 2025-04-25 4 | draft: false 5 | summary: "Learn how to use Swap Space on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="q4FSmna_Gm8" title="Using Swap Space on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information on using swap space. Examples include creating, preparing, and enabling a swap file and some tools to monitor its use. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-6/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Configure an NFS Server" 3 | date: 2021-01-08 4 | draft: false 5 | summary: "Learn how to configure an NFS Server on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="fnVoVzB8Px0" title="Configure an NFS Server on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information on how to configure an NFS server on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-7/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mount an NFS Export" 3 | date: 2021-01-08 4 | draft: false 5 | summary: "Learn how to mount an NFS Export on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="YFeaOEgFrto" title="Mount an NFS Export on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information on how to mount an NFS export on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-8/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Automount NFS Shares" 3 | date: 2021-03-31 4 | draft: false 5 | summary: "Learn how to Automount NFS Shares on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="Fzvb2LKJdok" title="Automount NFS Shares on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information and examples for automounting NFS shares using autofs on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/storage/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/storage/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/storage/post-9/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using the XFS File System" 3 | date: 2021-01-19 4 | draft: false 5 | summary: "Learn how to use the XFS File System on Oracle Linux." 6 | tags: ["ol", "video","ol-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="OUW1cbR-WuA" title="Using the XFS File System on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides information and examples for creating, mounting, and growing an XFS file system on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-1/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Enable KVM" 3 | date: 2020-06-16 4 | draft: false 5 | summary: "Learn how enable KVM on Oracle Linux." 6 | tags: ["ol", "video","ol-kvm"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="ALtnopSysY4" title="Enabling KVM on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video provides a background on KVM, how to verify the KVM modules are loaded, install the virtualization packages, and validate the environment is ready for hosting guest VMs. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-10/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-10/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-11/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-11/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-14/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Pull Images" 3 | date: 2023-10-23 4 | draft: false 5 | summary: "Learn how to pull images with Podman on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="DFtZYIOPcuU" title="Pull Images with Podman on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video shows how to use Podman to pull container images from public container registries to be used to create and run containers. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-18/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Running a Container" 3 | date: 2020-09-03 4 | draft: false 5 | summary: "Learn how run containers with Podman on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="PXeKEIdaTBs" title="Running a Container using Podman on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to run containers using Podman on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-19/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-19/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-2/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Setup Cockpit" 3 | date: 2020-06-17 4 | draft: false 5 | summary: "Learn how to setup Cockpit web console on Oracle Linux." 6 | tags: ["ol", "video","ol-kvm"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="-Z3AwP2HPa4" title="Setup Cockpit Web Console to manage KVM on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to install, set up, and connect to the Cockpit web console to allow managing of KVM VMs. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-20/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Bind Mounts" 3 | date: 2020-09-09 4 | draft: false 5 | summary: "Learn about using bind mounts with Podman on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="Kw5vdNRRaZc" title="Using Bind Mounts with Podman Containers on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to use the bind mount storage type within containers using Podman on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-21/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using Volumes" 3 | date: 2020-09-22 4 | draft: false 5 | summary: "Learn how to use volumes with Podman on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="qIjTMOfGa_Y" title="Using Volumes for Podman Container Storage on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to use volumes as storage within containers using Podman on Oracle Linux 8. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-22/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using Containerfiles" 3 | date: 2025-06-30 4 | draft: false 5 | summary: "Learn how to use Dockerfiles with Podman on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="ckzqONjX5gs" title="Use a Dockerfile with Podman on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to use a Containerfile to build a container image based on an Oracle Image using Podman on Oracle Linux. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-23/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-23/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-23/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Use chroot" 3 | date: 2025-06-16 4 | draft: false 5 | summary: "Learn how to use a chroot jail on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="dxPY_UJgdug" title="Use chroot on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to use a chroot jail on Oracle Linux to install and run Nginx. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-24/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-24/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-25/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-25/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-26/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-26/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-27/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-27/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-28/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-28/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-29/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-29/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-30/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-30/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-31/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-31/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-32/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-32/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-33/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-33/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-34/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-34/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-36/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-36/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-37/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-37/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-37/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Container Overview" 3 | date: 2025-04-30 4 | draft: false 5 | summary: "Learn about containers on Oracle Linux." 6 | tags: ["ol", "video","ol-podman"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="huKLxvjkZUQ" title="Containers - A High-Level Overview" >}} 11 | 12 | ## Details 13 | 14 | This Podman video discusses high-level concepts outlining how to view what a container is. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-38/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-38/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-39/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-39/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-4/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "SSH into NAT'd VM" 3 | date: 2020-06-19 4 | draft: false 5 | summary: "Learn how to SSH into a NAT based KVM virtual machone on Oracle Linux." 6 | tags: ["ol", "video","ol-kvm"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="2MEqDxOeuDw" title="SSH into a NAT based KVM VM on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video shows how to successfully ssh into a KVM VM configured with a NAT-based network adapter. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-40/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-40/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-41/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-41/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-41/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Prepare KVM Hypervisor" 3 | date: 2024-02-16 4 | draft: false 5 | summary: "Learn how to enable KVM on an Oracle Linux system." 6 | tags: ["ol", "video","clips","ol-kvm"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="RbJ8OpWYzxs" title="Enable KVM on Oracle Linux Youtube video" >}} 11 | 12 | ## Details 13 | 14 | This video clip demonstrates how to enable KVM on an Oracle Linux system. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-42/.index.md.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-42/.index.md.swo -------------------------------------------------------------------------------- /content/posts/ol/virt/post-42/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-42/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-43/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-43/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-44/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-44/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-45/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-45/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-46/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-46/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-47/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-47/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-48/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-48/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-49/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-49/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Create a Bridge" 3 | date: 2020-07-09 4 | draft: false 5 | summary: "Learn how to create a network bridge for use with KVM on Oracle Linux." 6 | tags: ["ol", "video","ol-kvm"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="OAfIb7gtang" title="Create a Network Bridge for KVM on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates two of the ways to create a network bridge on Oracle Linux 8 for use with KVM. 15 | -------------------------------------------------------------------------------- /content/posts/ol/virt/post-50/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-50/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-51/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-51/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-52/clips1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-52/clips1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-53/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-53/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-54/luna1_hires_white_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-54/luna1_hires_white_thumbnail.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/ol/virt/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/ol/virt/post-9/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Add Disks to VMs" 3 | date: 2025-05-23 4 | draft: false 5 | summary: "Learn how to add disks to an existing KVM VM on Oracle Linux." 6 | tags: ["ol", "video","ol-kvm"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="zVDXVefCrUU" title="Add a Disk to an Existing KVM VM on Oracle Linux" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to create a new virtual disk and attach it to an existing KVM virtual machine. 15 | -------------------------------------------------------------------------------- /content/posts/olam/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/olam/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olam/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-24/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-24/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-25/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-25/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-26/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-26/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-27/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-27/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-28/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-28/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-29/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-29/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-3/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Create a Windows Instance" 3 | date: 2020-05-14 4 | draft: false 5 | summary: "Learn how to create a Windows instance on Oracle Cloud Infrastructure." 6 | tags: ["oloci", "video","oloci-deploy"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="8SgkZTUKwFg" title="Create a Windows Instance on Oracle Cloud Infrastructure Youtube video" >}} 11 | 12 | ## Details 13 | 14 | This video shows how to create a Windows instance on Oracle Cloud Infrastructure. 15 | -------------------------------------------------------------------------------- /content/posts/oloci/post-30/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-30/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-31/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-31/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-32/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-32/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-33/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-33/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-34/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-34/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-35/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-35/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-36/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-36/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-37/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-37/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-38/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-38/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-40/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-40/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-42/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-42/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-43/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-43/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-44/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-44/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/oloci/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/oloci/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-12/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Migrate oVirt" 3 | date: 2021-11-05 4 | draft: false 5 | summary: "Learn to migrate from oVirt to Oracle Linux Virtualization Manager." 6 | tags: ["olvm", "video","olvm-migrate"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="Gs7qKGd4iTM" title="How to Migrate oVirt to Oracle Linux Virtualization Manager YouTube video" >}} 11 | 12 | ## Details 13 | 14 | Learn how to migrate out of oVirt into Oracle Linux Virtualisation Manager. 15 | -------------------------------------------------------------------------------- /content/posts/olvm/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-27/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-27/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-28/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-28/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-6/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Upgrade the KVM Host" 3 | date: 2020-08-09 4 | draft: false 5 | summary: "Learn how to upgrade the Oracle Linux Virtualization Manager KVM host." 6 | tags: ["olvm", "video","olvm-admin"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="T07HSTrODRw" title="Upgrade the Oracle Linux Virtualization Manager KVM Host YouTube video" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates upgrading of a KVM host with Oracle Linux Virtualization Manager. 15 | -------------------------------------------------------------------------------- /content/posts/olvm/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/olvm/post-8/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Getting Started with REST API" 3 | date: 2020-08-07 4 | draft: false 5 | summary: "Learn about the Oracle Linux Virtualization Manager REST API." 6 | tags: ["olvm", "video","olvm-admin"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="lk2kIUE-QU4" title="Getting Started with REST API in Oracle Linux Virtualization Manager YouTube video" >}} 11 | 12 | ## Details 13 | 14 | This video introduces you to the REST API for Oracle Linux Virtualization Manager. 15 | -------------------------------------------------------------------------------- /content/posts/olvm/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/olvm/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-11/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-11/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-24/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-24/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-25/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-25/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-26/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-26/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-26/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Manage Boot Volumes" 3 | date: 2022-07-08 4 | draft: false 5 | summary: "Learn how to manage boot volumes in Oracle Private Cloud Applicance." 6 | tags: ["opca", "video","opca-storage"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="Vo4119i8HsU" title="Manage Boot Volumes on Oracle Private Cloud Appliance YouTube video" >}} 11 | 12 | ## Details 13 | 14 | This introductory video demonstrates managing boot volumes on Oracle Private Cloud Appliance. 15 | -------------------------------------------------------------------------------- /content/posts/opca/post-27/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-27/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-28/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-28/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-29/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-29/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-30/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-30/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-31/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-31/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-32/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-32/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-33/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-33/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-34/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-34/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-5/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Tenancy Creation" 3 | date: 2022-01-14 4 | draft: false 5 | summary: "Learn how to create a tenancy on Oracle Private Cloud Applicance." 6 | tags: ["opca", "video","opca-service"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="LBN5NHbpEnk" title="Tenancy Creation on Oracle Private Cloud Appliance Youtube video" >}} 11 | 12 | ## Details 13 | 14 | This video demonstrates how to create a tenancy on Oracle Private Cloud Appliance. 15 | -------------------------------------------------------------------------------- /content/posts/opca/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-7/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-7/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Querying Loki Logs" 3 | date: 2022-02-22 4 | draft: false 5 | summary: "Learn how to query Loki logs in Oracle Private Cloud Applicance." 6 | tags: ["opca", "video","opca-service"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="HiGz8ruDtas" title="Querying Loki Logs on Oracle Private Cloud Appliance Youtube video" >}} 11 | 12 | ## Details 13 | 14 | This video provides an introduction to querying Loki logs in Oracle Private Cloud Appliance. 15 | -------------------------------------------------------------------------------- /content/posts/opca/post-8/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-8/featured.png -------------------------------------------------------------------------------- /content/posts/opca/post-9/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/opca/post-9/featured.png -------------------------------------------------------------------------------- /content/posts/osd/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osd/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/osd/post-1/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Overview" 3 | date: 2023-06-30 4 | draft: false 5 | summary: "This video provides you a short, high-level introduction to this OCI service." 6 | tags: ["osd","video"] 7 | showDate: true 8 | --- 9 | 10 | {{< youtube id="-tlrmf37HDs" title="Oracle Cloud Infrastructure Secure Desktops: Overview Youtube video" >}} 11 | 12 | Details: 13 | 14 | This video provides a short, high-level introduction to the Oracle Cloud Infrastructure Secure Desktops service. 15 | -------------------------------------------------------------------------------- /content/posts/osd/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osd/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/osd/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osd/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/osd/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osd/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/osd/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osd/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/osd/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osd/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-10/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-10/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-12/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-12/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-18/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-18/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-19/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-19/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-20/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-20/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-21/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-21/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-22/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-22/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-23/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-23/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-24/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-24/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-25/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-25/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/osmh/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/osmh/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-1/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-1/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-13/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-13/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-14/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-14/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-15/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-15/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-16/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-16/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-17/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-17/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-2/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-3/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-4/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-4/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-5/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-5/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-6/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-6/featured.png -------------------------------------------------------------------------------- /content/posts/vbox/post-7/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/posts/vbox/post-7/featured.png -------------------------------------------------------------------------------- /content/tracks/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Training Tracks" 3 | description: "List of products" 4 | cascade: 5 | showPagination: false 6 | _build: 7 | list: never 8 | --- 9 | 10 | {{< lead >}} 11 | This is a list of the product areas covered by the Linux and Virtualization team 12 | {{< /lead >}} 13 | 14 | --- 15 | -------------------------------------------------------------------------------- /content/tracks/oc3/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/oc3/featured.png -------------------------------------------------------------------------------- /content/tracks/ocne/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ocne/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/admin/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/admin/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/dtrace/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/dtrace/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/howto/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/howto/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/inst_boot/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/inst_boot/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/intro/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/intro/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/ksplice/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/ksplice/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/mon-log/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/mon-log/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/network/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/network/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/pkg-mgmt/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/pkg-mgmt/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/rem-mgmt/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/rem-mgmt/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/stor-mgmt/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/stor-mgmt/featured.png -------------------------------------------------------------------------------- /content/tracks/ol/virt/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/ol/virt/featured.png -------------------------------------------------------------------------------- /content/tracks/olam/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/olam/featured.png -------------------------------------------------------------------------------- /content/tracks/oloci/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/oloci/featured.png -------------------------------------------------------------------------------- /content/tracks/olvm/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/olvm/featured.png -------------------------------------------------------------------------------- /content/tracks/opca/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/opca/featured.png -------------------------------------------------------------------------------- /content/tracks/osd/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/osd/featured.png -------------------------------------------------------------------------------- /content/tracks/osmh/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/osmh/featured.png -------------------------------------------------------------------------------- /content/tracks/vbox/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/content/tracks/vbox/featured.png -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/data/.gitkeep -------------------------------------------------------------------------------- /layouts/partials/extend-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/home/custom.html: -------------------------------------------------------------------------------- 1 | {{ $jsHome := resources.Get "js/home.js" | resources.Minify | resources.Fingerprint "sha512" }} 2 |
3 | {{ partial "partials/home/background.html" . }} 4 |
5 |
6 | {{ partial "tracks/cardview2.html" . }} 7 |
8 |
9 | {{ partial "recent-articles-demo.html" . }} 10 |
11 | 12 | -------------------------------------------------------------------------------- /layouts/partials/tracks/cardview.html: -------------------------------------------------------------------------------- 1 | {{ $myTracks := 30 }} 2 | 3 |
4 | {{ range first $myTracks (.Paginate (where .Site.Pages "Type" "in" .Site.Params.tracksSections)).Pages }} 5 | {{ partial "article-link/card.html" . }} 6 | {{ end }} 7 |
8 | -------------------------------------------------------------------------------- /layouts/partials/tracks/cardview2.html: -------------------------------------------------------------------------------- 1 |
2 | {{ $tracks := site.GetPage "/tracks/"}} 3 | {{ range $tracks.Pages }} 4 | {{ partial "article-link/card.html" . }} 5 | {{ end }} 6 |
-------------------------------------------------------------------------------- /layouts/partials/tracks/cardview3.html: -------------------------------------------------------------------------------- 1 |
2 | {{ $tracks := site.GetPage "/tracks/"}} 3 | {{ range $tracks.Pages }} 4 | {{ .Title }}"> 5 | {{ end }} 6 |
7 | -------------------------------------------------------------------------------- /layouts/shortcodes/lead.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner | markdownify }} 3 |
4 | -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/favicon.ico -------------------------------------------------------------------------------- /static/img/OL-1200x200-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/img/OL-1200x200-banner.png -------------------------------------------------------------------------------- /static/img/OL-banner-v2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/img/OL-banner-v2a.png -------------------------------------------------------------------------------- /static/img/OL-page-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oltrain/e7521ed8db512e62215da8a2834c28fa8047ca7d/static/img/OL-page-intro.png -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} --------------------------------------------------------------------------------