From db0441880450bcb48b458b2341e007464c82097c Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 24 Nov 2022 06:37:29 -0300 Subject: [PATCH] Adding 'ncdu' tutorial --- README.org | 4 ++++ tutorial/ncdu.org | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 tutorial/ncdu.org diff --git a/README.org b/README.org index db26e9b..cec021a 100644 --- a/README.org +++ b/README.org @@ -38,6 +38,10 @@ opportunity to learn about computers, files, directories and programs. * [[./tutorial/compress_pdf.org][Compress a pdf file]] * [[./tutorial/luakit.org][Searching and editing configuration files]] * [[./tutorial/pacman.org][Use package manager in Parabola GNU-linux]] + +** Disk space utilization and manipulation + + * [[./tutorial/ncdu.org][Exploring disk space with 'ncdu']] ** File conversion diff --git a/tutorial/ncdu.org b/tutorial/ncdu.org new file mode 100644 index 0000000..d4b25ba --- /dev/null +++ b/tutorial/ncdu.org @@ -0,0 +1,22 @@ +#+options: toc:nil num:nil author:nil + +* ncdu command + + +~ncdu~ command is a great tool to check disk space usage. There are multiple +options to do this task in GNU-linux systems. + +~ncdu~ is quite handy: simple, beatiful and let the users to interact with the files +directly in the command line, to explore recursively and move between directories. + +Installing in Parabola GNU-linux: + +#+begin_src bash + pacman -S ncdu +#+end_src + +To use, just call the program and await for the outocome: + +#+begin_src bash + ncdu +#+end_src