Linux Basic Commands
Basic Linux Commands You Should Know
I am a dedicated and skilled Software Engineer specializing in mobile app development, backend systems, and creating secure APIs. With extensive experience in both SQL and NoSQL databases, I have a proven track record of delivering robust and scalable solutions.
Key Expertise:
Mobile App Development: I make high-quality apps for Android and iOS, ensuring they are easy to use and work well.
Backend Development: Skilled in designing and implementing backend systems using various frameworks and languages to support web and mobile applications.
Secure API Creation: Expertise in creating secure APIs, ensuring data integrity and protection across platforms.
Database Management: Experienced with SQL databases such as MySQL, and NoSQL databases like Firebase, managing data effectively and efficiently.
Technical Skills: Programming Languages: Java, Dart, Python, JavaScript, Kotlin, PHP
Frameworks: Angular, CodeIgniter, Flutter, Flask, Django
Database Systems: MySQL, Firebase
Cloud Platforms: AWS, Google Cloud Console
I love learning new things and taking on new challenges. I am always eager to work on projects that make a difference.
If you're new to Linux, using the terminal to manage folders, files, and software might seem hard at first. But with a few basic commands, it becomes easy and powerful.
In this guide, we will show you simple Linux commands to help you create folders, view files, edit documents, and more. These steps are great for beginners or anyone looking to learn how to use Linux in a simple way.
Make a Directory or Folder
mkdir myFolder

View directory contents:
ls: Lists all files and directories in the current directory.Example:
ls /homeshows files in the/homedirectory.

Change directory:
cd <directory_path>: Changes to a different directory.Example:
cd /home/user/Documentsmoves you to the Documents directory.
Create a file:
* touch filename: Creates an empty file.
* Example: touch myfile.txt creates an empty file called myfile.txt.

Edit a file:
nano filename: Opens a file in thenanotext editor.Example:
nano myfile.txtlets you editmyfile.txt.


click ctrl + O to save

Press Enter to confirm the file name and save.
To exit Nano after saving, press
Ctrl + X.
Delete a file:
* rm filename: Deletes a file.
* Example: rm myfile.txt deletes myfile.txt.

Install software
(on Ubuntu/Debian-based systems):
* sudo apt install <package_name>: Installs a program.
* Example: sudo apt install git installs Git or sudo yum install git. please refer to this https://software-engineer.thirdygayares.com/package-manager-in-linux

To check storage usage and available space in Linux, you can use the following command:
* df -h: Displays disk space usage in a human-readable format (GB, MB, etc.).
Example:





