TL;DR
To work with hidden files in Linux, you should know the following:
- List All Files, Including Hidden Ones: Use the command
ls -a
to list all files, including hidden ones, in the current directory. - Display Only Hidden Files: Execute
ls -d .?*
in a specific directory to display only hidden files starting with a dot (.), excluding the current and parent directories. - Open Hidden Files with Text Editors: Use a text editor command like
nano
orvim
followed by the file’s path to open, view, and edit hidden files. - Enable Hidden File Visibility in File Managers: Access the file manager’s settings and enable the option to Show Hidden Files.
Besides these solutions, there are other operations that you can perform on these hidden files. Some of them include renaming and moving hidden files using the mv
command, deleting hidden files using rm
, managing hidden files in the file explorer, searching for hidden files with the find
command, hiding files by adding a dot (.) at the beginning of the name, and encrypting important hidden files for enhanced security.
Read the guide below to learn various aspects of working with hidden files in Linux, providing different ways to manage, access, and protect them.
Hidden files play a crucial role in Linux systems, offering a way to store sensitive data or configuration settings that should not be easily accessible. However, working with hidden files can be a bit challenging for Linux users, especially for those who are new to the command line interface (CLI) or unfamiliar with the graphical user interfaces (GUI) of Linux. In this article, I will discuss the seven best ways to effectively work with hidden files in Linux, providing you with the knowledge and techniques to navigate, edit, and manage them easily.
How to Work with Hidden Files in Linux
To work with hidden files in Linux, use ls -a
to list all files (including hidden ones), ls -d .?*
to display only hidden files, and text editors like nano
or vim
to open and edit hidden files. Or you can enable hidden file visibility in the Linux file managers through its settings. These methods allow you to efficiently handle hidden files in Linux using CLI and GUI file managers. For a better understanding of these methods, letโs explore all of them here:
1. List All Files Along the Hidden Ones
To list all files, including hidden files, in the current directory, use the ls
command with the -a
flag to display files with a dot (.) at the beginning of their names. Hereโs the step-by-step guide to do this:
- Head to the command-line interface (CLI) via the Dash menu.

- Then, run the command below to list all files, including hidden files.
ls -a
- This command will display all files in the current directory, including those with a dot (.) at the beginning of their names, which denotes hidden files in Linux.

2. Display Only the Hidden Files
This method displays only hidden files starting with a dot (.), excluding the parent directories by executing the ls
command with the pattern ls -d .?*
in a specific directory. It is helpful when you want to focus specifically on hidden files in a particular directory. Follow the steps below to use this method:
- Launch the Terminal window on your Linux machine using the Application menu.

- To display hidden files in a specific directory, use the
cd
command to navigate to that particular directory. For example, if you want to go to the Documents directory, you can run the following command:
cd Documents
- Then, execute the following command to display only hidden files in the current directory.
ls -d .?*
- This command will list files starting with a dot (.), excluding the parent directory (..).

3. Open Hidden Files with Text Editors
With this method, you can open, view, and edit any hidden file in the specified directory using a text editor. It can be Vim, Nano, or even Gedit. This is often helpful when you have to configure preference settings. Hereโs how this method works:
- In the Terminal window, use a text editor command like
nano
,vim
, orgedit
, followed by the file’s path, to open a hidden file.
text_editor file_path
- Replace text_editor with your preferred text editor and file_path with the path to the hidden file. Just like I did here:
nano ~/.myhiddenfile
- Once you execute the command, the specified hidden file will open in the text editor:

- Now, you can edit the file or leave it unchanged. Then, close it using the appropriate keys based on your text editor. In my case, I used Ctrl + O to save and Ctrl + X to close the Nano editor.

4. View Hidden Files Using Linux File Managers
This method enables the visibility of hidden files in Linux file managers like Nautilus or Dolphin. By accessing the file manager’s settings and enabling the option to show hidden files, you can easily navigate through directories and access hidden files in a graphical and user-friendly manner. Hereโs how to do it:
- Open your preferred Linux file manager (e.g., Nautilus, Dolphin).

- Navigate to the toolbar at the top and click on the three horizontal lines. Then, tick the box of Show Hidden Files in the dropdown menu.

- Once you click the hidden files option, youโll see all the files in the current directory, including the hidden ones. Now, you can easily navigate through directories as you normally would to access hidden files.

6 Advanced Techniques To Know When Working with Hidden Files in Linux
Besides the basic operations, you can also rename, move, search, and delete hidden files in Linux. Moreover, you can hide and encrypt important hidden files using tools like GPG or VeraCrypt. Hereโs the breakdown of each method:
1. Rename and Move Hidden Files
With the mv
command, you can rename or move the hidden files in Linux. That is, you can use the syntax mv current_name new_name
to modify the name of the file, or mv file_path destination_directory
for relocating the hidden file in Linux. It helps in organizing and managing hidden files. Hereโs the step-by-step guide to do it:
- First, run the
ls -a
command to view the hidden files in the directory:

- To rename a hidden file โ.myhiddenfileโ, use the
mv
command:
mv current_name new_name
- Replace current_name with the current name of the hidden file, new_name with the desired new name.

