美文网首页
LinuxCommandLine -- 0

LinuxCommandLine -- 0

作者: liaozb1996 | 来源:发表于2018-04-22 17:00 被阅读0次

http://www.linuxcommand.org/
http://www.linuxcommand.org/tlcl.php

  • bash 一个程序
  • Terminal Emulators GUI环境一个用于访问Shell的程序,通常叫做终端
  • Virtual Terminal / Virtual Console Alt-F2[~F6]
  • Command History
# 环境名
export HISTSIZE=0
# 清空所有记录
history -c

https://www.tecmint.com/history-command-examples/

  • date 查看日期时间
  • cal 日历
  • df -h 磁盘使用情况
  • free -h 内存使用情况

#[admin@localhost ~]$ date
Sat Apr 21 22:41:57 CST 2018

# [admin@localhost ~]$ cal
     April 2018
Su Mo Tu We Th Fr Sa
 1  2  3  4  5  6  7
 8  9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30

# 磁盘空间使用情况
[admin@localhost ~]$ df -h
Filesystem               Size  Used Avail Use% Mounted on
/dev/mapper/centos-root   14G  895M   13G   7% /
devtmpfs                 360M     0  360M   0% /dev
tmpfs                    371M     0  371M   0% /dev/shm
tmpfs                    371M  5.0M  366M   2% /run
tmpfs                    371M     0  371M   0% /sys/fs/cgroup
/dev/sda1               1014M  125M  890M  13% /boot
tmpfs                     75M     0   75M   0% /run/user/1000

# 内存使用情况
[admin@localhost ~]$ free -h
              total        used        free      shared  buff/cache   available
Mem:           740M        111M        484M        5.0M        144M        490M
Swap:          1.5G          0B        1.5G

相关文章

网友评论

      本文标题:LinuxCommandLine -- 0

      本文链接:https://www.haomeiwen.com/subject/hhaflftx.html