Linux show hide file

This post and this website contains affiliate links. See my disclosure about affiliate links.

how to show or display hidden files in linux

In Linux, as you should already know, there is the concept of hidden files and hidden folders. It is not exactly hidden in the literal sense, but all that means is that the file managers and file system utilities will not display these types of files (or folders) by default.

  • These files are usually a mechanism to store user preference or system files that are not modified by user regularly.
  • They are also used by different utilities to store configuration and state of the programs. As these files are not actively used by user on a normal day-to-day basis, it makes sense to hide them in most cases.
  • It also allows the file manager utilities to prevent cluttering up the user interface and provide a soft division between user files and user specific configuration files.

Any file or folder whose name start with a dot (.) is a hidden file, also known as dot file. These files will not be displayed by default when listing the contents of a folder. These files can be referenced just as any file, by using the name of the file (including the dot).

We will see how you can view these files using the most popular directory listing commands and file managers.

ls command

The ls command is probably the most used command line utility and it lists the contents of the specified directory. In order to display all files, including the hidden files in the folder, use the -a or –all option with ls.

This will display all the files, including the two implied folders: . (current directory) and .. (parent folder). If you want to omit the display of these two folders, then use the -A or –almost-all option.

This is quite useful, if you are using the output of the command as input to some other script. You probably do not the script to loop in the current folder (depending on the script).

If you want to display only the hidden files, then you will need to specify a regular expression with the ls command., the following will display just the hidden file and folders.

The -d option is to ensure that the directory contents are not printed out for each directory in the list.

Читайте также:  Linux debian настройка iptables

dir command

Another popular command used to display directory contents is dir. Almost all options for dir is the same as ls, which means everything that was shown for ls in the previous section will work for dir as well.

will display all files, hidden files and the implied folders (. and ..).

will display all files, folders including the hidden folders but excluding both . and ..

will display just the hidden files and hidden folders.

KDE File Manager (dolphin)

The default file manager in KDE is Dolphin. The default setting in Dolphin is not to display hidden or dot files. There are couple of different ways you can enable the option here.

The easiest is probably the keyboard shortcut Alt+. (Alt and dot). You can easily enable the display and disable it again using the same shortcut.

The other option is using the menu option. Click on the Hamburger icon on the menu bar (for Settings/Configuration). In the drop down menu, you will see the option named Show Hidden Files. Click and select it on it to enable the display of hidden files.

hidden files settings in dolphin

You can leave that option selected, if you want to always display the hidden files. The other commonly used file manager is Konqueror, which uses embedded dolphin to display the file system, as well.

Gnome File Manager (files or nautilus)

The default file manager in Gnome on most distros is Gnome Files. It was formerly known as Nautilus. The keyboard shortcut to display hidden files in Nautilus is Ctrl+H. This shortcut can be used to toggle the display of dot files.

The other option is to change it in the configuration. Open Edit -> Preferences and navigate to the Views tab. Select the option Shown hidden and backup files. In modern or latest versions, this option is in Files -> Preferences menu.

hidden files in Gnome files

Xfce File Manager (thunar)

Xfce is a popular light weight desktop environment, and the default file manager is thunar. The keyboard shortcut is display hidden files is again Ctrl+H just as with Gnome File Manager.

You can find the option with in the menu as well, as with other file managers. Click on View in the menu bar, and select Show Hidden Files option.

hidden files in thunar

Midnight Commander

Midnight Commander is a command line based file manager which has a loyal following. The keyboard shortcut to display dot files here is Alt + . (Alt-Period).

There is also a configuration setting with in Panel Options. Open Options from the menu and then Panel Options. Select the option Show Hidden Files.

midnight commander files options

No matter which file manager you are using, there should be an option to display hidden files. Most times, it is disabled by default and as it should be. You can try first by right clicking and checking the context menu. The next place to check is either the Settings or Preferences dialog which is often in the Edit or View menu.

Читайте также:  Linux web сервер готовый

As the last resort, read the manual.

Источник

How to Show Hidden Files in Linux

Linux, by default, hides many of the sensitive system files. Hidden files are usually system or application files, concealed to prevent accidental changes.

This guide will show you how to display and work with hidden files in Linux.

 How to View & Hide Files and Directories in Linux

Note: Some directories require administrator, root, or sudo privileges to access. Depending on the files you want to access, you may need to switch users or use the sudo command.

How to Show Hidden Files

Show Hidden Files From the Command Line

To display all the files in a directory, including hidden files, enter the following command:

The ls command lists the contents of the current directory. The –a switch lists all files – including hidden files.

example of using the ls command to display hidden files in Linux

To list regular and hidden files in a different directory than your current working location:

Replace /etc with any other directory.

Show Hidden Files in a Graphical Interface (GUI)

