Table of Contents
What a File Manager Does
A file manager is the graphical tool you use to browse folders, open files, copy things to USB drives, and manage your data without using the terminal.
Common tasks you’ll typically do in any file manager:
- Browse folders and see their contents
- Open files with the right application
- Create, rename, move, copy, and delete files/folders
- Search for files
- Work with external drives (USB sticks, external disks)
- Change basic file properties (like permissions, if exposed)
- Access network locations (shared folders, cloud integrations)
On Linux, the exact file manager depends on your desktop environment, but they share similar ideas and shortcuts.
Major Linux File Managers by Desktop
You’ll usually get one file manager installed by default with your desktop environment:
- GNOME: Files (Nautilus)
- KDE Plasma: Dolphin
- XFCE: Thunar
- Others you might meet: Nemo (Cinnamon), Caja (MATE), PCManFM (LXDE/LXQt), etc.
You don’t need to memorize all names, but it helps to recognize that:
- They all show a sidebar with folders and devices
- The main area shows your current folder
- There’s usually a toolbar with navigation buttons and a location bar (path bar or address bar)
Basic Navigation Concepts
Most file managers share these navigation patterns:
- Back / Forward: Move through your history of visited folders
- Up / Parent: Go one level up (to the folder containing the current one)
- Home: Jump to your home folder (
/home/yourname) - Breadcrumbs / Path bar: Click on parts of the path to jump directly to a parent folder (e.g., clicking
Documentsin/home/you/Documents/Work)
You can usually:
- Double-click a folder to enter it
- Double-click a file to open it in the default application
- Right-click for context menus (copy, paste, properties, etc.)
- Use the mouse scroll wheel to move the view vertically
Keyboard shortcuts commonly supported (may vary slightly):
Ctrl + L: Focus the location bar / path bar to type a pathCtrl + NorCtrl + T: New window or new tabAlt + ↑: Go to parent folderAlt + ←/Alt + →: Back / ForwardCtrl + ForCtrl + S: Search
Working with Files and Folders
Most everyday tasks can be done with simple mouse actions and context menus.
Creating and Renaming
- Create a new folder:
- Right-click in empty space →
New Folder/Create Folder - Or use a toolbar button like
New Folder(named differently per file manager) - Rename a file or folder:
- Right-click →
Rename - Or click, pause, and click the name again (selected file), or press
F2in many file managers
Use simple, meaningful names, and remember that Linux is case sensitive: file.txt and File.txt are different.
Copy, Move, and Delete
Common methods:
- Drag and drop:
- Drag a file from one window or pane to another
- Usually:
- Drag within the same drive = move
- Drag to another drive = copy
- Often you can hold
Ctrl(force copy) orShift(force move) - Right-click menus:
Copy/Cuton the sourcePastein the destination folder- Keyboard shortcuts (frequently similar across file managers):
Ctrl + C: CopyCtrl + X: Cut (for moving)Ctrl + V: PasteDeleteorDel: Move to TrashShift + Delete: Delete permanently (sometimes prompts for confirmation)
The Trash
Most file managers use a Trash (or Recycle Bin) instead of deleting immediately:
- Deleting usually moves items to
Trash - You can:
- Open
Trashfrom the sidebar - Restore items to their original location
- Empty Trash to free space (permanently delete)
Be careful: emptying Trash is permanent and simple recovery becomes more difficult.
Views, Sorting, and Hidden Files
View Modes
Common view modes:
- Icon view: Big icons, more visual
- List / Detailed view: Smaller icons, columns (name, size, date, permissions, owner, etc.)
- Compact view (some file managers): For dense lists
You can typically change the view from a toolbar button or View menu, or with shortcuts like:
Ctrl + 1/Ctrl + 2/Ctrl + 3to switch between modes (varies by file manager)Ctrl + +/Ctrl + -to adjust icon or text size
Sorting and Grouping
You can sort by:
- Name
- Size
- Modification date
- Type
Sort options are often in:
View → Sort bymenu- Column headers (in list view: click on
Name,Size, etc.)
Some file managers support:
- Reverse sorting (e.g., largest to smallest) by clicking the same column again
- Grouping (e.g., grouping by type or date)
Hidden Files
On Linux, files starting with a dot (.) are hidden by default (e.g., .bashrc).
To show or hide hidden files:
- Often:
Ctrl + Htoggles hidden files - Or via menu:
View → Show Hidden Files
Use this to access configuration files or special directories, but avoid randomly editing hidden items if you don’t know what they do.
Using the Address Bar and Paths
Graphical file managers can show the current location in two main ways:
- Breadcrumb/path bar: A series of clickable segments like
Home > Documents > Projects - Text location / address bar: Shows full path like
/home/you/Documents/Projects
Most file managers let you:
- Click on the path bar to enter text mode
- Press
Ctrl + Lto switch to text path entry - Type a path (e.g.,
/etc,/var/log,/home/yourname) and pressEnter
This is helpful when:
- You are following documentation that references a specific path
- You want to jump quickly instead of clicking many folders
You can also copy the path to the clipboard (usually via right-click in the location bar) to paste into a terminal or other programs.
Tabs and Split Views
Many file managers support tabs and sometimes split view:
- Tabs:
- Similar to a web browser
Ctrl + T: Open new tab- Middle-click a folder to open it in a new tab (in some file managers)
Ctrl + W: Close tabCtrl + TaborAlt + ←/→: Switch between tabs (varies)- Split view / Dual pane:
- Shows two folders side by side in the same window
- Makes copying/moving between folders easier
- Often toggled by a button or menu item like
Split View,Dual Pane, orView → Split
Tabs are great for working with several locations at once; split view is ideal for file transfers.
External Drives and Network Locations
USB Drives and External Disks
When you plug in a USB stick or external disk:
- It usually appears in your sidebar under
DevicesorRemovable Devices - Click it to access its contents
Before unplugging:
- Eject / Safely Remove:
- Click the eject icon near the device in the sidebar
- Or right-click the device →
Eject/Safely Remove - Only unplug after it is reported as safe (to avoid data loss)
Network Shares
File managers often integrate with network protocols (e.g., SMB for Windows shares, SFTP, NFS):
Common patterns:
- Sidebar entries like:
NetworkOther Locations- Options such as:
Connect to Server…- Enter
smb://server/shareorsftp://user@server/pathstyle URLs
Once connected, network shares appear like a mounted drive; you can browse them similarly to local folders (though slower).
Searching for Files
Most file managers provide a search feature:
- Press
Ctrl + F(or click a magnifying glass icon) - Type part of the file name
- Some also allow filtering by:
- File type (Documents, Images, Music, etc.)
- Date modified
- Size
Search scope may be limited to:
- The current folder and subfolders
- Or the whole home directory (depending on how you start the search)
Note: Searching very large trees (like / or system directories) may be slower and is usually not needed for daily use.
File Properties and Permissions (Overview Level)
Right-click any file or folder → Properties:
You’ll typically see:
- Basic info:
- Name
- Type (e.g., Folder, Text file, JPEG image)
- Size
- Location
- Modification date
- Permissions tab (if available):
- Owner (user)
- Group
- Basic checkboxes for:
ReadWriteExecute- Sometimes an option like “Allow executing file as program”
Use this primarily to:
- Check who owns a file
- Allow or disallow execution of simple scripts or programs by toggling “executable” (instead of using the terminal)
Deeper concepts about users and permissions are covered elsewhere, but file managers give you a simple and safe interface for basic changes.
Opening Files and Choosing Applications
Double-clicking a file uses its default application (e.g., image viewer for .jpg, text editor for .txt).
To open with a different app:
- Right-click the file →
Open WithorOpen With Other Application - Optionally set a new default for that file type
This is useful when:
- You prefer a different editor/viewer
- You install a new app and want it to handle a particular file type
Safety Tips When Using File Managers
- Avoid deleting or moving files in system directories like
/etc,/usr,/bin,/varunless you know exactly what you’re doing. - Be cautious with:
- Hidden files in your home directory (they often store app settings)
- Files marked as executable that you don’t trust (they could be scripts or programs)
- Don’t blindly run files you downloaded from untrusted sources, even if it’s easy to double-click them.
Practical Exercises
Try these tasks in your own file manager:
- Open your home directory and:
- Create a folder called
practice - Inside
practice, create two folders:imagesanddocs - Download or copy:
- A few text files into
docs - A few pictures into
images - Practice:
- Switching between icon view and list view
- Sorting files by name and then by date
- Press
Ctrl + Hto: - Show hidden files, then hide them again
- Open two locations:
- Use tabs or split view to have
practice/docsandpractice/imagesvisible at the same time - Copy a file from
docstoimagesusing drag-and-drop, and again using copy/paste - Plug in a USB stick:
- Open it in the file manager
- Copy a file to the USB
- Safely eject the drive from the sidebar before unplugging
Getting comfortable with your file manager will make everyday Linux use much smoother, and it also makes the transition to command-line file management easier later on.