这篇文章主要是分享一些我平时使用centos时喜欢安装的工具以及一些常用的命令。至于那些查看cpu,内存,硬盘大小等常用的命令不会出现在这篇文章中,由于Ubuntu与Centos类似,而且我工作使用Centos比较多,就以Centos7.6为例:
cat /etc/redhat-release
CentOS linux release 7.6.1810 (Core)
[root@yunweichongzi ~]#yum install -y lrzsz
sz+文件 下载文件到电脑上
rz会弹出对话框进行文件选择上传
2.bash-completion:命令补全工具,能够在执行操作的时候通过tab自动补齐命令,比自带的功能更加强大。随时都可以用tab补齐命令
[root@yunweichongzi ~]# yum install bash-completion -y
3.tree:以树状图逐级列出目录的内容命令。
[root@yunweichongzi ~]# yum install tree -y
4.cockpit:服务器可视化控制面板。
[root@yunweichongzi ~]# yum install cockpit -y
[root@yunweichongzi ~]# systemctl start cockpit.service
[root@yunweichongzi ~]# systemctl enable --now cockpit.socket
5.dstat:这个命令的功能包含了vmstat、IOStat、netstat、nfsstat和ifstat这些命令,是一个全能系统信息统计工具。
[root@yunweichongzi ~]# yum install -y dstat
也可以查看内存谁在使用
6.iftop:主要用来显示本机网络流量情况及各相互通信的流量集合
[root@yunweichongzi ~]# yum install iftop -y
7.tmux:一个终端复用工具。
[root@yunweichongzi ~]# yum install tmux -y
8.iperf:一款网络性能测试工具,可以测试带宽,网络质量等等。
[root@yunweichongzi ~]# yum install iperf -y
9.rm -rf /*:一删解千愁。(由于这篇文章已经写完,因此我对这个服务器做了一件残忍的事情)。
再见了,我的yunweichongzi服务器。
希望大家能够多多关注,多年致力于互联网搬砖,各种互联网技术都稍有涉猎。
大家还有哪些常用的命令或者工具呢? 欢迎留言讨论