- Now, run the
ls -a
command to view the renamed hidden files in the directory:

- To move a hidden file to a different directory, you can execute:
mv file_path destination_directory
- Replace the file_path with the path to the hidden file, and destination_directory with the path to the destination directory.

- Now, use the
cd
command to navigate to the folder where you have moved the file.

- Then, run the
ls -a
command to view the moved file in the folder.

2. Delete Hidden Files
This method involves using the rm command to delete a hidden file. By specifying the path to the hidden file, you can permanently remove it from the specified directory. However, you have to be carefil when using this method, as hidden files may contain important data or configuration settings.
- In the Linux command line, use
cd
to navigate to the directory.

- Then, run the
ls -a
command to view the hidden files in this folder.

- After that, use the
rm
command to delete a hidden file:
rm ~/.filename
- Run the
ls -a
command. However, you wonโt see the deleted file in the specified directory as you have removed it using therm
command.

However, you should be careful when deleting hidden files, as they may contain important data or configuration settings.
3. Manage Hidden Files in File Explorer
Once the hidden files in Linux are visible using the file manager’s settings, it let you directly manage hidden files within the file explorer interface. You can quickly right-click on any hidden file and access various options like renaming, moving, deleting, and more. This method provides a convenient and visual way to handle hidden files with familiar context menus.
- Once you enable the hidden file visibility from the File Managerโs settings, locate the desired hidden file in window explorer.

- Then, right-click on a hidden file to access various options such as renaming, moving, deleting, or more.

- In case you select to delete the file or move it to trash for any reason and later want that particular hidden file back, then you can easily get it restored via the Trash folder.

4. Search for Hidden Files
You can use the find
command with appropriate options to search for hidden files in Linux Terminal. This method makes it easier to locate specific hidden files based on criteria such as file type or name. Follow the steps below to use this method to search for hidden files on your Linux machine:
- To search for all hidden files in your home directory, run the following command in the Terminal window:
find ~ -type f -name ".*"
- This command will scan the specified directory (in this case, the home directory) and display a list of hidden files, including their paths, that match the given criteria.

- To help you understand the output of this command, hereโs the breakdown:
find
: The command used to search for files and directories.~
: Represents the home directory.-type f
: Specifies that only regular files should be included in the search (excluding directories).-name ".*"
: Sets the search pattern to match hidden files, as their names start with a dot (.) in Unix-like systems.
5. Hide Files and Directories
To hide files or directories in Linux, you can rename them by adding a dot (.) at the beginning of their names. Hereโs how this method works:
- Locate the file or directory you want to hide.

- Then, right-click on the file and click the Rename from the context menu.

- Adding a dot (.) at the beginning of the file name. Then, click the Rename button.

- Now, this file has become a hidden file as its name starts with a dot.

6. Encrypt and Secure Hidden Files
This method involves encrypting important hidden files in Linux using tools like GPG (GNU Privacy Guard) or VeraCrypt. Encryption adds an extra layer of security to protect sensitive information within hidden files. Hereโs how you can easily encrypt your important hidden files in Linux:
- Update your package repository with the command below to ensure you have the latest package information before installing any software.
sudo apt update && sudo apt upgrade
- Type y and press Enter to continue with the update installation.

- Install and set up an encryption tool like GPG or VeraCrypt on your Linux machine. In my case, I executed the following command:
sudo apt install gnupg
- If this tool is already installed on your machine, itโll display the following output:

- Next, run the
ls -a
command to list all the files in the current directory, including the hidden ones. Then, identify the hidden files that you want to encrypt.

- Use the encryption tool’s commands to encrypt the hidden files. For example, with GPG, you can run the following command to encrypt a file:
gpg --encrypt filename
- Replace the filename with the actual name of the hidden file that you want to encrypt. Make sure that youโve already generated the key using
gpg --gen-key
to make this method work.

- Follow the tool’s instructions to set a strong passphrase or password for accessing the encrypted hidden files.

- When you are done, youโll have the encrypted hidden file in that particular folder.

