- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Adding Second HDD
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
09-24-2004 12:08 AM
09-24-2004 12:08 AM
Adding Second HDD
I had installed a additional hard drive on my Linux 7.2 server.when I try to access it says Unable to seek partition error.So plz let me the excat process how to Install a second HDD on working server.I have already 3 SCSI hdd installed,and this is fourth one which I want to install it.
Thanks
Turishi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2004 12:21 AM
09-24-2004 12:21 AM
Re: Adding Second HDD
Normally the 4th hdd will be assigned to /dev/sdd.
Issue fdisk /dev/sdd command and create the partitions you want. After that you maybe need to reboot the server to have the change taken effect. And then you should create file system on the new partition. Such as issue mkfs -t ext2 -j /dev/sdd1 for create the ext3 file system on the first partition.
And you could mount it for using.
mount -t ext3 /dev/sdd1 /any-diretory
Yongye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2004 12:37 AM
09-24-2004 12:37 AM
Re: Adding Second HDD
I did same as u mentioned but after that only it gives partition seek error.
So plz let me know waht all I can check to make sure that is it configured in right way.
thanks
turishi.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:20 AM
09-28-2004 03:20 AM
Re: Adding Second HDD
# cfdisk /dev/sdxx
This is similar to fdisk but is a semi-graphical tool.
I prefer use this for manage partition tables!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 09:25 AM
09-30-2004 09:25 AM
Re: Adding Second HDD
Once completed you can run the mke2fs utility on these new partitions to make the filesystem on the respective partition. If using ext3 use the -j option. Be sure to use the correct filesystem creation command based on the filesystems you are using.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 09:26 AM
09-30-2004 09:26 AM
Re: Adding Second HDD
Once completed you can run the mke2fs utility on these new partitions to make the filesystem on the respective partition. If using ext3 use the -j option. Be sure to use the correct filesystem creation command based on the filesystems you are using.
From here add the requisite entry in the /etc/fstab and mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 01:24 AM
10-04-2004 01:24 AM
Re: Adding Second HDD
try fdisk /dev/sd
type "o" to create a new empty partition table.
create new partitions with "n".
set the id to 83 (Linux) with "t" or 82 (Linux Swap) or 8e (Linux LVM) or fd (Linux raid auto), ...
type "w" to write your selection.
Then you have to create the filesystem with (mkfs.ext2 /dev/sd
now it's ready to mount the partition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2004 02:30 AM
10-04-2004 02:30 AM
Re: Adding Second HDD
first of all it's important to determine your real configuration.
Please send us the output of dmesg, /proc/scsi/scsi, fstab.
Regards,
Xyko