Prepare Oracle in VMware, suddenly found that the hard disk space is not enough, I have to add a virtual SCSI hard drive.
#fdisk / dev / sdb enters the fdisk command mode, press M to see help, n Create a new area Command (M for help): n Enter P to create the main partition (a total of 4, here I only build one OK) Command Action E Extended P Primary Partition (1-4) P Input Partition No. 1Partion Number (1-4): 1First Cylinder (1-1014, Default 1): 1 First Primary Partition Starting Disk Cylinder Last Cylindet OR Siza Or Sizem OR SIZEK: 2048M partition size, my new hard disk is 2GOK, the partition is completed. Next format #mkfs -t ext3 -c / dev / sdb1 format the second hard disk partition 1 is EXT3 file The system will then mount the partition to a directory #MKDIR Oracle established / oracle directory #mount / dev / sdb1 / oracle but then reload each restart, so modify / etc / fstab to automatically load #VI / ETC / fstab plus / dev / sdb1 / oracle ext3 defaults 1 2 to get taking care!