Remember to keep your passphrase or password secure and confidential.
10 Best Practices When Working with Hidden Files in Linux
By following the best practices when working with hidden files in Linux, you can ensure the effective management, security, and usability of hidden files in your Linux system. Here are the ten best practices to keep in mind when working with hidden files in Linux:
- ๐พ Regularly Back Up Hidden Files and Directories: Include hidden files in your regular backup routine to ensure their safety and recoverability. You can use the command
rsync -a --exclude='.*' source_directory destination_directory
to back up hidden files and directories while excluding other hidden files from the backup. - ๐ Use Descriptive File and Directory Names: Choosing descriptive names for hidden files and directories enhances organization and readability. By opting for meaningful names, such as renaming a hidden directory from .folder2 to .webserver-config and configuration files to web-server.conf and virtual-hosts.conf, you improve file management and create a more organized system.
- ๐ Maintain Consistent File Organization and Structure: Consistent file organization for hidden files and directories improves efficiency. Create a dedicated hidden directory like .hidden-data and categorize files based on purpose (e.g., config for configuration files, scripts for personal scripts). This systematic approach streamlines file management.
- โ ๏ธCreate a Backup Copy When Modifying Hidden Configuration Files: Create a backup copy using the
cp
command before modifying hidden configuration files. Understand the consequences of your changes. Review and carefully modify using a text editor (e.g., Vim, Nano, Gedit, etc.). Test in a safe environment and monitor for issues. Restore the backup copy if needed with themv
command. This helps ensure system stability when working with hidden configuration files. - โ Avoid Deleting Hidden Files Without Understanding Their Purpose: It is important to avoid deleting hidden files without understanding their purpose. Hidden files often contain crucial system or application settings, and deleting them without proper knowledge can result in issues or malfunctions. So, do proper research about the purpose of hidden files in Linux before removing them to ensure the stability and functionality of your system or applications.
- ๐ Implement Proper Permissions and Review Access Controls for Hidden Files: Set appropriate permissions for hidden files to maintain their security and limit access to authorized users. Use the command
chmod
to modify permissions, such aschmod 700 .hiddenfile
to give only the file owner full permissions. Also, regularly audit and review hidden files and their permissions to identify any potential security risks or configuration inconsistencies. Use the commandls -lA
to list hidden files and their permissions in the current directory. - ๐ Stay Updated with Linux Security Patches and Vulnerabilities: Regularly update your Linux distribution to protect against known vulnerabilities that could affect hidden files. Use the command
sudo apt update && sudo apt upgrade
to update your system with the latest security patches. Also, keep yourself updated with the latest Linux best practices and techniques related to hidden files by exploring forums, online resources, and relevant documentation. - ๐ Securely Store and Manage Passwords: If you have hidden files containing sensitive information like passwords, avoid storing them in plain text. Instead, use tools like KeePass or pass, which provide secure password management and encryption features. This ensures the confidentiality and protection of your passwords.
- ๐
Regularly Clean Up Unused Hidden Files: Periodically review and clean up unused hidden files to free up disk space and maintain a clutter-free system. Identify hidden files using
ls -a
that are no longer needed and safely delete them using therm
command. Be careful when deleting hidden files in Linux, and double-check when you’re removing them to avoid accidental deletion of important data. - ๐ Document and Maintain Hidden File Changes: Keeping track of changes made to hidden files is important for troubleshooting and maintaining system configurations. Maintain a documentation or version control system where you can record modifications, additions, and removals of hidden files. This helps in tracking changes, reverting to previous configurations if needed, and ensuring consistency across different systems or environments.
To Sum Up
Working with hidden files in Linux may require a combination of command-line skills and familiarity with GUI tools. By following the four best ways and six advanced techniques outlined in this article, you can effectively navigate, edit, and manage hidden files in Linux. Remember to implement the best practices and be careful when working with hidden files to ensure the stability and security of your Linux system.
To further enhance your Linux file management expertise, check out my articles on file permissions, file decompression, and file pattern searching using the grep command. These resources will deepen your understanding of the Linux command line and its file systems. So, enhance your proficiency in managing hidden files in Linux now!
Frequently Asked Questions
How can I restore visibility to hidden files in Linux?
To restore visibility to hidden files in Linux, you can enable the option to show hidden files in your file manager’s settings or use the ls -a
command in the command line interface. That is, in most graphical Linux file managers, there is usually a setting or option to display hidden files. Once enabled, hidden files will be visible alongside other files in the file manager. Similarly, when using the command line interface, the ls -a
command lists all files, including hidden files, in the current directory.
Are hidden files and folders the same in Linux?
Yes, hidden files and folders are treated similarly in Linux. They are denoted by a dot (.) at the beginning of their names. In Linux, any file or directory whose name begins with a dot is considered hidden. This naming convention helps to differentiate hidden files and folders from regular ones and serves as a visual cue that they are not typically displayed by default in file managers.
Can hidden files impact system performance?
Hidden files themselves do not directly impact system performance. However, it’s worth noting that hidden files can contain large amounts of data or be associated with resource-intensive processes, just like regular files. If a hidden file consumes a significant amount of system resources or is involved in continuous read/write operations, it can indirectly affect system performance. It’s essential to monitor resource usage and identify any specific hidden files that may be causing performance issues.
Are hidden files recoverable if accidentally deleted?
Hidden files can be recovered if accidentally deleted, provided they have not been overwritten by new data. When a file is deleted in Linux, its entry in the file system’s directory is removed, but the actual data remains on the disk until it gets overwritten by new data. To recover accidentally deleted hidden files, you can use file recovery tools (TestDisk, PhotoRec, Scalpel, etc.) specifically designed for Linux systems. These tools scan the disk for recoverable data and can often restore deleted files, including hidden ones, as long as the data has not been overwritten.
How do I change permissions on hidden files?
To change permissions on hidden files in Linux, use the chmod
command with permission codes or symbolic notation. For example, chmod 644 .hiddenfile
sets read and write permissions for the owner and read-only permissions for others. Symbolically, chmod u+rw,go+r .hiddenfile
achieves the same result.