There’s a simple method to show hidden files if you’re more comfortable working in Gnome (or any other graphical interface).

1. First, browse to the directory you want to view.

2. Then, press Ctrl+h .

If Ctrl+h doesn’t work, click the View menu, then check the box to Show hidden files.

Note: Ctrl+h works in newer Ubuntu and CentOS environments. If you’re running an older or different version, it may not work.

How to Hide Files

Hide File or Directory Using the Linux Command Line

To mark a file as hidden, use the mv (move) command.

1. First, create a test file. Use the touch command to create an empty test.txt file:

create a test file

2. Then, hide the file by moving it under a new filename. The period (.) at the beginning of the new filename indicates that it’s hidden:

3. To verify the file is now hidden, display the contents of the current directory:

4. Now, list the contents, including hidden files:

You should see test.txt in the second listing.

listing contents to view hidden linux file

Note: The process is entirely the same for directories. Use the mv command with a period (.) at the beginning of the new directory name.

Hide a File in a Graphical Interface (GUI)

You can also mark a file as hidden using a graphical interface.

1. Right-click the file you want to hide.

2. Then, select Rename.

3. Make the file hidden by placing a period at the beginning of the filename.

How to hide a file in Linux.

Use the same process to hide a directory.

How to Create Password-Protected Hidden Files

Create Password-Protected, Hidden File From the Command Line

1. To create a hidden and password-protected archive file from the command line, start by creating a new text file:

2. Next, compress and encrypt that file:

zip ––encrypt test2.zip test2.txt

3. You’ll be asked to enter and confirm a password for the file.

4. Then, use the ls command – you should see test2.zip in the file list.

Encrypt a file in Linux.

5. Next, set the .zip file to hidden by entering:

6. Finally, use ls and ls –a to confirm and verify the file is hidden.

Show hidden files in Linux.

Create a Hidden, Password-Protected File From the Graphical Interface

Encrypting a file requires more steps in the graphical version of Linux.

Читайте также:  Rsa key generator linux

1. Start by opening the File Manager to your home directory.

2. Right-click an empty area, then click New Folder (a folder and a directory are the same things).

3. Name the folder test3 and click Create.

4. Next, click Activities > Search > type archive manager > launch the Archive Manager.

5. Drag and drop the new test3 folder into the Archive Manager window.

Moving a file to linux archive manager

6. The system will ask: Do you want to create an archive with these files? Click Create Archive.

7. In the Create Archive dialog box, the filename should be test3. Just to the right, click the drop-down and select the .zip format.

zip archive file

8. Click Other options near the bottom. Type a password to use for your archive, then click Save.

9. Close the Archive Manager. You should now see a test3.zip file in the home directory.

a Linux zip file

10. Right-click the test3.zip file, click Rename, and add a period at the beginning of the filename.

Hide a password protected file.

You should now be able to show and hide hidden files in Linux. These commands can be especially useful if you need to find configuration files.

Also, you can find web browser data, certain application caches, and logs stored in hidden files.

Источник

How to show hidden folders in File Manager (Nautilus) on Ubuntu?

How do you show a hidden folder (whose name starts with . ) in File Manager a.k.a. Nautilus on Ubuntu? I am somewhat new to Ubuntu and can’t seem to find the «view» menu.

Ctrl+H will work in Nautilus, Nemo, Thunar etc, but for Dolphin (KDE’s file manager), it may be Alt+. or similar.

6 Answers 6

Ubuntu 17.10 and earlier

Go to the top menu -->View->Show hidden files: 

enter image description here

For permanently showing hidden files, you can go to the Edit>Preferences menu item as shown below:

preferences

With the terminal you should:

Ubuntu 18.04 and newer

The accepted answer is correct for older versions of Ubuntu.

For newer versions, the image displayed below works

In the top right corner of file explorer, there is a menu button displayed as 3 stacked line (hamburger menu), clicking on that will open a modal, on that there is an option Show hidden files

Image 1

Ubuntu 20.04/ 21.04/ 21.10

Using the Nautilus option Show hidden files will only resolve the issue temporarily, but there are ways to set this as the default option.

Terminal

There is a nice one-liner to do this:

gsettings set org.gnome.nautilus.preferences show-hidden-files true 

The settings will take effect immediately (even for currently running instances).

with GUI

As posted above you may install dconf-editor

sudo apt install dconf-editor 

Then search for show-hidden and activate the option org.gnome.nautilus.preferences .

As you can see in the following screenshot the «same» option also exists for other applications such as the Gtk FileChooser, so make sure you activate the setting where you need it. dconf-editor will also show you the key to use for each setting in case you want to set it using gsettings as outlined in the first section of this post.

Источник

Оцените статью
Adblock
detector