inDevelopme / justaskdavidb

These are the publications that players on our team created for publications.
GNU General Public License v3.0
1 stars 1 forks source link

Programmers in JustAskDavidB should have general knowledge about Linux commands #65

Closed andrew-zhouu closed 2 months ago

andrew-zhouu commented 11 months ago

Linux commands used in Git Bash

jasalise commented 6 months ago

Linux Commands

A "Linux command" refers to any command or instruction entered into a terminal or shell on a Linux operating system. Linux commands are used to perform various tasks, such as navigating the file system, managing files and directories, executing programs, configuring system settings, and more. Here are a few examples of commonly used Linux commands:

  1. ls: Lists the contents of a directory.
  2. cd: Changes the current directory.
  3. pwd: Prints the current working directory.
  4. mkdir: Creates a new directory.
  5. rmdir: Removes directory (only works for empty directories)
  6. rm: Removes files or directories.
  7. cp: Copies files or directories.
  8. mv: Moves or renames files or directories.
  9. cat: Displays the contents of a file.
  10. less: Allows you to view the contents of a file page by page.
  11. grep: Searches for patterns in files.
  12. chmod: Changes the permissions of a file or directory.
  13. chown Changes the owner and group of a file or directory.
  14. ps: Lists currently running process.
  15. kill: Terminates a process by process ID (PID)
  16. sudo: Executes a command with superuser (administrative) privileges.
  17. man: Displays the manual page for a command.
  18. history: Displays a list of recently executed commands.

These are just a few examples, and there are many more Linux commands available for various purposes. Each command typically has its own set of options and arguments to customize its behavior. You can use the "man" command followed by the name of a command to view its manual page and learn more about its usage and options.

1. Start with the Basics:

2. Understand Permissions and Ownership:

3. Explore Text Processing Tools:

4. Work with Processes:

5. Get Comfortable with Package Management:

6. Explore System Information and Monitoring:

7. Practice Shell Scripting:

8. Understand Input/Output Redirection and Pipes:

9. Explore Networking Commands:

10. Stay Curious and Practice Regularly:

Resource: Linux Command 25 Basic Commands for beginners

justaskdavidb commented 6 months ago

@jasalise, we will practice many of these commands during our next discussion. Now that you have gotten enough information in this ticket.

justaskdavidb commented 2 months ago

Demonstrated full understanding of this issue. This can be reopened at anytime / similar issue created for future participants.