How7o
  • Home
  • Tools
  • Prank Screens
  • Learn
  • Blog
  • Contact
Reading: Create a Directory in Ubuntu (mkdir Command + Examples)
Share
How7oHow7o
Font ResizerAa
  • OS
Search
  • Home
  • Tools
  • Prank Screens
  • Learn
  • Blog
  • Contact
Follow US
© 2024–2026 How7o. All rights reserved.
How7o > Learn > Server Management > Create a Directory in Ubuntu (mkdir Command + Examples)
Server Management

Create a Directory in Ubuntu (mkdir Command + Examples)

how7o
By how7o
Last updated: January 12, 2026
4 Min Read
Create a Directory in Ubuntu
SHARE

I still remember the first time I tried to “organize my files properly” on an Ubuntu server. I SSH’d into my VPS, ran cd projects, and Ubuntu hit me with: No such file or directory. That’s when I realized I hadn’t even created the folder yet.

Contents
  • What command creates a folder in Ubuntu?
  • 1) Create a directory in the current location
  • 2) Create a directory using an absolute path
  • 3) Create nested directories in one command (mkdir -p)
  • 4) Create multiple directories at once
  • 5) Create a directory with spaces in the name
  • 6) Set permissions while creating the directory (mkdir -m)
  • Common mkdir errors (and fixes)
    • “No such file or directory”
    • “Permission denied”
    • “File exists”
  • Outbound + internal links (helps Yoast)
  • Final thoughts

So in this guide I’ll show you exactly how to create a directory in Ubuntu using the terminal—starting from the simplest mkdir command, then moving into the real-life stuff (nested folders, spaces in names, permissions, and common errors).

Tip for Yoast: if you add a featured image and an in-post image, use alt text like “create a directory in Ubuntu using mkdir”.

What command creates a folder in Ubuntu?

The command you want is mkdir (short for “make directory”). Your original post already shows the two most common uses: create in the current folder, or create using a full path. :contentReference[oaicite:1]{index=1}

1) Create a directory in the current location

First, check where you are:

pwd
ls

Now create a folder right here:

mkdir my_folder

Confirm it exists:

ls

2) Create a directory using an absolute path

If you want to create the directory somewhere else, use the full path (this is the example from your original post): :contentReference[oaicite:2]{index=2}

mkdir /home/user/Documents/my_folder

This works as long as the parent folder already exists and you have permission to write there.

3) Create nested directories in one command (mkdir -p)

This is the option I use the most in real projects. The -p flag creates missing parent directories automatically and won’t error if the directory already exists. :contentReference[oaicite:3]{index=3}

mkdir -p ~/projects/how7o/wordpress/posts

Without -p, Ubuntu will fail if ~/projects/how7o doesn’t exist yet.

4) Create multiple directories at once

You can create several folders in one go by listing them:

mkdir images backups logs

If you want a nice structure in one command, brace expansion is a time-saver (example format): :contentReference[oaicite:4]{index=4}

mkdir -p project/{src,public,logs,backups}

5) Create a directory with spaces in the name

Spaces are fine, but you must quote the name (or escape spaces) or Ubuntu will treat them as separate folders.

mkdir "My New Folder"

6) Set permissions while creating the directory (mkdir -m)

If you want to create a folder with specific permissions, use -m (mode). :contentReference[oaicite:5]{index=5}

# example: owner can read/write/execute, group and others can read/execute
mkdir -m 755 my_secure_folder

If you’re not sure what 755 means, think: owner full access, everyone else read/execute.

Common mkdir errors (and fixes)

“No such file or directory”

You’re trying to create a folder inside a path that doesn’t exist yet. Fix: use -p.

mkdir -p /some/missing/path/newfolder

“Permission denied”

You don’t have permission to write in that parent directory. Either create it somewhere you own (like ~/), or use sudo only when it makes sense:

sudo mkdir /opt/myapp

“File exists”

The folder already exists. If you want “no error”, use mkdir -p.

Outbound + internal links (helps Yoast)

  • GNU Coreutils: mkdir documentation
  • Ubuntu manpage: mkdir
  • Automatic logout timeout in Ubuntu terminal
  • Change welcome message on Ubuntu VPS

Final thoughts

Once you learn mkdir, you start using it everywhere—projects, backups, logs, scripts, deployments. If you remember just one thing, make it this: use mkdir -p for nested paths. It prevents the most common beginner error and makes your commands repeatable.

TAGGED:BeginnersCommand LineFile SystemLinuxmkdirSSHterminalUbuntuvps

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Previous Article Update Ubuntu to the latest kernel version Update Ubuntu to the Latest Kernel Version (Safe Server Steps)
Next Article Automatic logout timeout for command line in Ubuntu (TMOUT 300s) Automatic Logout Timeout for Command Line in Ubuntu (TMOUT 300s)
Leave a Comment

Leave a Reply Cancel reply

You must be logged in to post a comment.

FacebookLike
XFollow
PinterestPin
InstagramFollow
Most Popular
Display PHP errors — ini_set + php.ini configuration
How to Display PHP Errors
May 10, 2026
PHP convert string to uppercase — strtoupper and mb_strtoupper
How to Convert a String to Uppercase in PHP
May 10, 2026
PHP string to float conversion with cast, regex cleanup, NumberFormatter
How to Convert a String to Float in PHP
May 10, 2026
PHP merge arrays without duplicates — union operator and array_unique
How to Combine Two Arrays Without Duplicates in PHP
May 10, 2026
PHP delete array element — unset, array_splice, array_filter, array_search
How to Delete an Element from a PHP Array
May 10, 2026

You Might Also Like

Check if Laravel scheduler is running (cron + php artisan schedule:run)
Web Development

How to Check if Laravel Scheduler Is Running (Cron + Logs)

6 Min Read
Installing Docker on AlmaLinux guide
Server Management

Install Docker on AlmaLinux: Step-by-Step (Docker CE + Compose)

4 Min Read
Automatic logout timeout for command line in Ubuntu (TMOUT 300s)
Server Management

Automatic Logout Timeout for Command Line in Ubuntu (TMOUT 300s)

5 Min Read
CyberPanel too many redirects Laravel error fixed by restarting LiteSpeed
Server Management

Fix CyberPanel Too Many Redirects (ERR_TOO_MANY_REDIRECTS) for Laravel Subdomain

7 Min Read
How7o

We provide tips, tricks, and advice for improving websites and doing better search.

Tools

  • Age Calculator
  • Word Counter
  • Image Upscaler
  • Password Generator
  • QR Code Generator
  • See all tools→

Pranks

  • Fake Blue Screen Prank
  • Hacker Typer
  • Fake iMessage Generator
  • Windows XP Crash Prank
  • Windows 11 Update Prank
  • See all prank screens →

Company

  • About Us
  • Blog
  • Contact
  • Privacy Policy
  • Terms of Service
  • Sitemap
© 2024–2026 How7o. All rights reserved.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?