這篇文章主要是分享一些我平時使用centos時喜歡安裝的工具以及一些常用的命令。至于那些查看cpu,內存,硬盤大小等常用的命令不會出現在這篇文章中,由于Ubuntu與Centos類似,而且我工作使用Centos比較多,就以Centos7.6為例:
cat /etc/redhat-release
CentOS linux release 7.6.1810 (Core)
- lrzsz:與centos服務器進行上傳或者下載交互,支持直接拖動文件上傳
[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服務器。
希望大家能夠多多關注,多年致力于互聯網搬磚,各種互聯網技術都稍有涉獵。
大家還有哪些常用的命令或者工具呢? 歡迎留言討論