- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: adding disks
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:29 AM
08-22-2002 06:29 AM
adding disks
i have a Dell PowerEdge 2400 with scsi disks. After redhat 7.2 installation i have added further disks and now i want to format,partition them and create filesystems.
How can i do that and how can i see those disks?
I tried with format command (as on Solaris) but here it doesn't exist. I also tried with fdisk but i don't see my disks, i just have to specify a device but if i don't know what it is yet how can i do?
Thanks in advance
Tarek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:32 AM
08-22-2002 06:32 AM
Re: adding disks
SCSI disk device name is
/dev/hda
/dev/hdb
/dev/hdc and so on.
Try
#fdisk /dev/hda1 or /dev/hda2 etc...
Or run cfdisk.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:40 AM
08-22-2002 06:40 AM
Re: adding disks
scsi disks are
/dev/sda
/dev/sdb
....
however i will try as you said.
(cfdisk on redhat doesn't exist, i used it on other linux systems)
Thanks
Tarek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 07:36 AM
08-22-2002 07:36 AM
Re: adding disks
what happens when you boot the system. scsi bois should recognize the disk before even linux load.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 08:13 AM
08-22-2002 08:13 AM
Re: adding disks
What log should i have to check?
In the /var/log/messages i'm not seeing the new disks, only the 3 old ones (sda,sdb,sdc).
I'm not the one that has added the disks, how can i check in the bios?
Thanks
Tarek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 08:19 AM
08-22-2002 08:19 AM
Re: adding disks
There is a utility called kudzu run that it might help.
/usr/sbin/kudzu
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 06:36 PM
08-22-2002 06:36 PM
Re: adding disks
If your disk is IDE, you will find
hda: QUANTUM FIREBALL1280A ATA Drive
hda: hda1 < hda5 hda6>
This is my 1.2GB system disk.
2nd line shows you this HD have 1 primary partition and 2 logical partition in extended partition.
If your kernel find disk, the kernel assign "hda","hdb","hdc" and "hdd" for IDE, "sda","sdb","sdc","sdd" and so on.
So you may want to grep those keywords.
# dmesg | grep hd
# dmesg | grep sd
or
# cat /proc/scsi/scsi
also tells you what devices are connected and deteced by kernel.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2002 11:02 PM
08-22-2002 11:02 PM
Re: adding disks
Tarek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2002 12:03 AM
08-23-2002 12:03 AM
Re: adding disks
There are 3 levels.
1) SCSI card recognize your HDs.
See scsi card initialization at boot time (before loading kernel.)
If scsi address duplicate, the termination is not correct or mixed devices such as SE & LVD... these mis-configuration cause your device not detect at this level.
2) Check if the scsi card which connect the disks on dmesg.
If you connect new disks on the same scsi card, it should be OK.
3) Check if the kernel detect the devices.... we know this was failed.
Good luck.