From a7509c6285a99de4ed2671633bb0edbdac41944f Mon Sep 17 00:00:00 2001 From: radinpirouz Date: Tue, 3 Jun 2025 14:30:55 +0330 Subject: [PATCH] dpkg doc --- Code Management/Git/Gitlab/Gitlab-CI/1.md | 0 .../Git/Gitlab/Gitlab-CI/gitlab-ci.yaml | 25 +++++ Linux/LPIC1/4-dpkg.md | 94 +++++++++++++++++++ 3 files changed, 119 insertions(+) create mode 100644 Code Management/Git/Gitlab/Gitlab-CI/1.md create mode 100644 Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml create mode 100644 Linux/LPIC1/4-dpkg.md diff --git a/Code Management/Git/Gitlab/Gitlab-CI/1.md b/Code Management/Git/Gitlab/Gitlab-CI/1.md new file mode 100644 index 0000000..e69de29 diff --git a/Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml b/Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml new file mode 100644 index 0000000..8ae436c --- /dev/null +++ b/Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml @@ -0,0 +1,25 @@ +job1: + stage: hello_stage + script: echo "Hi :)" + +job2: + stage: hello_stage + script: echo "Hello :)" + +job3: + stage: hello_stage + script: echo "How Are You :)" + needs: + - job2 + +Build_job1: + stage: build_stage + script: echo "Building Code" + needs: + - job3 + tags: + - build_runner + +stages: + - hello_stage + - build_stage \ No newline at end of file diff --git a/Linux/LPIC1/4-dpkg.md b/Linux/LPIC1/4-dpkg.md new file mode 100644 index 0000000..7537c59 --- /dev/null +++ b/Linux/LPIC1/4-dpkg.md @@ -0,0 +1,94 @@ + +# ๐Ÿ“ฆ `dpkg` โ€“ Debian Package Manager + +`dpkg` is the package manager for Debian-based Linux distributions. It is used to install, remove, and manage `.deb` packages directly. + +### ๐Ÿ“˜ Basic Syntax + +```bash +dpkg [