- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Mount new HD
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
05-09-2006 11:00 PM
05-09-2006 11:00 PM
Mount new HD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2006 01:25 AM
05-10-2006 01:25 AM
Re: Mount new HD
- Partition your disk
# fdisk /dev/sdb
n
p
Enter
Enter
w
- Create the file system
# mkfs -t ext2 /dev/sdb1
- Create the mount point
mkdir /disk1
- Mount the disk
mount /dev/sdb1 /disk1
- Edit /etc/fstab so the disk can be mounted at boot time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2006 02:22 AM
05-10-2006 02:22 AM
Re: Mount new HD
The new HD have the partition already , so it didn't need to be partition , if so , do i still need to create the file system by " Create the file system
# mkfs -t ext2 /dev/sdb1 "
will this command erase the data in the HD , actually the new HD have partition and data inside , it is not brand new HD .
thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2006 02:24 AM
05-10-2006 02:24 AM
Re: Mount new HD
Most server class boxes need to be booted into a disk utility application to modify storage.
HP servers come with a CD to boot with that will take you to a menu that permits you to add the new disk to the disk array.
The IBM euivalent is built into the ROM-Bios.
After configuring the disk, it will be available.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2006 02:39 AM
05-10-2006 02:39 AM
Re: Mount new HD
Just install the new disk, check the file system type with fdisk -l, then just mount the partition:
mount -t
Example:
mount -t ext2 /dev/sdb1 /datadisk
Edit /etc/fstab and add an entry for this file system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2006 07:12 AM
05-10-2006 07:12 AM
Re: Mount new HD
if you want to format it use fdisk command else you can use mount command to mount it and edit /etc/fstab file if you want to be mounted every time machine reboots.
-chakri