diff --git a/main/.buildinfo b/main/.buildinfo index 73e85a1..de5db84 100644 --- a/main/.buildinfo +++ b/main/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: c5a55d755edfbe7b21cc2e1fc89c3c9d +config: 376987b06731404939ba336e89682e00 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/main/.doctrees/environment.pickle b/main/.doctrees/environment.pickle index 1a18f94..835b77e 100644 Binary files a/main/.doctrees/environment.pickle and b/main/.doctrees/environment.pickle differ diff --git a/main/.doctrees/how-to/containers.doctree b/main/.doctrees/how-to/containers.doctree index 4d00a2d..cc45e10 100644 Binary files a/main/.doctrees/how-to/containers.doctree and b/main/.doctrees/how-to/containers.doctree differ diff --git a/main/_static/documentation_options.js b/main/_static/documentation_options.js index b9677c5..f507128 100644 --- a/main/_static/documentation_options.js +++ b/main/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '2.3.3-6-gf931903', + VERSION: '2024.8.1-5-gffcf839', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/main/explanations.html b/main/explanations.html index 3678dc9..19a5a61 100644 --- a/main/explanations.html +++ b/main/explanations.html @@ -4,7 +4,7 @@ - Explanations — dev-c7 2.3.3-6-gf931903 + <title>Explanations — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/explanations/differences.html b/main/explanations/differences.html index dd21cbc..874410d 100644 --- a/main/explanations/differences.html +++ b/main/explanations/differences.html @@ -4,7 +4,7 @@ - RHEL7 native vs dev-c7 — dev-c7 2.3.3-6-gf931903 + <title>RHEL7 native vs dev-c7 — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/explanations/how_it_works.html b/main/explanations/how_it_works.html index b746572..6fce117 100644 --- a/main/explanations/how_it_works.html +++ b/main/explanations/how_it_works.html @@ -4,7 +4,7 @@ - How the dev-c7 Container Works — dev-c7 2.3.3-6-gf931903 + <title>How the dev-c7 Container Works — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/explanations/why_dev_c7.html b/main/explanations/why_dev_c7.html index d02153e..4368455 100644 --- a/main/explanations/why_dev_c7.html +++ b/main/explanations/why_dev_c7.html @@ -4,7 +4,7 @@ - Purpose of the dev-c7 Container — dev-c7 2.3.3-6-gf931903 + <title>Purpose of the dev-c7 Container — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/genindex.html b/main/genindex.html index d978a25..7ba944b 100644 --- a/main/genindex.html +++ b/main/genindex.html @@ -3,7 +3,7 @@ - Index — dev-c7 2.3.3-6-gf931903 + <title>Index — dev-c7 2024.8.1-5-gffcf839 documentation @@ -18,7 +18,7 @@ - + diff --git a/main/how-to.html b/main/how-to.html index ca8c80a..4bc42d1 100644 --- a/main/how-to.html +++ b/main/how-to.html @@ -4,7 +4,7 @@ - How-to Guides — dev-c7 2.3.3-6-gf931903 + <title>How-to Guides — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/how-to/containers.html b/main/how-to/containers.html index db3e1d7..43a7f12 100644 --- a/main/how-to/containers.html +++ b/main/how-to/containers.html @@ -4,7 +4,7 @@ - Managing Containers and Images on a Workstation — dev-c7 2.3.3-6-gf931903 + <title>Managing Containers and Images on a Workstation — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + @@ -224,6 +224,8 @@

Cleaning Up Space sudo meld tk dejavu-sans-mono-fonts gnome-terminal xterm xmessage evince eog firefox java openldap-clients && \ # These packages are not found in the initial install so try again yum install -y zeromq-devel git2u meld && \ + #install libnet library for EPICS module builds + yum install -y libnet libnet-devel && \ # clean up caches yum clean all && \ # nasty hack to avoid overlay filesystem problems with --userns=keep-id @@ -231,9 +233,13 @@

