krusader

(★ 4)

Krusader twin-panel file manager for Unraid — fast Selkies web desktop with native Dark Mode, Kate, krename and RAR support.

krusader Latest Version Download

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker exec

View Details ▼

This command is an alias of `docker container exec`.

tldr docker container exec

View documentation for the original command:

🔍

docker pull

View Details ▼

This command is an alias of `docker image pull`.

tldr docker image pull

View documentation for the original command:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

docker stop

View Details ▼

This command is an alias of `docker container stop`.

tldr docker container stop

View documentation for the original command:

🔍

docker

View Details ▼

Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.

docker {{[ps|container ls]}} {{[-a|--all]}}

List all Docker containers (running and stopped):

docker {{[run|container run]}} --name {{container_name}} {{image}}

Start a container from an image, with a custom name:

docker container {{start|stop}} {{container_name}}

Start or stop an existing container:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

host

View Details ▼

Lookup Domain Name Server.
See also: `dig`, `resolvectl`, `nslookup`.

host {{domain}}

Lookup A, AAAA, and MX records of a domain:

host -t {{field}} {{domain}}

Lookup a field (CNAME, TXT, ...) of a domain:

host {{ip_address}}

Reverse lookup an IP:

🔍

netstat

View Details ▼

Display network-related information such as open connections, open socket ports, etc.
See also: `ss`.

netstat {{[-a|--all]}}

List all ports:

netstat -p {{protocol}}

Display the PID and program name listening on a specific protocol:

netstat

Display active TCP connections:

🔍

select

View Details ▼

Bash builtin construct for creating menus.

select {{word}} in {{apple orange pear banana}}; do echo ${{word}}; done

Create a menu out of individual words:

select {{line}} in $({{command}}); do echo ${{line}}; done

Create a menu from the output of another command:

PS3="{{Select a file: }}"; select {{file}} in *; do echo ${{file}}; done

Specify the prompt string for `select` and create a menu for picking a file or folder from the current directory:

🔍

unrar

View Details ▼

Extract RAR archives.

unrar x {{compressed.rar}}

Extract files with original directory structure:

unrar x {{compressed.rar}} {{path/to/extract}}

Extract files to a specified path with the original directory structure:

unrar e {{compressed.rar}}

Extract files into current directory, losing directory structure in the archive:

🔍

bridge

View Details ▼

Show and manipulate network bridge addresses and devices.

bridge {{[l|link]}}

List all bridges and their interfaces:

bridge {{[v|vlan]}}

Show port vlan information:

sudo bridge {{[v|vlan]}} {{[a|add]}} dev {{lanX}} vid {{vlan_id}} pvid {{tagged|untagged}}

Assign a VLAN to a port:

🔍

light

View Details ▼

Control the backlight of your screen.

light

Get the current backlight value in percent:

light -S {{50}}

Set the backlight value to 50 percent:

light -U {{20}}

Reduce 20 percent from the current backlight value:

🔍

defaults

View Details ▼

Read and write macOS user configuration for applications.

defaults read "{{application}}" "{{option}}"

Read system defaults for an application option:

defaults read -app "{{application}}" "{{option}}"

Read default values for an application option:

defaults find "{{keyword}}"

Search for a keyword in domain names, keys, and values:

// repository documentation