方法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
linux基本上没有分区的概念,因为linux的软件是无法选择安装路径的。linux的结构和android还有苹果是一样的,“/”就代表根目录,系统和软件都包含在根目录中,而非是某个磁盘分区。
查看的方法很简单,打开nautilus(文件管理器)然后在路径选择哪里你可以选择到“/”这个目录,就是了
很高兴为您解答问题,我是龙翔翎,再见
linux查看磁盘的信息和挂载磁盘是非常常见的操作。在购买硬盘插到服务器上后,需要将硬盘挂载到文件系统上,不然是无法使用的。具体可以这样理解,在Windows上的硬盘没有分区也是无法直接使用的。
效果如下
之前sdb后面时没有挂载的,我们挂载到了/data目录下。sdb是单独的一块大硬盘。
进行检查,df -h
这个时候还没有到/etc/fstab 下面配置挂载信息,重启挂载就消失了。
挂载成功后ssh传输文件失败,发现是mount后,/data目录没有一般用户的权限。
执行后就可以使用了。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)