Main Page

From wiki.samerhijazi.net
Revision as of 22:18, 8 April 2019 by Samerhijazi (talk | contribs)
Jump to navigation Jump to search

fr:Midnight Commander ja:Midnight Commander ru:Midnight Commander Template:Related articles start Template:Related Template:Related Template:Related articles end

Midnight Commander is an orthodox (two-pane) file manager, supporting standard file operations, virtual filesystems, panelizing of external commands, and user menus. It also includes an internal viewer, editor, and visual diff tool.

As it is based on versatile text interfaces, such as Ncurses or S-Lang, it works on a regular console, inside an X Window terminal, over SSH connections and all kinds of remote shells.

Installation

Install the Template:Pkg package, or Template:AUR for the development version.

Skins

Midnight Commander comes with multiple skins by default. You can set the skin in Options > Appearance.

Additional third-party skins can be installed separately:

See also Template:Man.

Usage

The below section provides a short overview on usage of Midnight commander.

Template:Tip

Interface

In prominent view are two vertical panes. Either can list directory contents, show a plain text preview, file details, or a directory tree (see Template:Man). File operations are accessible through the function keys or the mouse. More options are visible in a dynamic user menu (Template:Ic) and option menu (Template:Ic). Keys above Template:Ic (Template:Ic up to Template:Ic) are accessible through Template:Ic. Menu and dialog options have one letter highlighted - pressing this letter (or Template:Ic inside a text entry) directly activates the respective option.

Below, a command line is visible, connected to a subshell. This shell is generally of the same type mc was launched from, and may be switched to at will (Template:Ic), see Template:Man. On this command line, cd is interpreted by Midnight Commander, and not passed to the shell for execution. As such, special completion (such as from Zsh) is unavailable. Files in the pane interact with the command line; for example, Template:Ic copies the name of a (selected) file to the command line.

Keybindings are generally similar to GNU Emacs. A more strict emacs keymap can be enabled (see Template:Man). New users may however use Lynx-like (arrow) keybindings (enabled in Options > Panel options) and mouse clicks for navigation.

Mouse support for Linux virtual consoles can be enabled with General purpose mouse.

Modules

These can be called via the mc interface (with Use internal enabled in Options > Configuration), or separately as symbolic links to the mc binary.

  • mcedit - Text and binary file editor, with regex replace, syntax highlighting, macros and shell piping, see Template:Man
  • mcview - Text and hex viewer with goto marks and regex search
  • mcdiff - Compares and edits two files in-place (Template:Ic)

Per Template:Ic instance, multiple modules can be run concurrently (Template:Ic) (see Template:Man). External editors may be used instead, and parameters configured accordingly.

Configuration

Most of the Midnight Commander settings can be changed from the menus. However, a small number of settings such as clipboard commands, codeset detection and parameters for external editors can only be changed from Template:Ic. See Template:Man and following for a complete description of options.

Additionally, the following environment variables are respected: Template:Ic, Template:Ic, Template:Ic, Template:Ic, Template:Ic, Template:Ic, Template:Ic, Template:Ic, Template:Ic, Template:Ic.

See also Template:Man.

extfs

extfs allows to easily create new virtual filesystems for mc. See Template:Ic for details.

Tips and tricks

Start from the menu

Midnight commander can be run from a menu with the correct Desktop entry. For example:

[Desktop Entry]
Type=Application
Version=1.0
Name=Midnight Commander
Comment=Visual file manager
Exec=mc
Icon=folder
MimeType=inode/directory
Terminal=true
Categories=Utility;

Trash support

Midnight Commander does not support a trash can by default.

Using libtrash

Install the Template:Aur package, and create an mc alias in the initialization file of your shell (e.g., Template:Ic or Template:Ic):

alias mc='LD_PRELOAD=/usr/lib/libtrash.so.3.3 mc'

To apply the changes, reopen your shell session or Template:Ic the shell initialization file.

Default settings are defined in Template:Ic. You can overwrite these settings per-user in Template:Ic, for example:

TRASH_CAN = .Trash
INTERCEPT_RENAME = NO
IGNORE_EXTENSIONS= o;exe;com
UNCOVER_DIRS=/dev

Now files deleted by Midnight Commander (launched with mc) will be moved to the Template:Ic directory.

Template:Warning

See also [1].

Troubleshooting

Exit to the current directory

On exit, the shell returns to the directory Midnight Commander was started from, instead of the last active directory. A wrapper script is included, which can be used by adding this line to your Template:Ic or Template:Ic:

source /usr/lib/mc/mc.sh

This will alias Template:Ic to the wrapper script.

Another simple workaround is to use the subshell (Template:Ic). This may however interfere with other terminal applications.

Garbled screen

Press Template:Ic to redraw the display. This only redraws, but does not refresh (Template:Ic) the file list.

Opening files

mc reads the Template:Ic environment variable to open files, which defaults to xdg-open when unset. [2]

if mc is blocked until the resulting process ends, or the process exits together with mc, use Template:Ic:

Template:Hc

and set Template:Ic accordingly:

export MC_XDG_OPEN=~/bin/nohup-open

Template:Tip

Find file shows no results

If the Find file dialog (accessible with Template:Ic) shows no results, check the current directory for symbolic links. Find file does not follow symbolic links, so use bind mounts (see Template:Man) instead, or the External panelize command.

Broken shortcuts

With certain terminal definitions such as Template:Ic or Template:Ic, shortcuts such as Template:Ic may not work or act as different combinations. To remedy his, assign the terminal sequences manually with the Template:Ic dialog.

Settings will be stored in the Template:Ic file, for example for Template:Ic:

Template:Note

Template:Bc

No bold text in urxvt

If started under urxvt with the default Template:Ic setting, text that is usually bold in many other terminals will not appear so. The root of the issue is because xterm couples bright text color with the bold attribute (thus, bright colors will always appear as bold in xterm).

urxvt does not have this limitation, which Slang (the library mc uses for text display by default) honors. Because Slang can decouple the bold attribute from bright colors on urxvt, mc would need to explicitly specify the bold attribute as appropriate (which it does not).

The solution is to configure mc to explicitly use bold colors as desired, e.g. by editing the default skin as follows:

$ mkdir ~/.local/share/mc/skins 
$ cp /usr/share/mc/skins/default.ini ~/.local/share/mc/skins/
$ sed -i -E 's/^(.* = (gray|brightred|brightgreen|yellow|brightblue|brightmagenta|brightcyan|white);.*)$/\0;bold/' ~/.local/share/mc/skins/default.ini

The above will create a copy of the default skin, but with all bright colors having an explicit bold attribute added.

Another common workaround is to set Template:Ic, however this causes other issues due to mismatching termcap/terminfo, such as certain keys not working.

See also