How To Use Ubuntu

How To Use Ubuntu

Reading time1 min
#Linux#Ubuntu#OpenSource#CommandLine#Bash#Sysadmin

Mastering Ubuntu Command Line for Efficient System Management

Forget the GUI crutches—dive into Ubuntu's command line to unlock speed, precision, and automation that will transform how you manage your systems. The command line interface (CLI) in Ubuntu is a powerhouse, offering unmatched control, flexibility, and efficiency far beyond what most graphical interfaces provide. If you’re an IT professional or an enthusiast eager to boost your productivity and problem-solving skills, mastering Ubuntu’s command line is an essential step.

In this post, we’ll explore practical tips, commands, and workflows to help you gain confidence and efficiency when managing Ubuntu systems through the terminal.


Why Use the Command Line in Ubuntu?

Graphical tools are sometimes easier for beginners but lack the precision and speed of command line operations. The CLI allows you to:

  • Automate repetitive tasks with scripts.
  • Manage remote servers over SSH.
  • Quickly inspect system status and logs.
  • Install, update, and remove software efficiently.
  • Troubleshoot problems with granular control.

Getting Started with the Terminal

Open your terminal in Ubuntu by pressing Ctrl + Alt + T or searching for Terminal in your applications menu.

Basic Navigation Commands

Understanding how to move around your file system is foundational.

  • pwd — Print Working Directory
    See where you currently are:
    pwd
    
  • ls — List Directory Contents
    List files in the current directory (add -l for details):
    ls -l
    
  • cd — Change Directory
    Move around directories:
    cd /var/log
    cd ..        # Up one directory
    cd ~         # Home directory
    

Essential File Management Commands

Managing files via command line dramatically speeds up workflows.

  • Create files:
    touch example.txt
    
  • Create directories:
    mkdir my_folder
    
  • Copy files/directories:
    cp example.txt /tmp/
    cp -r my_folder /tmp/
    
  • Move or rename files/directories:
    mv example.txt example_old.txt
    
  • Remove files/directories (be cautious!):
    rm example_old.txt
    rm -r my_folder
    

Managing Software Packages with apt

Ubuntu uses the Advanced Package Tool (apt) to install and manage software. The command line offers a faster way to handle packages than GUI tools like Software Center.

Update package lists:

sudo apt update

Upgrade all installed packages:

sudo apt upgrade -y

Install new software (e.g., Git):

sudo apt install git -y

Remove software:

sudo apt remove git -y

Search for packages:

apt search nginx

Monitoring System Resources

Quickly diagnose system resource usage without launching bulky GUIs:

View active processes:

top 

or enhanced version:

htop 

(htop needs installing: sudo apt install htop)

Check disk space usage:

df -h 

Check memory usage:

free -h 

Working with Permissions

Linux permissions are key for securing your system. Use these commands to view and change permissions:

View detailed file info including permissions:

ls -l filename.txt 

Change ownership of a file/folder:

sudo chown user:usergroup filename.txt 

Modify file permissions (e.g., make executable):

chmod +x script.sh 

Using SSH for Remote Management

Sometimes you need to manage servers remotely — CLI is unbeatable here.

Connect to remote server via SSH:

ssh username@remote_server_ip_or_domain

Copy files between local and remote machines using scp:

Copy from local to remote:

scp myfile.txt username@remote_server_ip:/home/username/

Copy from remote to local:

scp username@remote_server_ip:/home/username/myfile.txt .

Automate Tasks with Bash Scripts

One major productivity win from mastering the CLI comes from scripting:

Create a simple backup script saved as backup.sh:

#!/bin/bash

# Backup /etc folder to ~/backups/etc_backup_YYYYMMDD.tar.gz

backup_dir=~/backups/
timestamp=$(date +%Y%m%d)
backup_file="${backup_dir}etc_backup_${timestamp}.tar.gz"

mkdir -p $backup_dir

tar -czvf $backup_file /etc

echo "Backup completed: $backup_file"

Make it executable:

chmod +x backup.sh 

Run it anytime with:

./backup.sh 

You can also schedule it via cron jobs.


Troubleshooting Tips Using CLI Tools

Every sysadmin encounters problems. Here are some handy commands:

Check recent system logs:

journalctl -xe 

Check service status (example Apache2):

systemctl status apache2.service 

Restart services as necessary:

sudo systemctl restart apache2.service 

Trace network connectivity issues:

ping google.com 

traceroute google.com     # Install it via: sudo apt install traceroute

netstat -tuln             # View open ports (install net-tools if missing)

Final Words

Mastering Ubuntu’s command line transforms you from a casual user into a power user capable of scripting automation, managing resources quickly, troubleshooting efficiently, and ultimately delivering solutions faster than ever before. While GUIs still have their place, leaning on CLI tools gives you unmatched speed, precision, and scalability.

Start today by opening your terminal and running through these basic commands. Over time, build up more advanced skills such as shell scripting, configuring servers remotely over SSH, or automating complex maintenance tasks — all using the strength of Ubuntu’s powerful command line interface.

Happy terminaling! 🚀