文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Linux下怎么安装并使用Dutree

2023-06-27 22:03

关注

这篇文章主要介绍“Linux下怎么安装并使用Dutree”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Linux下怎么安装并使用Dutree”文章能帮助大家解决问题。

dutree是一款免费的开源,快速的命令行工具,用于分析磁盘使用情况 ,用Rust编程语言编写。 它由durep磁盘使用记者 )和 (列表目录内容,树形格式)命令行工具开发。 因此, dutree以树状格式报告磁盘使用情况。

Linux下怎么安装并使用Dutree

系统环境

Centos7

安装

需要先安装cargo包管理器:

[root@localhost ~]# yum -y install cargo

其次配置cargo的仓库地址,因为默认使用国外源,下载速度超慢:

进入$HOME/.cargo创建config配置文件:

[root@localhost ~]# cd $HOME/.cargo[root@localhost .cargo]# touch config

将下面内容复制到config配置文件中:

[source.crates-io]registry = "https://github.com/rust-lang/crates.io-index"# 替换成速度比较快的镜像源,这里使用上海交大的。replace-with = 'sjtu'# 清华大学[source.tuna]registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git"# 上海交通大学[source.sjtu]registry = "https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index"# rustcc社区[source.rustcc]registry = "git://crates.rustcc.cn/crates.io-index"

Linux下怎么安装并使用Dutree 

开始安装dutree吧:

[root@localhost ~]# cargo install dutree   Updating `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index` index Downloaded dutree v0.2.16 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded 1 crate (638.0 KB) in 0.37s Installing dutree v0.2.16 Downloaded signal-hook v0.1.16 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded terminal_size v0.1.13 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded thread_local v1.0.1 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded signal-hook-registry v1.2.2 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded unicode-width v0.1.8 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded memchr v2.3.4 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded regex-syntax v0.6.21 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded aho-corasick v0.7.14 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded regex v1.4.2 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded libc v0.2.80 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded lazy_static v1.4.0 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded getopts v0.2.21 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded unicode-segmentation v1.6.0 (registry `https://mirrors.sjtug.sjtu.edu.cn/git/crates.io-index`) Downloaded 13 crates (1.4 MB) in 0.43s  Compiling libc v0.2.80  Compiling memchr v2.3.4  Compiling lazy_static v1.4.0  Compiling unicode-width v0.1.8  Compiling regex-syntax v0.6.21  Compiling unicode-segmentation v1.6.0  Compiling thread_local v1.0.1  Compiling getopts v0.2.21  Compiling signal-hook-registry v1.2.2  Compiling terminal_size v0.1.13  Compiling aho-corasick v0.7.14  Compiling signal-hook v0.1.16  Compiling regex v1.4.2  Compiling dutree v0.2.16   Finished release [optimized] target(s) in 1m 35s Installing /root/.cargo/bin/dutree  Installed package `dutree v0.2.16` (executable `dutree`)warning: be sure to add `/root/.cargo/bin` to your PATH to be able to run the installed binaries

Linux下怎么安装并使用Dutree 

看到上面最后一个warning提示,需要将/root/.cargo/bin目录添加到PATH环境变量中:

[root@localhost ~]# echo "export PATH=$PATH:/root/.cargo/bin" >> ~/.bashrc[root@localhost ~]# source ~/.bashrc

现在可以使用dutree了 Linux下怎么安装并使用Dutree

实例

目录深度

通过-d选项,加上数字,查看一层目录或者多层目录,下面是查看/root用户家目录的,查查看一层目录:

[root@localhost ~]# dutree -d1 ./

Linux下怎么安装并使用Dutree 下面是查看/root家目录最多3层目录:

[root@localhost ~]# dutree -d3 ./

Linux下怎么安装并使用Dutree 如果不限制目录层数,可以不加-d选项,下面查看/root/test目录:

[root@localhost ~]# dutree test/
Linux下怎么安装并使用Dutree

排除某个文件

要排除与文件或目录名称匹配的内容,请使用-x选项。下面排除test目录中包括dir1的项目:

[root@localhost ~]# dutree -x dir1 test/

Linux下怎么安装并使用Dutree 使用-H选项,可以排除隐藏文件:

[root@localhost ~]# dutree -H

Linux下怎么安装并使用Dutree 可以看到隐藏文件没有列出来。

进度条使用ASCII字符显示

可以使用ASCII字符#号来代替默认的进度条:

[root@localhost ~]# dutree -d1 -A /root
Linux下怎么安装并使用Dutree

关于“Linux下怎么安装并使用Dutree”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-人工智能
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