📅  最后修改于: 2023-12-03 15:35:36.772000             🧑  作者: Mango
If you're a programmer who prefers using a Linux operating system, you might want to try out Manjaro. Manjaro is a user-friendly, Arch-based Linux distribution that includes the latest software and updates.
In this guide, we'll show you how to install Manjaro on VMware, a virtualization platform that allows you to run multiple operating systems on the same machine. We'll also cover some useful shell/bash commands that you can use in Manjaro.
ls
: List all files and directories in the current directory.cd
: Change directory. Use cd ..
to move up one directory.mkdir
: Create a new directory.touch
: Create a new file.rm
: Remove a file or directory. Use rm -r
to remove a directory and all its contents.grep
: Search for a specific text pattern in a file or output.sudo
: Execute a command with superuser privileges.ps
: List all running processes.kill
: Terminate a running process. Use kill -9
to force a process to terminate.top
: Display real-time system resource usage.With these basic commands, you can navigate and manage your Manjaro system efficiently using the terminal.