How to hide a file or folder in ubuntu 22. 04

How to Hide a File or Folder in Ubuntu 22.04

Privacy is a main concern of every system user and everyone want to keep their personal files and folders hidden from other users’ eye. As an Ubuntu user, you may be wondering how you can hide your files and folders from other system users. To accomplish this task, Ubuntu provides both command-line tools and GUI methods, which we will cover in this article.

How to Hide a File or Folder in Ubuntu 22.04

There are two ways to hide a file and folder in Ubuntu 22.04:

Method 1: Hide a File or Folder in Ubuntu Through Command Line

Sponsored

Open the terminal and go to the directory where you want to hide files. In Ubuntu, all the hidden files and folders have the prefix (. dot) before their name. Following is the syntax command for hiding the file in Ubuntu:

mv <filename> .<filename>

 
The mv command will rename the file and hide it. In the below mentioned example, I am hiding an infofile:

See also  How to Change the Autofill Settings in Google Chrome
mv infofile .infofile

 
How to hide a file or folder in ubuntu 22. 04 1
Execute the ls command, you will observe that the hidden file is no longer available:

How to hide a file or folder in ubuntu 22. 04 2
Similarly, you can hide the folder in Ubuntu by adding the (.dot) in the start of the name of the folder.

mv <directory_name> .<directory_name>

 
In the below given example, I have hidden the directory “samplefolder” present in the Documents through the following command:

mv <samplefolder> .samplefolder

 
How to hide a file or folder in ubuntu 22. 04 3
Use the ls command to confirm whether the folder is hidden or not:

How to hide a file or folder in ubuntu 22. 04 4

Sponsored

Method 2: Hide a File or Folder in Ubuntu Through GUI

File manager allows the Ubuntu users to hide a file. When the file is hidden, it is not displayed by the file manager but it is present there. To hide a file, right-click on the file and choose Rename:

How to hide a file or folder in ubuntu 22. 04 5
Put the dot at the start of the name of the file to make it hidden:

How to hide a file or folder in ubuntu 22. 04 6

How to Display a Hidden File or Folder in Ubuntu 22.04

If you want to see all the hidden files and folders, go to that directory, and click on the three lines present at the top. A menu will display on your screen, choose Show Hidden Files.

How to hide a file or folder in ubuntu 22. 04 7
After ticking the option, the hidden files and folders will appear:

How to hide a file or folder in ubuntu 22. 04 8
You can also use the keyboard shortcut Alt + H to display the hidden files. The other way to display hidden files and folder is through the command line. To show hidden files via the terminal, execute the following command:

ls -a

 
How to hide a file or folder in ubuntu 22. 04 9
Using –a option with ls command will display the hidden files as shown in the above image.

Bottom Line

Knowing how to hide a file or folder in Ubuntu will secure your data. To create a hidden file or folder in Ubuntu just add the dot “.” at the start of the name of the file or directory. In this guide, we have explained how to easily hide a file or folder in Ubuntu through GUI and terminal. We have also discussed the command ls -a or a keyboard shortcut Alt + H to display hidden files.

See also  How To Install Zlib on Ubuntu 22.04


Discover more from Ubuntu-Server.com

Subscribe to get the latest posts sent to your email.

Comments

No comments yet. Why don’t you start the discussion?

    Leave a Reply