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 > Free Laravel, PHP, WordPress & Server Tutorials > 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
Laravel Eloquent ORM — a model class mapping to a database table with query methods
Laravel Eloquent ORM: The Complete Guide to Querying Your Database
June 16, 2026
Set vi as the default editor in Ubuntu — a terminal opening the vim editor
How to Set vi (Vim) as the Default Editor in Ubuntu
June 8, 2026
rsync says ALL DONE but files are missing — a terminal showing ALL DONE next to an empty folder
rsync Says “ALL DONE” but Files Are Missing: How to Verify
June 8, 2026
Migrate a website to a new server with rsync — files copying from an old server to a new one over SSH
How to Migrate a Website to a New Server With rsync
June 8, 2026
Bun runtime — faster JS toolkit replacing npm in Laravel projects
How to Install Bun Runtime on Ubuntu (And Use It in a Laravel Project)
May 24, 2026

You Might Also Like

Laravel .htaccess exclude .well-known for Let's Encrypt ACME challenge
Server Management

How to Exclude .well-known from Redirection for Let’s Encrypt in Laravel

8 Min Read
Harden a fresh Ubuntu VPS with UFW, Fail2Ban, and SSH key auth
Server Management

How to Harden a Fresh Ubuntu VPS: UFW + Fail2Ban + SSH Key Auth

13 Min Read
Nginx as a reverse proxy for a Node.js app on Ubuntu
Server Management

How to Set Up Nginx as a Reverse Proxy for Node.js on Ubuntu

11 Min Read
Enable CageFS for a user on CloudLinux — cagefsctl CLI and CloudLinux Manager
Server Management

How to Enable CageFS for a User on CloudLinux / cPanel

5 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?