Linux fdisk question (Oracle Enterprise Linux)


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Linux fdisk question (Oracle Enterprise Linux)
# 1  
Old 05-22-2013
Linux fdisk question (Oracle Enterprise Linux)

OS: Oracle Enterprise Linux 6.2
Hypervisor: VMWare workstation 9


I created a VM and attached a 7gb virtual disk to it.

Using fdisk , I partioned the disk like below. The filesystems mounted on this is working fine. But I am seeing the message
Code:
Partition n does not end on cylinder boundary.

for each partitions as shown below.
Code:
# fdisk -l

Disk /dev/sda: 7516 MB, 7516192768 bytes
255 heads, 63 sectors/track, 913 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: 0x0006b683

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      102400   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              13         144     1049600   83  Linux
Partition 2 does not end on cylinder boundary.
/dev/sda3             144         275     1049600   82  Linux swap / Solaris
Partition 3 does not end on cylinder boundary.
/dev/sda4             275         914     5137408    5  Extended
Partition 4 does not end on cylinder boundary.
/dev/sda5             275         914     5136384   83  Linux

Why am I getting this message ?
Can this be ignored ?
# 2  
Old 05-22-2013
This is an old warning which doesn't apply to modern disks. You can ignore it, especially on a virtual disk which doesn't actually have cylinders in any sense of the word.

Beware that very small ext2/3 partitions may have a small number of inodes, which can limit the number of files you put on a filesystem even when all available space isn't exhausted. You can adjust how many inodes you get when you create the filesystem, but it's very very difficult to add more later.
This User Gave Thanks to Corona688 For This Post:
# 3  
Old 06-15-2013
regarding your error messages ...

if you look at your partitions, each preceding partition ends exactly on the start of the succeeding partition (i.e., SDA1 ends at cylinder 13 where SDA2 starts, SDA2 ends on cylinder 144 where SDA3 starts, etc.). SDA1 should end at cylinder 13 and SDA2 should start at cylinder 14, SDA2 should end at cylinder 144 and SDA3 should start at cylinder 145 ....
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Linux

Oracle Enterprise Linux

Simple question: i need a linux distro wich support Veritas Storage,Veritas said Oracle Enterprise Linux is supported. The question is: where to download Oracle Enterprise Linux? I have tried https://edelivery.oracle.com But i found only Oracle Linux Server aka unbreakable Linux. Where to... (0 Replies)
Discussion started by: Linusolaradm1
0 Replies

2. BSD

OpenBSD fdisk - Linux fdisk compatibility ?

Hello, MBR partition table made by linux fdisk looks certainly not correct when printed by openbsd fdisk: Partition table created on linux (centos 6.3): # fdisk -l /dev/sdc Disk /dev/sdc: 10.7 GB, 10737418240 bytes 255 heads, 63 sectors/track, 1305 cylinders Units = cylinders of 16065 *... (2 Replies)
Discussion started by: vilius
2 Replies

3. Red Hat

hot-add disk in oracle enterprise linux 5.5

Hi all, I have an Oracle Enterprise Linux 5.5 server which is a virtual guest on a vSphere host. I have provisioned 500GB disk space from SAN. I then migrated the VM from a 200GB disk onto the new 500GB disk. I then increased the disk space allocated to the VMware to the maximum size of... (7 Replies)
Discussion started by: Tommyk
7 Replies
Login or Register to Ask a Question