㈠ 如何查看linux服务器上有几块磁盘
有多弯中种方式查看linux服务器上有几块磁盘
方法1:
[root@localhost xly]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sr0 11:0 1 1024M 0 rom
sda 8:0 0 40G 0 disk
├─散闹历sda1 8:1 0 300M 0 part /boot
├冲搜─sda2 8:2 0 17.8G 0 part /
└─sda3 8:3 0 2G 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 39 2358 18631680 83 Linux
/dev/sda3 2358 2611 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操作系统大约需要多少GB的硬盘空间
10M,不过你要定做LINUX,而且昌族这样的LINUX会没有图形界面,只有字符界面。如果一般安装,且不含任何应用程序,要200M左右仿首。各版本的LINUX会少有差别。如果是服务器版耐大弊,将更大。Linux介绍看《Linux就该这么学》
㈢ linux系统需要多大的硬盘空间
仅仅只是安装的话,没多大。但是,问题是还要装各种软件,工具。仅仅一个系统是没用的,必须有软件。这一点,是肯定的。不同系统而言,在此是相同的。windows如此,linux这样,solaris,还有将来某一天再有人搞出个什么其他的系统,也是一样。但是,考虑到现实环境,包括很多用户对linux了解还不多,也包括因此而导致的很多厂商由于担心市场,而不敢或不愿给linux用户开发软件等等。我觉得,给电脑5到10G就已经相当高了。要是实在不放心,放大到15G。
这是指双系统或虚拟机里面。如果是直接在电脑上安装,没有其他任何系统,仅仅只要linux,那就是硬盘多大,就分多大。否则,大量的未分配空间的存在是一个浪费。
㈣ linux服务器如何查硬盘多少
一、检测硬盘能否被识别
#
fdisk
-l
查找新硬盘信息,类似如下文本:
disk
/dev/sdb:
36.7
gb,
36748945408
bytes
二、挂载硬盘
1、在本地硬盘中临时创建一个目录
#mkdir
/opt/data/tmp1
2、挂载第二块硬盘中的一个分区/dev/sdb1到tmp1
#mount
/dev/sdb1
/opt/data/tmp1
3、查看是否被挂载
#
df
-h
查看一下是否有类似如下文本
/dev/sdb1
3.9g
1.4g
2.3g
38%
/opt/tmp/tmp1
三、卸载硬盘
#umount
/dev/sdb1
注意:
1、以上操作必须为root用户
2、硬盘插上去后需要重起服务器
㈤ linux服务器如何查硬盘多少
Linux常用的查看硬盘命令 lsblk
这个命令可以查看磁盘大小、以及分区情况
其它常用命令:
lscpu -- 查看CPU
lspci -- 查看主板
㈥ 关于linux如何查看有几个硬盘每个硬盘分了几个区
在LINUX中查看分区情况的方法:
1、首先,打开终端,然后输入Fdisk-L并按回车键。
㈦ linux查看总硬盘大小
df命令只能查看每个分区的,没有总容量,fdisk可以查到但是只能在root下执行,让普通用户能够查到总的容量用命令:
linux 如何查看硬盘大小,内存大小等系统信息及硬件信息
top 可以看到不少信息
fdisk & disk - l & df 查看系统硬盘信息和使用情况
lspci 查看主板信息等
cat /proc/cpuinfo CPU信息
cat /proc/meminfo 内存信息
㈧ linux查看有几块硬盘
一、整体流程
1、把新硬盘连接起来
2、在CMOS里配置新硬盘
3、查看硬盘代号
4、用 fdisk 对硬盘进行分区
5、格式化分区
6、创建挂载点
7、设置/dev/fstab 以便开机时自动挂载分区
8、设置新硬盘分区的读写权限
二、具体操作步骤
1、把新硬盘连接起来,属于硬件操作,注意主板和硬盘的接口插正确就可以了。
2、在CMOS里配置新硬盘
启动计算机,并进入CMOS,让机器找到新硬盘。
IDE Channel 0Master: none (没有盘)
IDE Channel 0Slave: none (没有盘)
IDE Channel 1Master: 是DVD-ROM
IDE Channel 1Slave: none (没有盘)
IDE Channel 2Master: HDS728080PLA380 (原来的80GBSATA I 硬盘)
IDE Channel 3Master: none (没有盘)
在none 的Channels一个一个地让计算机自动寻找硬盘。最后发现了:
IDE Channel 3Master: ST31000528AS (新的1000GB SATA II型硬盘)
3、 查看硬盘代号
$ df
发现:
写道
/dev/sda1 /C_disk 15GB 7 (reserved for Windows XP, my PC is aal- system)
/dev/sda2 / 15GB 83 (Linux)
/dev/sda3 LinuxLVM 8e (Linux)
/dev/sda4 extended
/dev/sda5 82 (Linux Swap, 512MB, twice of the momoey)
/dev/sda6 /data 83 (Linux, mounted on /data, 45.5GB)
注意: SATA (通常称串口盘) 在Linux下被视为SCSI 盘(一种早期用在Sun工作站上和服务器 的高速硬盘,那时很贵!)。
可以判定: 新的硬盘应该就是/dev/sdb 了。
进入超级用户:
写道
$ su -l
password: yoursecrets
[root@Lenovo~]#
[root@Lenovo~]# fdisk -l
出现类似下面的信息(以下提示信息仅供参考,有的并非本人实际操作时的屏幕显示,但意思是一样 的):
写道
Disk/dev/sda: 10.7 GB, 10737418240 bytes
255heads, 63 sectors/track, 1305 cylinders
Units= cylinders of 16065 * 512 = 8225280 bytes
Diskidentifier: 0x0007d856
DeviceBoot Start End Blocks Id System
/dev/sda1 * 1 25 200781 83 Linux
/dev/sda2 26 1305 10281600 8e LinuxLVM
Disk /dev/sdb: 2147 MB, 2147483648 bytes <=新硬盘
255heads, 63 sectors/track, 261 cylinders
Units= cylinders of 16065 * 512 = 8225280 bytes
Diskidentifier: 0x00000000
Disk /dev/sdb doesn't contain a validpartition table
4、 用 fdisk 对硬盘进行分区
写道
[root@Lenovo~]#fdisk /dev/sdb
Devicecontains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Buildinga new DOS disklabel with disk identifier 0x623223a1.
Changeswill remain in memory only, until you decide to write them.
Afterthat, of course, the previous content won't be recoverable.
Warning: invalid flag 0x0000 ofpartition table 4 will be corrected by w(rite)
Command (m for help): p <=显示信息
Disk /dev/sdb: 1002.2 GB, 10*** bytes
255heads, 63 sectors/track, 121601 cylinders
Units= cylinders of 16065 * 512 = 8225280 bytes
Diskidentifier: 0x623223a1
DeviceBoot Start End Blocks Id System
Command (m for help): n <=新建分区
Commandaction
e extended
p primarypartition (1-4)
p <=新建主分区
Partitionnumber (1-4): 1 <=分区号为1,即/dev/sdb1
Firstcylinder (1-261, default 1): 回车取默认值
Usingdefault value 1
Lastcylinder or +size or +sizeM or +sizeK (1-261, default 261): 回车取默认值
Usingdefault value 261
Command (m for help): p <=显示分区信息
Disk /dev/sdb: 2147 MB, 2147483648 bytes
255heads, 63 sectors/track, 261 cylinders
Units= cylinders of 16065 * 512 = 8225280 bytes
Diskidentifier: 0x623223a1
DeviceBoot Start End Blocks Id System
/dev/sdb1 1 261 2096451 83 Linux
Command (m for help): w <=保存退出
Thepartition table has been altered!
Callingioctl() to re-read partition table.
Syncingdisks.
5、格式化分区
写道
# mkfs.ext4 -L disk2 /dev/sdb1 --格式化的同时给新硬盘加标签为 disk2
或者 mkfs.ext4 /dev/sdb1 --只格式化但不加标签
单独加标签的命令是: # e2label /dev/sdb1 /disk2
6、创建挂载点
写道
[root@Lenovo~]# mkdir /disk2
7、设置/dev/fstab 以便开机时自动挂载分区:
写道
[root@Lenovo~]# vi /etc/fstab
添加一行:
/dev/sdb1 /disk2 ext4 auto 1 2
若一次性手动挂载分区 ,使用命令: #mount /dev/sdb1 /disk2/
8、设置新硬盘或分区的读写权限:
# chmod a+w /disk2
这样所有计算机的用户都可以读写该分区,即/disk2盘了
㈨ linux下怎么看物理硬盘个数
使用下面这条命令查看:
ls /dev这条命令列出的一长串东西里面,可以看出有几个硬盘
比如我的电脑里面有两块硬盘,就可以看到有sda、sdb两个装置
如果每个硬盘都分了几个区,就会看到sda1、sda2之类的字样,但是它们都属于一个硬盘sda
㈩ 关于linux如何查看有几个硬盘每个硬盘分了几个区
在LINUX中查看分区情况的方法:
1、首先,打开终端,然后输入Fdisk-L并按回车键。