Logo
  • Ubuntu
  • CentOS
  • Debian
  • Fedora
  • RedHat

An Easy Way to Hide Files and Directories in Linux - DesignLinux

Nov 14 2022
designlinux 0 Comments

Do you occasionally share your Linux desktop machine with family members, friends, or perhaps with colleagues at your workplace, then you have a reason to hide certain private files as well as folders or directories. The question is how can you hide files in linux?

In this tutorial, we will explain an easy and effective way to hide files and directories and view hidden files/directories in Linux from the terminal and GUI.

As we’ll see below, hiding files and directories in Linux is so simple.

How to Hide Files in Linux

To hide a file or directory from the terminal, simply append a dot . at the start of its name as follows using the mv command.

$ ls
$ mv sync.ffs_db .sync.ffs_db
$ ls
Hide File in Linux Terminal
Hide File in Linux Terminal

Using the GUI method, the same idea applies here, just rename the file by adding a . at the start of its name as shown below.

Hide File in Linux Using File Manager
Hide File in Linux Using File Manager

Once you have renamed it, the file will still be seen, move out of the directory and open it again, it will be hidden thereafter.

How to Hide Directories/Folders in Linux

To hide a directory or folder, you can use the same mv command and append the . at the start of the directory name (here directory name is my_imp_dir) as shown.

$ mv my_imp_dir .my_imp_dir
$ ls -l  
Hide Directory in Linux
Hide Directory in Linux

To unhide a directory, remove the . at the beginning of the directory name with the mv command as shown.

$ mv .my_imp_dir my_imp_dir
$ ls -l 
Unhide Directory in Linux
Unhide Directory in Linux

How to View Hidden Files and Directories in Linux

To view hidden files, run the ls command with the -a flag which enables viewing of all files in a directory or -al flag for a long listing of files.

$ ls -a
OR
$ ls -al
View Hidden Files in Linux Terminal
View Hidden Files in Linux Terminal
View Hidden Directory in Linux
View Hidden Directory in Linux

From a GUI file manager, go to View and check the option Show Hidden Files to view hidden files or directories.

View Hidden File Using File Manager
View Hidden File Using File Manager

How to Compress Files and Directories with Password in Linux

In order to add a little security to your hidden files and directories, you can compress them with a password and then hide them from a GUI file manager as follows.

Select the file or directory and right-click on it, then choose Compress or Create Archive from the menu list, set the zip compression preferences, and click on “Other options” to get the password option as shown in the screenshot below.

Once you have set the password, click on Create.

Compress Files with Password in Linux
Compress Files with Password in Linux

From now on, each time anyone wants to open the file, they’ll be asked to provide the password created above.

Enter Password to View Files
Enter Password to View Files

You can also compress and password-protect files and directories using the zip command.

$ zip -re my_imp_files.zip files1.txt files2.txt files3.txt
$ zip -re my_imp_dir.zip my_imp_dir
Compress and Password Protect Directory in Linux
Compress and Password Protect Directory in Linux

[ You might also like: Tools to Encrypt/Decrypt and Password Protect Files in Linux ]

That’s it for now! In this tutorial, we described how to easily and effectively hide files and directories and view hidden files/directories in Linux from the terminal and GUI file manager. Make use of the feedback form below to share any thoughts with us.

Related

Tags: Linux Tricks

How to Set or Change Timezone on Debian 11

Prev Post

How to Synchronize Time with Chrony NTP in Linux

Next Post
Archives
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • July 2022
  • June 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
Categories
  • AlmaLinux
  • Android
  • Ansible
  • Apache
  • Arch Linux
  • AWS
  • Backups
  • Bash Shell
  • Bodhi Linux
  • CentOS
  • CentOS Stream
  • Chef
  • Cloud Software
  • CMS
  • Commandline Tools
  • Control Panels
  • CouchDB
  • Data Recovery Tools
  • Databases
  • Debian
  • Deepin Linux
  • Desktops
  • Development Tools
  • Docker
  • Download Managers
  • Drupal
  • Editors
  • Elementary OS
  • Encryption Tools
  • Fedora
  • Firewalls
  • FreeBSD
  • FTP
  • GIMP
  • Git
  • Hadoop
  • HAProxy
  • Java
  • Jenkins
  • Joomla
  • Kali Linux
  • KDE
  • Kubernetes
  • KVM
  • Laravel
  • Let's Encrypt
  • LFCA
  • Linux Certifications
  • Linux Commands
  • Linux Desktop
  • Linux Distros
  • Linux IDE
  • Linux Mint
  • Linux Talks
  • Lubuntu
  • LXC
  • Mail Server
  • Manjaro
  • MariaDB
  • MongoDB
  • Monitoring Tools
  • MySQL
  • Network
  • Networking Commands
  • NFS
  • Nginx
  • Nodejs
  • NTP
  • Open Source
  • OpenSUSE
  • Oracle Linux
  • Package Managers
  • Pentoo
  • PHP
  • Podman
  • Postfix Mail Server
  • PostgreSQL
  • Python
  • Questions
  • RedHat
  • Redis Server
  • Rocky Linux
  • Security
  • Shell Scripting
  • SQLite
  • SSH
  • Storage
  • Suse
  • Terminals
  • Text Editors
  • Top Tools
  • Torrent Clients
  • Tutorial
  • Ubuntu
  • Udemy Courses
  • Uncategorized
  • VirtualBox
  • Virtualization
  • VMware
  • VPN
  • VSCode Editor
  • Web Browsers
  • Web Design
  • Web Hosting
  • Web Servers
  • Webmin
  • Windows
  • Windows Subsystem
  • WordPress
  • Zabbix
  • Zentyal
  • Zorin OS
Visits
  • 1
  • 536
  • 653,084

DesignLinux.com © All rights reserved

Go to mobile version