如何查看linux服务器上有几块磁盘?

如何查看linux服务器上有几块磁盘?,第1张

有多种方式查看linux服务器上有几块磁盘

方法1:

[root@localhost xly]# lsblk

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT

sr0 11:01 1024M 0 rom

sda 8:00 40G 0 disk

├─sda1 8:10 300M 0 part /boot

├─sda2 8:20 17.8G 0 part /

└─sda3 8:302G 0 part [SWAP]

sdb 8:16 0 20G 0 disk /opt

可知系统有sda和sdb两块磁盘

方法2:

[root@localhost xly]# fdisk -l

Disk /dev/sda: 42.9 GB, 42949672960 bytes

255 heads, 63 sectors/track, 5221 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00041bdd

Device Boot Start End Blocks Id System

/dev/sda1 * 1 39 307200 83 Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2 39235818631680 83 Linux

/dev/sda323582611 2031616 82 Linux swap / Solaris

Disk /dev/sdb: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

du -- disk usage,用来查看某个文件或目录占用的磁盘空间数量。

usage: du -shbkm [ file | directory]

-h: 很有用的参数, 将显示的结果以human readable的方式打印,如20K,1.3M,4.5G等

-s :summarize,如果要查看的是目录,则显示其总体占有空间,而不是显示其所有子目录及其文件占用的空间

如 du -s /domain 则显示domain这个目录及其子目录总共占用了多少空,而不是显示其所有子目录的情况

-b:byte ,结果以byte为单位显示

-k:kilobyte,结果以KB为单位显示

-m:megabyte,结果以MB为单位显示

df -- report file system disk space usage, 用来查看文件系统的磁盘空间使用情况

usage : df -htk

h,k与du一样 ,-t 指定要查看的文件系统


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8342932.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存