From a33900397b76d1d5bdf18ceba7383740a0c4bfce Mon Sep 17 00:00:00 2001 From: ranjeet yadav <147843523+ranjeetV8@users.noreply.github.com> Date: Mon, 22 Sep 2025 08:29:52 +0530 Subject: [PATCH] Update terminal-basics.md Added Remove a package && Remove unused packages from a computer. --- content/terminal-basics.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/terminal-basics.md b/content/terminal-basics.md index 9ab37d7c34..ab4014b587 100644 --- a/content/terminal-basics.md +++ b/content/terminal-basics.md @@ -99,3 +99,13 @@ man sudo ``` The `man` command is short for manual. You can type the `man` command in front of any command that you want more information about. + +```bash +sudo apt remove [package] +``` +The `remove` command will remove a particular package from your computer. + +```bash +sudo apt autoremove +``` +This `autoremove` command will automatically remove unused packages from your computer.