ncdu 磁盘使用分析查看工具

Posted 满目星辰wwq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ncdu 磁盘使用分析查看工具相关的知识,希望对你有一定的参考价值。

简介

Ncdu - NCurses Disk Usage

Ncdu 是一个带有 ncurses 接口的磁盘使用分析器。 它旨在在您没有完整图形设置可用的远程服务器上查找空间占用,但即使在常规桌面系统上它也是一个有用的工具。 Ncdu 的目标是快速、简单和易于使用,并且应该能够在安装了 ncurses 的任何最小的类 POSIX 环境中运行。

主页:NCurses Disk Usage

备注:curses 是一个在 Linux/Unix 下广泛应用的图形函数库,作用是可以在终端内绘制简单的图形用户界面。curses 库产生于 BSD UNIX,但是 Linux 系统通过 ncurses 库提供这个功能。

安装

ncdu 可以在绝大多数 posix 兼容的系统中运行,几乎在所有的知名 Unix、Linux 系统中可用。

macOS:

1
2
3
## Homebrew
#/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install ncdu

FreeBSD:

1
pkg install ncdu

Ubuntu:

1
sudo apt install ncdu

CentOS:

1
2
3
## Add EPEL repo
#yum -y install epel-release
yum install ncdu

命令用法

ncdu <options> <directory>

查看当前目录磁盘使用,直接:

1
2
ncdu
# 按 Q 键退出

查看指定目录磁盘使用:

1
2
3
ncdu /  #根目录,全盘
ncdu /home
# 按 Q 键退出

命令帮助:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ncdu -h
ncdu <options> <directory>

  -h,--help                  This help message
  -q                         Quiet mode, refresh interval 2 seconds
  -v,-V,--version            Print version
  -x                         Same filesystem
  -e                         Enable extended information
  -r                         Read only
  -o FILE                    Export scanned directory to FILE
  -f FILE                    Import scanned directory from FILE
  -0,-1,-2                   UI to use when scanning (0=none,2=full ncurses)
  --si                       Use base 10 (SI) prefixes instead of base 2
  --exclude PATTERN          Exclude files that match PATTERN
  -X, --exclude-from FILE    Exclude files that match any pattern in FILE
  -L, --follow-symlinks      Follow symbolic links (excluding directories)
  --exclude-caches           Exclude directories containing CACHEDIR.TAG
  --confirm-quit             Confirm quitting ncdu
  --color SCHEME             Set color scheme (off/dark)

彩色显示:

1
2
ncdu --color dark  # off/dark,默认 off
ncdu --color dark /home

详细帮助请查看:man ncdu

ncdu 用法

进入 ncdu 后:

按 ?调出帮助对话框,按 1 显示快捷键(默认),按 2 显示格式说明,按 3 显示版本信息

常用快捷键:

n :按文件名进行排序(再按为切换升降序)
s :按文件大小进行排序(默认,再按为切换升降序)
r :重新计算大小
g :显示百分比

按 q 退出。

 

以上是关于ncdu 磁盘使用分析查看工具的主要内容,如果未能解决你的问题,请参考以下文章

ncdu 磁盘使用分析查看工具

ncdu 磁盘使用分析查看工具

linux磁盘目录占用空间分析工具之ncdu

Ubuntu 16.04安装磁盘占用分析器:ncdu

sh ncdu - 磁盘使用率分析器

如何使用du 和 ncdu 两个命令检查 Linux 磁盘使用情况?