Cleaning Up Space # https://github.com/containers/fuse-overlayfs/pull/381 rm -fr /var/lib/yum/yumdb/* -# install the required libusb developer library -RUN curl -SL https://rpmfind.net/linux/opensuse/distribution/leap/15.5/repo/oss/x86_64/libusb-1_0-devel-1.0.24-150400.3.3.1.x86_64.rpm -o /tmp/libusb-devel-1.rpm && \ - yum install /tmp/libusb-devel-1.rpm +#install the required libusb developer library +RUN yum remove -y libusbx && \ + curl -SL http://rpmfind.net/linux/opensuse/distribution/leap/15.5/repo/oss/x86_64/libusb-1_0-0-1.0.24-150400.3.3.1.x86_64.rpm -o /tmp/libusb-1.rpm && \ + yum install -y /tmp/libusb-1.rpm && \ + rm /tmp/libusb-1.rpm && \ + curl -SL https://rpmfind.net/linux/opensuse/distribution/leap/15.5/repo/oss/x86_64/libusb-1_0-devel-1.0.24-150400.3.3.1.x86_64.rpm -o /tmp/libusb-devel-1.rpm && \ + yum install -y /tmp/libusb-devel-1.rpm && \ rm /tmp/libusb-devel-1.rpm # full sudo rights inside the container diff --git a/main/how-to/deriving.html b/main/how-to/deriving.html index a866676..52e0452 100644 --- a/main/how-to/deriving.html +++ b/main/how-to/deriving.html @@ -4,7 +4,7 @@ - Derive your own container image — dev-c7 2.3.3-6-gf931903 + <title>Derive your own container image — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/how-to/podman.html b/main/how-to/podman.html index 61cadc7..0d6ab1f 100644 --- a/main/how-to/podman.html +++ b/main/how-to/podman.html @@ -4,7 +4,7 @@ - Updating Podman Settings — dev-c7 2.3.3-6-gf931903 + <title>Updating Podman Settings — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/how-to/troubleshooting.html b/main/how-to/troubleshooting.html index e1c32fd..ea7fdb5 100644 --- a/main/how-to/troubleshooting.html +++ b/main/how-to/troubleshooting.html @@ -4,7 +4,7 @@ - Troubleshooting — dev-c7 2.3.3-6-gf931903 + <title>Troubleshooting — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/index.html b/main/index.html index 8aa0ca0..21b16ed 100644 --- a/main/index.html +++ b/main/index.html @@ -4,7 +4,7 @@ - DLS RHEL7 in a Box Developer Container — dev-c7 2.3.3-6-gf931903 + <title>DLS RHEL7 in a Box Developer Container — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/reference.html b/main/reference.html index 776ef9e..318f484 100644 --- a/main/reference.html +++ b/main/reference.html @@ -4,7 +4,7 @@ - Reference — dev-c7 2.3.3-6-gf931903 + <title>Reference — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/reference/contributing.html b/main/reference/contributing.html index 458907d..b8fbe02 100644 --- a/main/reference/contributing.html +++ b/main/reference/contributing.html @@ -4,7 +4,7 @@ - Contributing — dev-c7 2.3.3-6-gf931903 + <title>Contributing — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/search.html b/main/search.html index d606964..7182dc9 100644 --- a/main/search.html +++ b/main/search.html @@ -3,7 +3,7 @@ - Search — dev-c7 2.3.3-6-gf931903 + <title>Search — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/searchindex.js b/main/searchindex.js index 5811f1b..10aeeed 100644 --- a/main/searchindex.js +++ b/main/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"About the documentation": [[9, "about-the-documentation"]], "Adding Features to the Container Image": [[11, "adding-features-to-the-container-image"]], "Bash Prompt in dev-c7": [[14, null]], "Centos vs RHEL7": [[1, "centos-vs-rhel7"]], "Change the hostname": [[14, "change-the-hostname"]], "Cleaning Up Space": [[5, "cleaning-up-space"]], "Container Lifetime": [[16, "container-lifetime"]], "Container lifetime": [[2, "container-lifetime"]], "Containers": [[2, "containers"]], "Contributing": [[11, null]], "DLS RHEL7 in a Box Developer Container": [[9, null]], "Defining a Container Image": [[5, "defining-a-container-image"]], "Definitions": [[5, "definitions"]], "Deleting the container": [[13, "deleting-the-container"]], "Derive your own container image": [[6, null]], "Documentation": [[11, "documentation"]], "EDM Fonts": [[8, "edm-fonts"]], "Explanations": [[0, null], [0, null], [9, "explanations"], [9, null]], "Features": [[7, "features"]], "File Systems": [[2, "file-systems"]], "First integrated terminal": [[16, "first-integrated-terminal"]], "How the dev-c7 Container Works": [[2, null]], "How the documentation is structured": [[9, "how-the-documentation-is-structured"]], "How to Use": [[16, "how-to-use"]], "How to Work": [[15, "how-to-work"]], "How-to Guides": [[4, null], [4, null], [9, "how-to"], [9, null]], "Initial Setup": [[16, "initial-setup"]], "Install edm fonts": [[15, "install-edm-fonts"]], "Install remote development plugin": [[16, "install-remote-development-plugin"]], "Insufficient UIDs/GIDs": [[8, "insufficient-uids-gids"]], "Known Issues": [[16, "known-issues"]], "Lifetime": [[13, "lifetime"]], "Make Container Image": [[11, "make-container-image"]], "Managing Containers and Images on a Workstation": [[5, null]], "Memory Protections Error": [[8, "memory-protections-error"]], "Modify .bashrc_local": [[14, "modify-bashrc-local"]], "Monitoring": [[5, "monitoring"]], "More Features": [[13, null]], "No Services": [[1, "no-services"]], "Options": [[13, "options"]], "Podman": [[2, "podman"]], "Purpose of the dev-c7 Container": [[3, null]], "PyQt Errors": [[8, "pyqt-errors"]], "Quick Start": [[9, "quick-start"], [15, null]], "RHEL7 native vs dev-c7": [[1, null]], "Reference": [[9, "reference"], [9, null], [10, null], [10, null]], "Release Process": [[11, "release-process"]], "Setup": [[15, "setup"]], "Startup Script \u201cc7\u201d": [[15, "startup-script-c7"]], "Testing": [[11, "testing"]], "Troubleshooting": [[8, null]], "Tutorials": [[9, "tutorials"], [9, null], [12, null], [12, null]], "Update VSCode User settings": [[16, "update-vscode-user-settings"]], "Updating Podman Settings": [[7, null]], "Upgrade to a new c7 launcher version": [[13, "upgrade-to-a-new-c7-launcher-version"]], "User IDs": [[1, "user-ids"]], "User Profile": [[2, "user-profile"]], "VSCode Container Removal": [[16, "vscode-container-removal"]], "VSCode Integration": [[16, null]], "Versions": [[13, "versions"]], "subuid settings missing": [[8, "subuid-settings-missing"]]}, "docnames": ["explanations", "explanations/differences", "explanations/how_it_works", "explanations/why_dev_c7", "how-to", "how-to/containers", "how-to/deriving", "how-to/podman", "how-to/troubleshooting", "index", "reference", "reference/contributing", "tutorials", "tutorials/continue", "tutorials/prompt", "tutorials/start", "tutorials/vscode"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["explanations.rst", "explanations/differences.rst", "explanations/how_it_works.rst", "explanations/why_dev_c7.rst", "how-to.rst", "how-to/containers.rst", "how-to/deriving.rst", "how-to/podman.rst", "how-to/troubleshooting.rst", "index.rst", "reference.rst", "reference/contributing.rst", "tutorials.rst", "tutorials/continue.rst", "tutorials/prompt.rst", "tutorials/start.rst", "tutorials/vscode.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [2, 5, 13, 14, 15, 16], "0": [1, 5, 8, 13, 16], "0000": 8, "01": 16, "07": 16, "0b2dc63a68b9b80b6e261e0c71119894a739d353f8263d6b2f1394c66a45f5af": 8, "1": [1, 5, 8, 11], "10": 1, "1018": 1, "11am": 8, "12": 1, "13": 1, "14": 1, "15": 5, "150400": 5, "16": 1, "16384": 1, "1_0": 5, "1st": [5, 16], "2": [2, 5, 11, 13, 16], "2019": 1, "2022": 16, "21": 1, "24": [1, 5], "25": 1, "269": 1, "29": 1, "2nd": 5, "3": [5, 11], "30": 15, "381": 5, "41": 1, "5": [1, 5], "54": 8, "6": 8, "65534": [1, 5], "7": [1, 5], "8": 5, "914745539fc385a5fe9188693f0fa257": 16, "99": 5, "A": [2, 9], "As": 16, "At": [11, 15], "By": [1, 14], "For": [1, 5, 15], "IF": 8, "If": [2, 5, 6, 7, 8, 11, 13, 14, 15, 16], "In": [1, 2, 5, 11], "It": [1, 2, 5, 14, 15], "NOT": [15, 16], "No": [0, 8, 9], "OR": 5, "On": 15, "That": [15, 16], "The": [1, 2, 3, 5, 7, 8, 11, 13, 14, 15, 16], "Then": [8, 16], "These": [5, 8, 16], "To": [5, 6, 7, 11, 13, 16], "With": 3, "abil": 1, "abl": [1, 2, 7], "about": 15, "abov": [2, 5, 13, 16], "ac": [3, 13], "accept": 1, "access": [9, 16], "account": [1, 2, 5], "accumul": 13, "achiev": 3, "acquir": 13, "across": 8, "action": 11, "ad": [2, 8, 9, 10, 15], "add": [5, 6, 11, 14, 16], "addit": [5, 6, 7, 13], "adher": 2, "administr": 7, "adopt": [8, 15], "affect": 1, "afresh": 13, "after": 15, "afterward": 3, "again": [5, 13, 15], "aliv": 16, "all": [1, 2, 5, 6, 7, 11, 13, 15, 16], "allow": [2, 3, 5, 6], "almost": 1, "alongsid": 2, "alreadi": [5, 7, 15], "also": [5, 9, 11, 13], "altern": 2, "although": [1, 15], "alwai": 13, "an": [1, 2, 5, 6, 7, 8, 11, 13, 14, 15], "ani": [1, 2, 3, 5, 6, 11, 13, 15], "anoth": [2, 5, 16], "answer": 1, "anyth": 15, "app": [1, 2, 5, 7, 13, 14, 15], "applic": [2, 8, 13], "applylay": 8, "approach": 3, "approv": 11, "ar": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16], "areadetector": 5, "arg": 16, "argument": 8, "around": 16, "arrang": 2, "ask": 13, "asset": 7, "attach": 13, "attempt": 1, "autogener": 11, "automat": [8, 15], "avail": [1, 5, 8, 13, 15, 16], "avoid": [5, 7], "await": 11, "awar": 1, "back": 13, "background": [1, 2], "bad": 13, "bar": 9, "base": [1, 2, 3, 5, 6], "baseurl": 5, "bash": [2, 5, 9, 12, 15, 16], "bash_profil": [2, 16], "bashrc_loc": [9, 12], "beauti": 16, "becaus": [1, 2, 5], "been": 1, "befor": [5, 7, 11, 13, 15], "behalf": 7, "behaviour": 13, "belong": 1, "below": [5, 6, 13], "benign": 8, "between": 16, "big": 11, "bin": [6, 8, 13, 15], "bind": 5, "bl16i": 1, "blob": 8, "boost": 5, "bootstrap": 5, "both": 1, "bottom": 16, "branch": 11, "break": 8, "brows": 16, "bst": 5, "build": [5, 6, 7, 8, 11], "builder": 1, "built": [2, 3, 5, 8], "button": 16, "c": [13, 16], "c7": [0, 5, 6, 7, 8, 9, 11, 12, 16], "cach": [5, 7, 11, 15], "can": [3, 5, 8, 11, 13, 14, 15, 16], "cannot": 8, "case": [2, 5], "categori": 9, "caus": 14, "cd": [5, 6, 11, 13, 15, 16], "cento": [0, 5, 9, 14], "cfengin": 8, "chang": [2, 5, 6, 8, 9, 11, 12, 13], "check": [8, 11, 13], "checklist": 11, "chmod": [13, 15], "choic": 14, "choos": [1, 11, 16], "clariti": 11, "clean": [4, 9], "click": 16, "client": 5, "clone": 5, "close": [13, 16], "cmake": 5, "code": [1, 2, 9, 11, 16], "column": 5, "com": [2, 3, 5, 8, 9, 11, 13, 15, 16], "come": 8, "command": [5, 6, 8, 13, 14], "commandlin": [9, 12], "common": [5, 16], "commun": 1, "compil": [5, 15], "complain": 5, "compliant": 11, "complic": [1, 3], "comput": 2, "computingforgeek": 5, "conf": [5, 8], "config": [7, 16], "configur": [6, 16], "confluenc": 3, "connect": 16, "consequ": 5, "consid": [6, 13], "contain": [0, 1, 4, 7, 8, 10, 12, 14, 15], "content": 1, "context": [5, 6], "continu": [2, 3, 7], "contribut": [6, 9, 10], "control": [2, 3, 5, 6, 8, 9, 11, 13, 15, 16], "convent": 11, "copi": [5, 6, 15, 16], "core": 5, "creat": [2, 5, 6, 9, 11, 16], "creation": 14, "crun": 7, "ctrl": 16, "curl": [5, 15], "current": [5, 13, 15, 16], "d": [5, 13], "daemonless": 2, "dai": 8, "date": 7, "dbu": [1, 5], "dc": 1, "debug": 16, "dec": 11, "decoupl": 3, "default": [1, 5, 8, 11, 13, 14, 16], "defaultprofil": 16, "defin": [4, 9, 11], "definit": [4, 9], "dejavu": 5, "delai": 15, "delet": [2, 5, 7, 9, 12, 16], "depend": [2, 5], "deploi": 5, "deploy": 3, "deriv": [4, 9, 13], "descript": 16, "design": [1, 2], "desktop": 5, "detail": [3, 5, 13, 16], "detect": 2, "dev": [0, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16], "devcontain": [13, 16], "devel": 5, "develop": [1, 2, 3, 5, 6, 12, 13, 14], "dialog": 16, "dialogu": 16, "diamond": [3, 9, 13], "differ": [1, 8, 15, 16], "directori": [1, 2, 11, 13, 15], "disk": 16, "displai": 15, "distinct": 16, "distract": 8, "distribut": 5, "dl": [1, 2, 3, 5, 6, 8, 11, 13, 15, 16], "dls_sw": [1, 2, 5, 7, 15], "do": [5, 7, 13, 15, 16], "doc": [11, 16], "docker": [2, 5, 16], "dockerfil": [5, 6], "dockerhub": 2, "dockerpath": 16, "document": [1, 3, 10], "doe": [1, 15], "don": [8, 11, 15], "done": 5, "down": 8, "download": 5, "dp": 13, "dri": 5, "driver": [5, 8], "drop": 6, "drwxrwsr": 1, "due": 2, "dv": 13, "e": [1, 5, 6], "each": [6, 8, 14, 16], "earli": [8, 15], "edit": [8, 11], "edm": [4, 5, 9, 12], "effect": 7, "effort": [3, 5], "empti": 8, "emul": 1, "en_u": 5, "enabl": 13, "end": 14, "endpoint": 5, "endpointdev": 5, "engin": 2, "ensur": [5, 7, 16], "enter": 16, "entir": [1, 5], "entri": 8, "env": [5, 6], "environ": [1, 2, 5, 6, 9, 11, 16], "eog": 5, "epel": 5, "ephemer": [2, 13], "epic": [2, 3], "erro": 8, "error": [4, 9, 15], "essenti": [1, 2, 16], "etc": [1, 2, 5, 8, 14], "europ": 5, "eventu": 8, "everi": [5, 8], "everyth": [2, 13, 15], "evinc": 5, "exactli": 14, "exampl": [1, 5, 6], "except": 5, "execut": [1, 2, 5, 13, 15], "exist": [5, 11], "exit": [2, 8, 16], "experi": 5, "experienc": [4, 9, 10], "explan": 5, "explicitli": [2, 13], "explor": 16, "export": 14, "ext": 16, "extensionpack": 16, "f": [14, 16], "fail": [8, 14], "far": [1, 3], "fashion": 2, "faster": 7, "featur": [2, 4, 9, 10, 12, 15, 16], "feb": 1, "fed_id": [5, 7], "feel": 15, "few": [1, 13, 15], "fi": 14, "file": [0, 1, 5, 6, 7, 8, 9, 11, 13, 14, 16], "filesystem": [1, 5, 7, 15], "filter": [5, 16], "final": [3, 15], "find": [1, 8, 15], "firefox": [5, 11], "first": [5, 8, 9, 12, 13, 15], "fit": 11, "fix": 14, "folder": [2, 5, 6, 7, 8, 15, 16], "follow": [2, 5, 8, 11, 13, 14, 15, 16], "font": [4, 5, 9, 12], "found": [5, 8], "four": 9, "fr": 5, "free": [6, 15], "from": [2, 3, 5, 6, 9, 11, 13, 14, 15, 16], "ft0": 13, "full": [5, 13, 15], "further": [2, 15], "fuse": [5, 8], "futur": 3, "g": [1, 5, 6, 13], "gener": 5, "get": [1, 5, 15, 16], "ghcr": [2, 5, 6, 9, 11, 13], "gid": [1, 4, 9], "giflib": 5, "gile": 1, "git": 5, "git2u": 5, "github": [2, 3, 5, 8, 9, 11, 13, 15, 16], "githubusercont": [13, 15, 16], "give": 14, "glibc": 5, "gnome": [5, 15], "go": [11, 16], "great": 11, "group": [1, 5, 7], "groupinstal": 5, "gt": 1, "gtk2": 5, "gtk3": 5, "gui": [6, 13, 15], "guid": 10, "h": 13, "ha": [1, 13, 16], "hack": 5, "handl": 11, "happen": [2, 15], "have": [1, 5, 6, 7, 8, 11, 13, 14, 15, 16], "hdf5": 5, "head": 11, "headl": 11, "help": 13, "helper": 16, "henc": [1, 2, 3], "here": [2, 3, 9, 12, 16], "hgv27681": [1, 5, 8], "hold": 5, "home": [2, 5, 13, 14, 15, 16], "home_pa_slit": 1, "hopefulli": 5, "host": [2, 3, 5, 8, 13, 14, 15], "hostnam": [9, 12, 13], "how": [0, 12, 13], "howev": [1, 2, 8, 13], "html": [5, 11], "http": [2, 3, 5, 8, 9, 11, 13, 15, 16], "i": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16], "i686": 5, "icon": 16, "id": [0, 5, 8, 9, 15], "idea": [11, 13], "ignor": 8, "imag": [1, 2, 4, 7, 8, 9, 10, 13, 15, 16], "image_id": 5, "implement": 13, "improv": 15, "includ": [2, 13, 16], "index": [5, 11], "indic": 14, "individu": 5, "inevit": 1, "info": 6, "ini": 1, "initi": [2, 5, 9, 12, 13, 14, 15], "input": 5, "insid": [1, 2, 5, 6, 13, 14, 15, 16], "instal": [2, 5, 6, 8, 9, 11, 12, 13], "instanc": 15, "instead": [5, 13, 15, 16], "insuffici": [4, 9], "integr": [9, 12, 15], "interact": [1, 2], "interchang": 2, "invalid": 8, "invoc": [2, 13, 15], "involv": 11, "io": [2, 5, 6, 9, 11, 13], "ioc": 3, "isol": [2, 5], "issu": [8, 9, 11, 12, 15], "its": [2, 13, 15], "itself": 13, "java": 5, "json": [13, 16], "jun": 1, "just": 5, "keep": [1, 5], "kept": 16, "known": [1, 9, 12], "kubernet": [3, 5], "l": [1, 2, 13, 16], "lang": 5, "lapack": 5, "last": 13, "latest": [2, 5, 6, 11, 13, 16], "launch": [1, 2, 5, 8, 9, 11, 13, 14, 15, 16], "launcher": [9, 12], "layer": [2, 5, 8], "lc_all": 5, "lc_ctype": 5, "lchown": 8, "leap": 5, "left": 16, "legaci": 3, "lib": 5, "libc": 8, "libcanberra": 5, "libcurl": 5, "libgl": 8, "libgl_always_indirect": 5, "libjpeg": 5, "libpcap": 5, "libpng": 5, "librari": [0, 2, 5, 6, 8, 9, 12], "librdkafka": 5, "libssh2": 5, "libtiff": 5, "libtirpc": 5, "libusb": 5, "libusbx": 5, "libx11": 5, "libxcb": 5, "libxkbcommon": 5, "libxml2": 5, "libxmu": 5, "libxp": 5, "libxpm": 5, "libxtst": 5, "licens": 1, "lifetim": [0, 9, 12], "light": 9, "lightweight": 2, "like": [2, 5, 6, 13, 16], "line": [5, 6, 14], "link": 9, "linux": [5, 16], "list": 1, "littl": 1, "ln": 5, "load": [2, 8, 15, 16], "local": [5, 8, 11, 15], "localhost": 16, "localtim": 5, "lock": 8, "lockdev": 8, "log": 13, "login": 16, "london": 5, "long": 1, "look": [2, 5, 13, 14, 15], "loos": 7, "lost": [2, 13], "low": 16, "lsb": 5, "m": 16, "machin": [1, 8, 15], "made": [2, 11, 13], "mai": [1, 5, 7, 8, 13, 15, 16], "main": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "major": 5, "make": [1, 2, 5, 6, 7, 9, 10, 13, 15], "make_doc": 11, "makefil": 1, "makeioc": 1, "man": 8, "manag": [4, 9, 15], "mani": 13, "manual": 16, "map": [2, 8, 15], "master": 1, "match": [5, 13], "mean": [1, 2, 5, 16], "meld": 5, "membership": 1, "memori": [4, 9], "menu": 16, "mesa": 5, "messag": 16, "might": [8, 11], "migrat": [8, 15], "minim": 5, "mirror": 5, "mirrorlist": 5, "miss": [4, 9, 15], "mkdir": [15, 16], "mode": 8, "model": 5, "modifi": [9, 12], "modul": [1, 5, 15, 16], "modulefil": 5, "modulepath": 5, "monitor": [4, 9], "mono": 5, "more": [4, 9, 10, 12, 15], "most": [2, 11], "motif": 5, "mount": [1, 2], "mount_program": 8, "much": 7, "multipl": [5, 15, 16], "must": [5, 13, 15], "my": [6, 14, 16], "my_var": 6, "n": 13, "name": [1, 14, 16], "namespac": [2, 8, 15], "nasti": 5, "nativ": [0, 9, 15], "nc": 13, "need": [2, 6, 7, 8, 13, 15], "net": 5, "network": [8, 13], "never": 15, "new": [3, 5, 9, 11, 12, 15, 16], "newli": 5, "next": [2, 5, 8, 13, 15], "nobodi": 5, "none": [1, 16], "normal": 15, "note": [5, 6, 13, 16], "noth": 1, "now": [5, 11, 16], "numactl": 5, "number": [1, 2, 5, 11], "ny8dcq": 3, "o": [1, 2, 3, 5, 6, 15], "odin": 5, "one": [2, 3, 5, 11, 14, 16], "onli": [1, 2, 3, 5, 13], "open": [2, 5, 15, 16], "openldap": 5, "opensus": 5, "oper": [2, 3, 13], "option": [9, 12, 15, 16], "order": [2, 11, 14], "org": 5, "origin": 13, "os": 1, "oss": 5, "other": [1, 6, 16], "otherwis": 5, "our": [3, 5], "out": [11, 14], "outsid": 1, "over": 1, "overlai": [5, 7], "overlayf": [5, 8], "override_install_lang": 5, "own": [1, 2, 4, 9, 13], "ownership": 1, "p": [5, 13, 16], "packag": [1, 2, 5, 6], "packagekit": 5, "page": [1, 8, 11], "paramet": 13, "part": 15, "particular": 5, "partit": [2, 13], "pass": [2, 14], "passwd": 5, "patch": 1, "path": [5, 15, 16], "pattern": 5, "paus": 8, "pc0116": 13, "pcre": 5, "pep440": 11, "perform": [13, 15], "perman": 13, "permiss": [1, 7], "persist": [2, 13], "person": 14, "pick": 13, "pip": 11, "place": [11, 14], "plan": 3, "pleas": [7, 11, 15], "plu": 2, "plugin": [9, 12], "podman": [0, 4, 5, 6, 8, 9, 13, 15, 16], "point": 2, "port": 3, "possibl": 1, "potenti": 8, "pr": [5, 11], "practic": [4, 9, 10], "prefer": [6, 14], "prefix": 14, "present": [1, 11], "preserv": 8, "previou": [7, 13], "previous": [3, 15], "privatemodul": 5, "probabl": 8, "problem": 5, "process": [1, 3, 5, 8, 9, 10, 16], "prod": [2, 5], "profil": [0, 9, 16], "project": [3, 5, 11, 13, 16], "promot": 5, "prompt": [2, 9, 12, 15, 16], "protect": [4, 9], "proto": 5, "prove": [1, 3, 11], "provid": [7, 8, 13], "prune": 5, "ps1": 14, "publish": 11, "pull": [5, 11, 13, 15], "purpos": [0, 9], "push": 11, "put": [7, 14], "pwd": 1, "py": 1, "pyqt": [4, 9], "pyqt4": 5, "python": [11, 16], "q": [5, 16], "qt": 5, "qt4": 5, "qt_x11_no_mitshm": 5, "queri": 1, "quick": 12, "quickli": 2, "quit": 3, "quot": 2, "r": [1, 11, 13], "r3": 1, "rang": 8, "rather": 1, "raw": [13, 15, 16], "re": [9, 16], "read": [5, 15], "readi": 5, "readlin": 5, "reason": 5, "reboot": 2, "rebuild": [5, 16], "recent": 8, "reconnect": 16, "recreat": [7, 16], "redhat": [2, 5], "reduc": 5, "refer": [5, 16], "registri": [2, 5, 13, 15], "reinstal": 5, "releas": [1, 5, 8, 9, 10, 13, 14, 16], "reliabl": 2, "remot": [5, 9, 12, 14], "remov": [5, 9, 12], "reopen": 16, "replac": 3, "repo": [5, 9], "report": [13, 15], "repositori": 5, "request": [8, 11], "requir": [2, 5, 6, 7, 11, 13, 15], "reset": [7, 13], "resid": 2, "respect": 1, "restart": 2, "result": [5, 11], "rhel": [1, 5], "rhel6": 3, "rhel7": [0, 2, 3, 5, 13, 15], "rhel8": [3, 5, 7, 8, 9, 15], "right": [5, 13, 15, 16], "rm": [5, 7, 13, 16], "rmi": [5, 16], "roll": 13, "root": [1, 5, 6, 7, 13, 16], "rootless": [2, 8], "rpm": [5, 8], "rpmfind": 5, "run": [1, 2, 5, 6, 7, 8, 11, 13, 15, 16], "runtim": [2, 7], "rw": 1, "rwxrwxr": 1, "same": [1, 2, 3, 5, 14, 15, 16], "san": 5, "save": [13, 16], "scienc": 2, "scl": 5, "scope": 11, "scratch": [2, 5, 7, 16], "screen": 5, "script": [2, 5, 6, 7, 9, 11, 12, 13, 14, 16], "second": 15, "secondari": [1, 7], "sed": 5, "see": [1, 5, 6, 8, 9, 11, 13, 14, 15, 16], "seen": 16, "select": 5, "server": 5, "servic": [0, 9], "session": [5, 14, 16], "set": [2, 4, 5, 6, 9, 11, 12, 13, 14, 15], "setup": [7, 9, 12], "sever": 3, "sf": 5, "sh": [6, 7, 8, 11, 15], "sha256": 8, "share": [1, 2, 5, 7, 8, 15, 16], "shell": [1, 2, 5, 13, 14, 15], "short": 5, "shortli": 3, "should": [1, 3, 6, 13, 15], "show": [1, 5, 8, 13, 14], "side": 9, "similar": 2, "simpli": [5, 7], "simul": 13, "sinc": 11, "singl": [1, 5, 8, 16], "sit": 15, "size": 5, "sl": 5, "smoother": 3, "snapshot": [2, 5], "snmp": 5, "so": [1, 2, 3, 5, 6, 7, 8, 16], "softwar": [2, 15], "solut": 14, "some": [3, 8], "someth": [11, 16], "sourc": [2, 5, 9, 11, 14], "space": [4, 9, 16], "specif": [6, 9], "specifi": 13, "spend": [5, 11], "split": 9, "ssh": [13, 14], "standalon": 2, "standard": [2, 8, 15], "start": [12, 13, 16], "startup": [9, 12], "state": 13, "statu": 8, "stderr": 8, "stdout": 8, "step": [4, 5, 9, 10], "stop": [2, 5, 8, 13], "stopgap": [3, 5], "storag": 8, "store": [2, 5], "string": 5, "sub": 8, "subgid": 8, "submit": 11, "subuid": [4, 9], "sudo": [5, 7, 8, 13, 15], "sudoer": 5, "suggest": 15, "suppli": 5, "support": [1, 5, 7], "sure": [7, 11, 13], "switch": 5, "swrast": 8, "swrast_dri": 8, "system": [0, 1, 3, 5, 6, 7, 8, 9, 13, 16], "t": [8, 11, 15, 16], "tab": 15, "tag": [5, 6, 11], "take": [5, 13], "targeto": 2, "task": 3, "tba": 11, "tell": [1, 14, 16], "temp": 5, "temporari": 5, "termin": [1, 5, 9, 12, 13, 15], "test": [5, 9, 10, 15, 16], "than": 1, "thei": [1, 5, 6, 15], "them": [1, 5, 13, 15], "themselv": 8, "therefor": [1, 2, 13], "thi": [1, 2, 3, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16], "third": 5, "those": 16, "through": [11, 13], "thu": 5, "ticket": 11, "time": [3, 5, 8, 11], "titl": 11, "tk": 5, "tmp": [2, 5], "togeth": 5, "took": 3, "tool": [1, 2, 3, 5, 6], "toolchain": [3, 5], "tornado": 2, "total": 1, "tree": 8, "trick": 16, "troubl": 16, "troubleshoot": [4, 9], "try": [5, 11], "turbo": 5, "tutori": 13, "two": [1, 14], "txt": [1, 11], "type": [15, 16], "typic": 14, "u": 2, "uid": [1, 4, 9, 16], "uk": [3, 13], "unabl": 8, "under": [2, 3, 13], "underlin": 11, "unfortun": 1, "unit": 2, "unknown": 1, "unless": 13, "unprivileg": 8, "until": [2, 8, 13], "up": [1, 2, 4, 7, 9, 11, 13, 16], "updat": [4, 5, 6, 8, 9, 11, 12, 13, 14, 15], "upgrad": [3, 9, 12], "upon": [1, 2, 5], "us": [1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15], "usag": [9, 12, 13], "user": [0, 4, 7, 8, 9, 10, 12, 15], "usern": [1, 5], "usr": [5, 6], "usual": [1, 2, 5, 15, 16], "utf": 5, "util": 5, "v": [0, 9, 13, 15], "var": 5, "variabl": [2, 5, 6], "vault": 5, "venv": 11, "veri": [2, 16], "verifi": 11, "version": [1, 5, 9, 11, 12, 15, 16], "via": [2, 5, 13], "vim": 5, "virtual": [1, 11, 13], "virtualenv": 11, "visualstudio": 16, "volum": 7, "vsc": 16, "vscode": [9, 12, 13, 15], "vxwork": 2, "wa": 8, "wai": [0, 9, 14], "wait": [5, 8], "want": [5, 6, 8, 11, 13, 16], "warn": [7, 8], "wast": 3, "we": [1, 2, 3, 5, 11, 13], "welcom": 11, "were": [5, 15], "wget": [13, 16], "what": [5, 13], "when": [1, 2, 5, 8, 13, 14, 16], "which": [1, 2, 5, 8, 14, 15, 16], "while": [3, 8, 15], "why": [0, 9], "wide": 3, "wildcard": 5, "window": 16, "wish": [1, 5], "without": 5, "won": [15, 16], "work": [0, 1, 3, 5, 9, 11, 12, 13, 14, 16], "workaround": 5, "workflow": [1, 2], "workspac": 16, "workstat": [1, 2, 4, 7, 8, 9, 13, 15], "would": [3, 13, 16], "write": [1, 6, 8], "writeabl": 1, "wrong": 15, "wrote": 1, "x": [1, 3, 13, 15], "x11": [5, 13, 14], "x86_64": 5, "xcb": 5, "xfreerdp": 5, "xmessag": 5, "xorg": 5, "xterm": 5, "xvfb": 5, "y": [5, 6], "year": 3, "you": [1, 2, 5, 6, 7, 8, 11, 13, 14, 15, 16], "your": [1, 2, 4, 5, 7, 8, 9, 11, 13, 14, 15, 16], "yum": [5, 6, 8, 13, 15], "yumdb": 5, "zeniti": 5, "zeromq": 5, "zlib": 5, "zoneinfo": 5}, "titles": ["Explanations", "RHEL7 native vs dev-c7", "How the dev-c7 Container Works", "Purpose of the dev-c7 Container", "How-to Guides", "Managing Containers and Images on a Workstation", "Derive your own container image", "Updating Podman Settings", "Troubleshooting", "DLS RHEL7 in a Box Developer Container", "Reference", "Contributing", "Tutorials", "More Features", "Bash Prompt in dev-c7", "Quick Start", "VSCode Integration"], "titleterms": {"No": 1, "about": 9, "ad": 11, "bash": 14, "bashrc_loc": 14, "box": 9, "c7": [1, 2, 3, 13, 14, 15], "cento": 1, "chang": 14, "clean": 5, "contain": [2, 3, 5, 6, 9, 11, 13, 16], "contribut": 11, "defin": 5, "definit": 5, "delet": 13, "deriv": 6, "dev": [1, 2, 3, 14], "develop": [9, 16], "dl": 9, "document": [9, 11], "edm": [8, 15], "error": 8, "explan": [0, 9], "featur": [7, 11, 13], "file": 2, "first": 16, "font": [8, 15], "gid": 8, "guid": [4, 9], "hostnam": 14, "how": [2, 4, 9, 15, 16], "i": 9, "id": 1, "imag": [5, 6, 11], "initi": 16, "instal": [15, 16], "insuffici": 8, "integr": 16, "issu": 16, "known": 16, "launcher": 13, "lifetim": [2, 13, 16], "make": 11, "manag": 5, "memori": 8, "miss": 8, "modifi": 14, "monitor": 5, "more": 13, "nativ": 1, "new": 13, "option": 13, "own": 6, "plugin": 16, "podman": [2, 7], "process": 11, "profil": 2, "prompt": 14, "protect": 8, "purpos": 3, "pyqt": 8, "quick": [9, 15], "refer": [9, 10], "releas": 11, "remot": 16, "remov": 16, "rhel7": [1, 9], "script": 15, "servic": 1, "set": [7, 8, 16], "setup": [15, 16], "space": 5, "start": [9, 15], "startup": 15, "structur": 9, "subuid": 8, "system": 2, "termin": 16, "test": 11, "troubleshoot": 8, "tutori": [9, 12], "uid": 8, "up": 5, "updat": [7, 16], "upgrad": 13, "us": 16, "user": [1, 2, 16], "v": 1, "version": 13, "vscode": 16, "work": [2, 15], "workstat": 5, "your": 6}}) \ No newline at end of file +Search.setIndex({"alltitles": {"About the documentation": [[9, "about-the-documentation"]], "Adding Features to the Container Image": [[11, "adding-features-to-the-container-image"]], "Bash Prompt in dev-c7": [[14, null]], "Centos vs RHEL7": [[1, "centos-vs-rhel7"]], "Change the hostname": [[14, "change-the-hostname"]], "Cleaning Up Space": [[5, "cleaning-up-space"]], "Container Lifetime": [[16, "container-lifetime"]], "Container lifetime": [[2, "container-lifetime"]], "Containers": [[2, "containers"]], "Contributing": [[11, null]], "DLS RHEL7 in a Box Developer Container": [[9, null]], "Defining a Container Image": [[5, "defining-a-container-image"]], "Definitions": [[5, "definitions"]], "Deleting the container": [[13, "deleting-the-container"]], "Derive your own container image": [[6, null]], "Documentation": [[11, "documentation"]], "EDM Fonts": [[8, "edm-fonts"]], "Explanations": [[0, null], [0, null], [9, "explanations"], [9, null]], "Features": [[7, "features"]], "File Systems": [[2, "file-systems"]], "First integrated terminal": [[16, "first-integrated-terminal"]], "How the dev-c7 Container Works": [[2, null]], "How the documentation is structured": [[9, "how-the-documentation-is-structured"]], "How to Use": [[16, "how-to-use"]], "How to Work": [[15, "how-to-work"]], "How-to Guides": [[4, null], [4, null], [9, "how-to"], [9, null]], "Initial Setup": [[16, "initial-setup"]], "Install edm fonts": [[15, "install-edm-fonts"]], "Install remote development plugin": [[16, "install-remote-development-plugin"]], "Insufficient UIDs/GIDs": [[8, "insufficient-uids-gids"]], "Known Issues": [[16, "known-issues"]], "Lifetime": [[13, "lifetime"]], "Make Container Image": [[11, "make-container-image"]], "Managing Containers and Images on a Workstation": [[5, null]], "Memory Protections Error": [[8, "memory-protections-error"]], "Modify .bashrc_local": [[14, "modify-bashrc-local"]], "Monitoring": [[5, "monitoring"]], "More Features": [[13, null]], "No Services": [[1, "no-services"]], "Options": [[13, "options"]], "Podman": [[2, "podman"]], "Purpose of the dev-c7 Container": [[3, null]], "PyQt Errors": [[8, "pyqt-errors"]], "Quick Start": [[9, "quick-start"], [15, null]], "RHEL7 native vs dev-c7": [[1, null]], "Reference": [[9, "reference"], [9, null], [10, null], [10, null]], "Release Process": [[11, "release-process"]], "Setup": [[15, "setup"]], "Startup Script \u201cc7\u201d": [[15, "startup-script-c7"]], "Testing": [[11, "testing"]], "Troubleshooting": [[8, null]], "Tutorials": [[9, "tutorials"], [9, null], [12, null], [12, null]], "Update VSCode User settings": [[16, "update-vscode-user-settings"]], "Updating Podman Settings": [[7, null]], "Upgrade to a new c7 launcher version": [[13, "upgrade-to-a-new-c7-launcher-version"]], "User IDs": [[1, "user-ids"]], "User Profile": [[2, "user-profile"]], "VSCode Container Removal": [[16, "vscode-container-removal"]], "VSCode Integration": [[16, null]], "Versions": [[13, "versions"]], "subuid settings missing": [[8, "subuid-settings-missing"]]}, "docnames": ["explanations", "explanations/differences", "explanations/how_it_works", "explanations/why_dev_c7", "how-to", "how-to/containers", "how-to/deriving", "how-to/podman", "how-to/troubleshooting", "index", "reference", "reference/contributing", "tutorials", "tutorials/continue", "tutorials/prompt", "tutorials/start", "tutorials/vscode"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["explanations.rst", "explanations/differences.rst", "explanations/how_it_works.rst", "explanations/why_dev_c7.rst", "how-to.rst", "how-to/containers.rst", "how-to/deriving.rst", "how-to/podman.rst", "how-to/troubleshooting.rst", "index.rst", "reference.rst", "reference/contributing.rst", "tutorials.rst", "tutorials/continue.rst", "tutorials/prompt.rst", "tutorials/start.rst", "tutorials/vscode.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [2, 5, 13, 14, 15, 16], "0": [1, 5, 8, 13, 16], "0000": 8, "01": 16, "07": 16, "0b2dc63a68b9b80b6e261e0c71119894a739d353f8263d6b2f1394c66a45f5af": 8, "1": [1, 5, 8, 11], "10": 1, "1018": 1, "11am": 8, "12": 1, "13": 1, "14": 1, "15": 5, "150400": 5, "16": 1, "16384": 1, "1_0": 5, "1st": [5, 16], "2": [2, 5, 11, 13, 16], "2019": 1, "2022": 16, "21": 1, "24": [1, 5], "25": 1, "269": 1, "29": 1, "2nd": 5, "3": [5, 11], "30": 15, "381": 5, "41": 1, "5": [1, 5], "54": 8, "6": 8, "65534": [1, 5], "7": [1, 5], "8": 5, "914745539fc385a5fe9188693f0fa257": 16, "99": 5, "A": [2, 9], "As": 16, "At": [11, 15], "By": [1, 14], "For": [1, 5, 15], "IF": 8, "If": [2, 5, 6, 7, 8, 11, 13, 14, 15, 16], "In": [1, 2, 5, 11], "It": [1, 2, 5, 14, 15], "NOT": [15, 16], "No": [0, 8, 9], "OR": 5, "On": 15, "That": [15, 16], "The": [1, 2, 3, 5, 7, 8, 11, 13, 14, 15, 16], "Then": [8, 16], "These": [5, 8, 16], "To": [5, 6, 7, 11, 13, 16], "With": 3, "abil": 1, "abl": [1, 2, 7], "about": 15, "abov": [2, 5, 13, 16], "ac": [3, 13], "accept": 1, "access": [9, 16], "account": [1, 2, 5], "accumul": 13, "achiev": 3, "acquir": 13, "across": 8, "action": 11, "ad": [2, 8, 9, 10, 15], "add": [5, 6, 11, 14, 16], "addit": [5, 6, 7, 13], "adher": 2, "administr": 7, "adopt": [8, 15], "affect": 1, "afresh": 13, "after": 15, "afterward": 3, "again": [5, 13, 15], "aliv": 16, "all": [1, 2, 5, 6, 7, 11, 13, 15, 16], "allow": [2, 3, 5, 6], "almost": 1, "alongsid": 2, "alreadi": [5, 7, 15], "also": [5, 9, 11, 13], "altern": 2, "although": [1, 15], "alwai": 13, "an": [1, 2, 5, 6, 7, 8, 11, 13, 14, 15], "ani": [1, 2, 3, 5, 6, 11, 13, 15], "anoth": [2, 5, 16], "answer": 1, "anyth": 15, "app": [1, 2, 5, 7, 13, 14, 15], "applic": [2, 8, 13], "applylay": 8, "approach": 3, "approv": 11, "ar": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16], "areadetector": 5, "arg": 16, "argument": 8, "around": 16, "arrang": 2, "ask": 13, "asset": 7, "attach": 13, "attempt": 1, "autogener": 11, "automat": [8, 15], "avail": [1, 5, 8, 13, 15, 16], "avoid": [5, 7], "await": 11, "awar": 1, "back": 13, "background": [1, 2], "bad": 13, "bar": 9, "base": [1, 2, 3, 5, 6], "baseurl": 5, "bash": [2, 5, 9, 12, 15, 16], "bash_profil": [2, 16], "bashrc_loc": [9, 12], "beauti": 16, "becaus": [1, 2, 5], "been": 1, "befor": [5, 7, 11, 13, 15], "behalf": 7, "behaviour": 13, "belong": 1, "below": [5, 6, 13], "benign": 8, "between": 16, "big": 11, "bin": [6, 8, 13, 15], "bind": 5, "bl16i": 1, "blob": 8, "boost": 5, "bootstrap": 5, "both": 1, "bottom": 16, "branch": 11, "break": 8, "brows": 16, "bst": 5, "build": [5, 6, 7, 8, 11], "builder": 1, "built": [2, 3, 5, 8], "button": 16, "c": [13, 16], "c7": [0, 5, 6, 7, 8, 9, 11, 12, 16], "cach": [5, 7, 11, 15], "can": [3, 5, 8, 11, 13, 14, 15, 16], "cannot": 8, "case": [2, 5], "categori": 9, "caus": 14, "cd": [5, 6, 11, 13, 15, 16], "cento": [0, 5, 9, 14], "cfengin": 8, "chang": [2, 5, 6, 8, 9, 11, 12, 13], "check": [8, 11, 13], "checklist": 11, "chmod": [13, 15], "choic": 14, "choos": [1, 11, 16], "clariti": 11, "clean": [4, 9], "click": 16, "client": 5, "clone": 5, "close": [13, 16], "cmake": 5, "code": [1, 2, 9, 11, 16], "column": 5, "com": [2, 3, 5, 8, 9, 11, 13, 15, 16], "come": 8, "command": [5, 6, 8, 13, 14], "commandlin": [9, 12], "common": [5, 16], "commun": 1, "compil": [5, 15], "complain": 5, "compliant": 11, "complic": [1, 3], "comput": 2, "computingforgeek": 5, "conf": [5, 8], "config": [7, 16], "configur": [6, 16], "confluenc": 3, "connect": 16, "consequ": 5, "consid": [6, 13], "contain": [0, 1, 4, 7, 8, 10, 12, 14, 15], "content": 1, "context": [5, 6], "continu": [2, 3, 7], "contribut": [6, 9, 10], "control": [2, 3, 5, 6, 8, 9, 11, 13, 15, 16], "convent": 11, "copi": [5, 6, 15, 16], "core": 5, "creat": [2, 5, 6, 9, 11, 16], "creation": 14, "crun": 7, "ctrl": 16, "curl": [5, 15], "current": [5, 13, 15, 16], "d": [5, 13], "daemonless": 2, "dai": 8, "date": 7, "dbu": [1, 5], "dc": 1, "debug": 16, "dec": 11, "decoupl": 3, "default": [1, 5, 8, 11, 13, 14, 16], "defaultprofil": 16, "defin": [4, 9, 11], "definit": [4, 9], "dejavu": 5, "delai": 15, "delet": [2, 5, 7, 9, 12, 16], "depend": [2, 5], "deploi": 5, "deploy": 3, "deriv": [4, 9, 13], "descript": 16, "design": [1, 2], "desktop": 5, "detail": [3, 5, 13, 16], "detect": 2, "dev": [0, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16], "devcontain": [13, 16], "devel": 5, "develop": [1, 2, 3, 5, 6, 12, 13, 14], "dialog": 16, "dialogu": 16, "diamond": [3, 9, 13], "differ": [1, 8, 15, 16], "directori": [1, 2, 11, 13, 15], "disk": 16, "displai": 15, "distinct": 16, "distract": 8, "distribut": 5, "dl": [1, 2, 3, 5, 6, 8, 11, 13, 15, 16], "dls_sw": [1, 2, 5, 7, 15], "do": [5, 7, 13, 15, 16], "doc": [11, 16], "docker": [2, 5, 16], "dockerfil": [5, 6], "dockerhub": 2, "dockerpath": 16, "document": [1, 3, 10], "doe": [1, 15], "don": [8, 11, 15], "done": 5, "down": 8, "download": 5, "dp": 13, "dri": 5, "driver": [5, 8], "drop": 6, "drwxrwsr": 1, "due": 2, "dv": 13, "e": [1, 5, 6], "each": [6, 8, 14, 16], "earli": [8, 15], "edit": [8, 11], "edm": [4, 5, 9, 12], "effect": 7, "effort": [3, 5], "empti": 8, "emul": 1, "en_u": 5, "enabl": 13, "end": 14, "endpoint": 5, "endpointdev": 5, "engin": 2, "ensur": [5, 7, 16], "enter": 16, "entir": [1, 5], "entri": 8, "env": [5, 6], "environ": [1, 2, 5, 6, 9, 11, 16], "eog": 5, "epel": 5, "ephemer": [2, 13], "epic": [2, 3, 5], "erro": 8, "error": [4, 9, 15], "essenti": [1, 2, 16], "etc": [1, 2, 5, 8, 14], "europ": 5, "eventu": 8, "everi": [5, 8], "everyth": [2, 13, 15], "evinc": 5, "exactli": 14, "exampl": [1, 5, 6], "except": 5, "execut": [1, 2, 5, 13, 15], "exist": [5, 11], "exit": [2, 8, 16], "experi": 5, "experienc": [4, 9, 10], "explan": 5, "explicitli": [2, 13], "explor": 16, "export": 14, "ext": 16, "extensionpack": 16, "f": [14, 16], "fail": [8, 14], "far": [1, 3], "fashion": 2, "faster": 7, "featur": [2, 4, 9, 10, 12, 15, 16], "feb": 1, "fed_id": [5, 7], "feel": 15, "few": [1, 13, 15], "fi": 14, "file": [0, 1, 5, 6, 7, 8, 9, 11, 13, 14, 16], "filesystem": [1, 5, 7, 15], "filter": [5, 16], "final": [3, 15], "find": [1, 8, 15], "firefox": [5, 11], "first": [5, 8, 9, 12, 13, 15], "fit": 11, "fix": 14, "folder": [2, 5, 6, 7, 8, 15, 16], "follow": [2, 5, 8, 11, 13, 14, 15, 16], "font": [4, 5, 9, 12], "found": [5, 8], "four": 9, "fr": 5, "free": [6, 15], "from": [2, 3, 5, 6, 9, 11, 13, 14, 15, 16], "ft0": 13, "full": [5, 13, 15], "further": [2, 15], "fuse": [5, 8], "futur": 3, "g": [1, 5, 6, 13], "gener": 5, "get": [1, 5, 15, 16], "ghcr": [2, 5, 6, 9, 11, 13], "gid": [1, 4, 9], "giflib": 5, "gile": 1, "git": 5, "git2u": 5, "github": [2, 3, 5, 8, 9, 11, 13, 15, 16], "githubusercont": [13, 15, 16], "give": 14, "glibc": 5, "gnome": [5, 15], "go": [11, 16], "great": 11, "group": [1, 5, 7], "groupinstal": 5, "gt": 1, "gtk2": 5, "gtk3": 5, "gui": [6, 13, 15], "guid": 10, "h": 13, "ha": [1, 13, 16], "hack": 5, "handl": 11, "happen": [2, 15], "have": [1, 5, 6, 7, 8, 11, 13, 14, 15, 16], "hdf5": 5, "head": 11, "headl": 11, "help": 13, "helper": 16, "henc": [1, 2, 3], "here": [2, 3, 9, 12, 16], "hgv27681": [1, 5, 8], "hold": 5, "home": [2, 5, 13, 14, 15, 16], "home_pa_slit": 1, "hopefulli": 5, "host": [2, 3, 5, 8, 13, 14, 15], "hostnam": [9, 12, 13], "how": [0, 12, 13], "howev": [1, 2, 8, 13], "html": [5, 11], "http": [2, 3, 5, 8, 9, 11, 13, 15, 16], "i": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14, 15, 16], "i686": 5, "icon": 16, "id": [0, 5, 8, 9, 15], "idea": [11, 13], "ignor": 8, "imag": [1, 2, 4, 7, 8, 9, 10, 13, 15, 16], "image_id": 5, "implement": 13, "improv": 15, "includ": [2, 13, 16], "index": [5, 11], "indic": 14, "individu": 5, "inevit": 1, "info": 6, "ini": 1, "initi": [2, 5, 9, 12, 13, 14, 15], "input": 5, "insid": [1, 2, 5, 6, 13, 14, 15, 16], "instal": [2, 5, 6, 8, 9, 11, 12, 13], "instanc": 15, "instead": [5, 13, 15, 16], "insuffici": [4, 9], "integr": [9, 12, 15], "interact": [1, 2], "interchang": 2, "invalid": 8, "invoc": [2, 13, 15], "involv": 11, "io": [2, 5, 6, 9, 11, 13], "ioc": 3, "isol": [2, 5], "issu": [8, 9, 11, 12, 15], "its": [2, 13, 15], "itself": 13, "java": 5, "json": [13, 16], "jun": 1, "just": 5, "keep": [1, 5], "kept": 16, "known": [1, 9, 12], "kubernet": [3, 5], "l": [1, 2, 13, 16], "lang": 5, "lapack": 5, "last": 13, "latest": [2, 5, 6, 11, 13, 16], "launch": [1, 2, 5, 8, 9, 11, 13, 14, 15, 16], "launcher": [9, 12], "layer": [2, 5, 8], "lc_all": 5, "lc_ctype": 5, "lchown": 8, "leap": 5, "left": 16, "legaci": 3, "lib": 5, "libc": 8, "libcanberra": 5, "libcurl": 5, "libgl": 8, "libgl_always_indirect": 5, "libjpeg": 5, "libnet": 5, "libpcap": 5, "libpng": 5, "librari": [0, 2, 5, 6, 8, 9, 12], "librdkafka": 5, "libssh2": 5, "libtiff": 5, "libtirpc": 5, "libusb": 5, "libusbx": 5, "libx11": 5, "libxcb": 5, "libxkbcommon": 5, "libxml2": 5, "libxmu": 5, "libxp": 5, "libxpm": 5, "libxtst": 5, "licens": 1, "lifetim": [0, 9, 12], "light": 9, "lightweight": 2, "like": [2, 5, 6, 13, 16], "line": [5, 6, 14], "link": 9, "linux": [5, 16], "list": 1, "littl": 1, "ln": 5, "load": [2, 8, 15, 16], "local": [5, 8, 11, 15], "localhost": 16, "localtim": 5, "lock": 8, "lockdev": 8, "log": 13, "login": 16, "london": 5, "long": 1, "look": [2, 5, 13, 14, 15], "loos": 7, "lost": [2, 13], "low": 16, "lsb": 5, "m": 16, "machin": [1, 8, 15], "made": [2, 11, 13], "mai": [1, 5, 7, 8, 13, 15, 16], "main": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "major": 5, "make": [1, 2, 5, 6, 7, 9, 10, 13, 15], "make_doc": 11, "makefil": 1, "makeioc": 1, "man": 8, "manag": [4, 9, 15], "mani": 13, "manual": 16, "map": [2, 8, 15], "master": 1, "match": [5, 13], "mean": [1, 2, 5, 16], "meld": 5, "membership": 1, "memori": [4, 9], "menu": 16, "mesa": 5, "messag": 16, "might": [8, 11], "migrat": [8, 15], "minim": 5, "mirror": 5, "mirrorlist": 5, "miss": [4, 9, 15], "mkdir": [15, 16], "mode": 8, "model": 5, "modifi": [9, 12], "modul": [1, 5, 15, 16], "modulefil": 5, "modulepath": 5, "monitor": [4, 9], "mono": 5, "more": [4, 9, 10, 12, 15], "most": [2, 11], "motif": 5, "mount": [1, 2], "mount_program": 8, "much": 7, "multipl": [5, 15, 16], "must": [5, 13, 15], "my": [6, 14, 16], "my_var": 6, "n": 13, "name": [1, 14, 16], "namespac": [2, 8, 15], "nasti": 5, "nativ": [0, 9, 15], "nc": 13, "need": [2, 6, 7, 8, 13, 15], "net": 5, "network": [8, 13], "never": 15, "new": [3, 5, 9, 11, 12, 15, 16], "newli": 5, "next": [2, 5, 8, 13, 15], "nobodi": 5, "none": [1, 16], "normal": 15, "note": [5, 6, 13, 16], "noth": 1, "now": [5, 11, 16], "numactl": 5, "number": [1, 2, 5, 11], "ny8dcq": 3, "o": [1, 2, 3, 5, 6, 15], "odin": 5, "one": [2, 3, 5, 11, 14, 16], "onli": [1, 2, 3, 5, 13], "open": [2, 5, 15, 16], "openldap": 5, "opensus": 5, "oper": [2, 3, 13], "option": [9, 12, 15, 16], "order": [2, 11, 14], "org": 5, "origin": 13, "os": 1, "oss": 5, "other": [1, 6, 16], "otherwis": 5, "our": [3, 5], "out": [11, 14], "outsid": 1, "over": 1, "overlai": [5, 7], "overlayf": [5, 8], "override_install_lang": 5, "own": [1, 2, 4, 9, 13], "ownership": 1, "p": [5, 13, 16], "packag": [1, 2, 5, 6], "packagekit": 5, "page": [1, 8, 11], "paramet": 13, "part": 15, "particular": 5, "partit": [2, 13], "pass": [2, 14], "passwd": 5, "patch": 1, "path": [5, 15, 16], "pattern": 5, "paus": 8, "pc0116": 13, "pcre": 5, "pep440": 11, "perform": [13, 15], "perman": 13, "permiss": [1, 7], "persist": [2, 13], "person": 14, "pick": 13, "pip": 11, "place": [11, 14], "plan": 3, "pleas": [7, 11, 15], "plu": 2, "plugin": [9, 12], "podman": [0, 4, 5, 6, 8, 9, 13, 15, 16], "point": 2, "port": 3, "possibl": 1, "potenti": 8, "pr": [5, 11], "practic": [4, 9, 10], "prefer": [6, 14], "prefix": 14, "present": [1, 11], "preserv": 8, "previou": [7, 13], "previous": [3, 15], "privatemodul": 5, "probabl": 8, "problem": 5, "process": [1, 3, 5, 8, 9, 10, 16], "prod": [2, 5], "profil": [0, 9, 16], "project": [3, 5, 11, 13, 16], "promot": 5, "prompt": [2, 9, 12, 15, 16], "protect": [4, 9], "proto": 5, "prove": [1, 3, 11], "provid": [7, 8, 13], "prune": 5, "ps1": 14, "publish": 11, "pull": [5, 11, 13, 15], "purpos": [0, 9], "push": 11, "put": [7, 14], "pwd": 1, "py": 1, "pyqt": [4, 9], "pyqt4": 5, "python": [11, 16], "q": [5, 16], "qt": 5, "qt4": 5, "qt_x11_no_mitshm": 5, "queri": 1, "quick": 12, "quickli": 2, "quit": 3, "quot": 2, "r": [1, 11, 13], "r3": 1, "rang": 8, "rather": 1, "raw": [13, 15, 16], "re": [9, 16], "read": [5, 15], "readi": 5, "readlin": 5, "reason": 5, "reboot": 2, "rebuild": [5, 16], "recent": 8, "reconnect": 16, "recreat": [7, 16], "redhat": [2, 5], "reduc": 5, "refer": [5, 16], "registri": [2, 5, 13, 15], "reinstal": 5, "releas": [1, 5, 8, 9, 10, 13, 14, 16], "reliabl": 2, "remot": [5, 9, 12, 14], "remov": [5, 9, 12], "reopen": 16, "replac": 3, "repo": [5, 9], "report": [13, 15], "repositori": 5, "request": [8, 11], "requir": [2, 5, 6, 7, 11, 13, 15], "reset": [7, 13], "resid": 2, "respect": 1, "restart": 2, "result": [5, 11], "rhel": [1, 5], "rhel6": 3, "rhel7": [0, 2, 3, 5, 13, 15], "rhel8": [3, 5, 7, 8, 9, 15], "right": [5, 13, 15, 16], "rm": [5, 7, 13, 16], "rmi": [5, 16], "roll": 13, "root": [1, 5, 6, 7, 13, 16], "rootless": [2, 8], "rpm": [5, 8], "rpmfind": 5, "run": [1, 2, 5, 6, 7, 8, 11, 13, 15, 16], "runtim": [2, 7], "rw": 1, "rwxrwxr": 1, "same": [1, 2, 3, 5, 14, 15, 16], "san": 5, "save": [13, 16], "scienc": 2, "scl": 5, "scope": 11, "scratch": [2, 5, 7, 16], "screen": 5, "script": [2, 5, 6, 7, 9, 11, 12, 13, 14, 16], "second": 15, "secondari": [1, 7], "sed": 5, "see": [1, 5, 6, 8, 9, 11, 13, 14, 15, 16], "seen": 16, "select": 5, "server": 5, "servic": [0, 9], "session": [5, 14, 16], "set": [2, 4, 5, 6, 9, 11, 12, 13, 14, 15], "setup": [7, 9, 12], "sever": 3, "sf": 5, "sh": [6, 7, 8, 11, 15], "sha256": 8, "share": [1, 2, 5, 7, 8, 15, 16], "shell": [1, 2, 5, 13, 14, 15], "short": 5, "shortli": 3, "should": [1, 3, 6, 13, 15], "show": [1, 5, 8, 13, 14], "side": 9, "similar": 2, "simpli": [5, 7], "simul": 13, "sinc": 11, "singl": [1, 5, 8, 16], "sit": 15, "size": 5, "sl": 5, "smoother": 3, "snapshot": [2, 5], "snmp": 5, "so": [1, 2, 3, 5, 6, 7, 8, 16], "softwar": [2, 15], "solut": 14, "some": [3, 8], "someth": [11, 16], "sourc": [2, 5, 9, 11, 14], "space": [4, 9, 16], "specif": [6, 9], "specifi": 13, "spend": [5, 11], "split": 9, "ssh": [13, 14], "standalon": 2, "standard": [2, 8, 15], "start": [12, 13, 16], "startup": [9, 12], "state": 13, "statu": 8, "stderr": 8, "stdout": 8, "step": [4, 5, 9, 10], "stop": [2, 5, 8, 13], "stopgap": [3, 5], "storag": 8, "store": [2, 5], "string": 5, "sub": 8, "subgid": 8, "submit": 11, "subuid": [4, 9], "sudo": [5, 7, 8, 13, 15], "sudoer": 5, "suggest": 15, "suppli": 5, "support": [1, 5, 7], "sure": [7, 11, 13], "switch": 5, "swrast": 8, "swrast_dri": 8, "system": [0, 1, 3, 5, 6, 7, 8, 9, 13, 16], "t": [8, 11, 15, 16], "tab": 15, "tag": [5, 6, 11], "take": [5, 13], "targeto": 2, "task": 3, "tba": 11, "tell": [1, 14, 16], "temp": 5, "temporari": 5, "termin": [1, 5, 9, 12, 13, 15], "test": [5, 9, 10, 15, 16], "than": 1, "thei": [1, 5, 6, 15], "them": [1, 5, 13, 15], "themselv": 8, "therefor": [1, 2, 13], "thi": [1, 2, 3, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16], "third": 5, "those": 16, "through": [11, 13], "thu": 5, "ticket": 11, "time": [3, 5, 8, 11], "titl": 11, "tk": 5, "tmp": [2, 5], "togeth": 5, "took": 3, "tool": [1, 2, 3, 5, 6], "toolchain": [3, 5], "tornado": 2, "total": 1, "tree": 8, "trick": 16, "troubl": 16, "troubleshoot": [4, 9], "try": [5, 11], "turbo": 5, "tutori": 13, "two": [1, 14], "txt": [1, 11], "type": [15, 16], "typic": 14, "u": 2, "uid": [1, 4, 9, 16], "uk": [3, 13], "unabl": 8, "under": [2, 3, 13], "underlin": 11, "unfortun": 1, "unit": 2, "unknown": 1, "unless": 13, "unprivileg": 8, "until": [2, 8, 13], "up": [1, 2, 4, 7, 9, 11, 13, 16], "updat": [4, 5, 6, 8, 9, 11, 12, 13, 14, 15], "upgrad": [3, 9, 12], "upon": [1, 2, 5], "us": [1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15], "usag": [9, 12, 13], "user": [0, 4, 7, 8, 9, 10, 12, 15], "usern": [1, 5], "usr": [5, 6], "usual": [1, 2, 5, 15, 16], "utf": 5, "util": 5, "v": [0, 9, 13, 15], "var": 5, "variabl": [2, 5, 6], "vault": 5, "venv": 11, "veri": [2, 16], "verifi": 11, "version": [1, 5, 9, 11, 12, 15, 16], "via": [2, 5, 13], "vim": 5, "virtual": [1, 11, 13], "virtualenv": 11, "visualstudio": 16, "volum": 7, "vsc": 16, "vscode": [9, 12, 13, 15], "vxwork": 2, "wa": 8, "wai": [0, 9, 14], "wait": [5, 8], "want": [5, 6, 8, 11, 13, 16], "warn": [7, 8], "wast": 3, "we": [1, 2, 3, 5, 11, 13], "welcom": 11, "were": [5, 15], "wget": [13, 16], "what": [5, 13], "when": [1, 2, 5, 8, 13, 14, 16], "which": [1, 2, 5, 8, 14, 15, 16], "while": [3, 8, 15], "why": [0, 9], "wide": 3, "wildcard": 5, "window": 16, "wish": [1, 5], "without": 5, "won": [15, 16], "work": [0, 1, 3, 5, 9, 11, 12, 13, 14, 16], "workaround": 5, "workflow": [1, 2], "workspac": 16, "workstat": [1, 2, 4, 7, 8, 9, 13, 15], "would": [3, 13, 16], "write": [1, 6, 8], "writeabl": 1, "wrong": 15, "wrote": 1, "x": [1, 3, 13, 15], "x11": [5, 13, 14], "x86_64": 5, "xcb": 5, "xfreerdp": 5, "xmessag": 5, "xorg": 5, "xterm": 5, "xvfb": 5, "y": [5, 6], "year": 3, "you": [1, 2, 5, 6, 7, 8, 11, 13, 14, 15, 16], "your": [1, 2, 4, 5, 7, 8, 9, 11, 13, 14, 15, 16], "yum": [5, 6, 8, 13, 15], "yumdb": 5, "zeniti": 5, "zeromq": 5, "zlib": 5, "zoneinfo": 5}, "titles": ["Explanations", "RHEL7 native vs dev-c7", "How the dev-c7 Container Works", "Purpose of the dev-c7 Container", "How-to Guides", "Managing Containers and Images on a Workstation", "Derive your own container image", "Updating Podman Settings", "Troubleshooting", "DLS RHEL7 in a Box Developer Container", "Reference", "Contributing", "Tutorials", "More Features", "Bash Prompt in dev-c7", "Quick Start", "VSCode Integration"], "titleterms": {"No": 1, "about": 9, "ad": 11, "bash": 14, "bashrc_loc": 14, "box": 9, "c7": [1, 2, 3, 13, 14, 15], "cento": 1, "chang": 14, "clean": 5, "contain": [2, 3, 5, 6, 9, 11, 13, 16], "contribut": 11, "defin": 5, "definit": 5, "delet": 13, "deriv": 6, "dev": [1, 2, 3, 14], "develop": [9, 16], "dl": 9, "document": [9, 11], "edm": [8, 15], "error": 8, "explan": [0, 9], "featur": [7, 11, 13], "file": 2, "first": 16, "font": [8, 15], "gid": 8, "guid": [4, 9], "hostnam": 14, "how": [2, 4, 9, 15, 16], "i": 9, "id": 1, "imag": [5, 6, 11], "initi": 16, "instal": [15, 16], "insuffici": 8, "integr": 16, "issu": 16, "known": 16, "launcher": 13, "lifetim": [2, 13, 16], "make": 11, "manag": 5, "memori": 8, "miss": 8, "modifi": 14, "monitor": 5, "more": 13, "nativ": 1, "new": 13, "option": 13, "own": 6, "plugin": 16, "podman": [2, 7], "process": 11, "profil": 2, "prompt": 14, "protect": 8, "purpos": 3, "pyqt": 8, "quick": [9, 15], "refer": [9, 10], "releas": 11, "remot": 16, "remov": 16, "rhel7": [1, 9], "script": 15, "servic": 1, "set": [7, 8, 16], "setup": [15, 16], "space": 5, "start": [9, 15], "startup": 15, "structur": 9, "subuid": 8, "system": 2, "termin": 16, "test": 11, "troubleshoot": 8, "tutori": [9, 12], "uid": 8, "up": 5, "updat": [7, 16], "upgrad": 13, "us": 16, "user": [1, 2, 16], "v": 1, "version": 13, "vscode": 16, "work": [2, 15], "workstat": 5, "your": 6}}) \ No newline at end of file diff --git a/main/tutorials.html b/main/tutorials.html index 0405453..0d161c1 100644 --- a/main/tutorials.html +++ b/main/tutorials.html @@ -4,7 +4,7 @@ - Tutorials — dev-c7 2.3.3-6-gf931903 + <title>Tutorials — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/tutorials/continue.html b/main/tutorials/continue.html index 3be8bd2..11a16d9 100644 --- a/main/tutorials/continue.html +++ b/main/tutorials/continue.html @@ -4,7 +4,7 @@ - More Features — dev-c7 2.3.3-6-gf931903 + <title>More Features — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/tutorials/prompt.html b/main/tutorials/prompt.html index 3232f3c..d88d4b0 100644 --- a/main/tutorials/prompt.html +++ b/main/tutorials/prompt.html @@ -4,7 +4,7 @@ - Bash Prompt in dev-c7 — dev-c7 2.3.3-6-gf931903 + <title>Bash Prompt in dev-c7 — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/tutorials/start.html b/main/tutorials/start.html index 46bd2b7..7a98936 100644 --- a/main/tutorials/start.html +++ b/main/tutorials/start.html @@ -4,7 +4,7 @@ - Quick Start — dev-c7 2.3.3-6-gf931903 + <title>Quick Start — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - + diff --git a/main/tutorials/vscode.html b/main/tutorials/vscode.html index d07193d..235c49a 100644 --- a/main/tutorials/vscode.html +++ b/main/tutorials/vscode.html @@ -4,7 +4,7 @@ - VSCode Integration — dev-c7 2.3.3-6-gf931903 + <title>VSCode Integration — dev-c7 2024.8.1-5-gffcf839 documentation @@ -19,7 +19,7 @@ - +