- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: new partition
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
02-08-2005 10:00 PM
02-08-2005 10:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 11:15 PM
02-08-2005 11:15 PM
Re: new partition
In case you want to create partition on first IDE slave drive
fdisk /dev/hdb
then type m to see available commands.
After you've created partiton you must also create a file system on that partition.
mkfs /dev/hdb1
will create file system on first partition of the same drive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 11:21 PM
02-08-2005 11:21 PM
Re: new partition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 11:26 PM
02-08-2005 11:26 PM
Re: new partition
http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/install-guide/ch-partitions.html
You probably know most of this but there are some usefull examples for Linux
Hope this helps
Jean-Pierre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 11:34 PM
02-08-2005 11:34 PM
Solutionfdisk /dev/hdc
then
n
to create new partition.
then
p
to choose primary
then
1
this is a first partition on that empty drive.
then I hit enter to go with the default first sector.
then you should specify the last sector or you can give the exact size with +600M (for 600 MB for example).
after that you should also hit on
w
to write the partition table to the disk.
Exit the fdisk with q
The partition now is ready .You have to make the file system on it.
mkfs -j /dev/hdc1
will create ext3 file system on that partition.
now you can create a directory like /space
and mount that partition
mount /dev/hdc1 /space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2005 01:28 AM
02-09-2005 01:28 AM
Re: new partition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2005 06:23 AM
02-10-2005 06:23 AM
Re: new partition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2005 06:55 AM
02-10-2005 06:55 AM