Results 1 to 6 of 6
My Host configuration as follows.
Acer 64 bit , Windows 7, 4gb RAM
I have installed Oracle Enterprise Linux(OEL 5.4) on VMWARE 7.0 I have assigned 30 GB vitual Hard ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 01-31-2013 #1Just Joined!
- Join Date
- Jan 2013
- Posts
- 3
space issue in VMware & OEL 5.4
My Host configuration as follows.
Acer 64 bit , Windows 7, 4gb RAM
I have installed Oracle Enterprise Linux(OEL 5.4) on VMWARE 7.0 I have assigned 30 GB vitual Hard disk space to setup. Later on I installed Oracle 11g R2 on the same server setup. Now I am getting space full error . When I give df-k or df -h it shows me
avaliable space is 28G , Utilised , space is 28G ,
Free space is 0 . Where as i have utilizes only 10g space . Further help is appriciated .
- 02-01-2013 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,144
Please post the output of "df", without any arguments, as well as the contents of /etc/fstab and the output of "fdisk -l"
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 02-01-2013 #3Just Joined!
- Join Date
- Jan 2013
- Posts
- 3
Hi Please find the details.
[root@localhost /]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
28345084 28338328 0 100% /
/dev/sda1 101086 20580 75287 22% /boot
tmpfs 610540 0 610540 0% /dev/shm
none 610540 104 610436 1% /var/lib/xenstored
-------------
[root@localhost /]# cat /etc/fstab
/dev/VolGroup00/LogVol00 / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
tmpfs /dev/shm tmpfs defaults 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
----------------
[root@localhost ~]# fdisk -l
Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 3916 31350847+ 8e Linux LVM
- 02-01-2013 #4Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,144
Well, your root file system is full. That is this line from df here:
My guess is that either you misconfigured Oracle and it has used all the space, or temporary or log files have sucked up all your space. First, look in /tmp, then in /var/log, and then in the Oracle data directories for files that are way too big.Code:/dev/mapper/VolGroup00-LogVol00 28345084 28338328 0 100% /
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 02-02-2013 #5Just Joined!
- Join Date
- Jan 2013
- Posts
- 3
- 02-02-2013 #6Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,144
Expanding a file system, even an LV, isn't hard. Add another partition or disc to the LV, and then run resize2fs (assuming your file system is ext2/3/4) to resize it. If you resize the root partition, then you may have to use the "lvm pvresize" first. That will resize the LV so that the resize2fs command will work properly. First, backup all your data to an external drive or to the host system, assuming it has enough space.
I think that VMware, like VirtualBox, has a tool to backup your image, so that would work as well for backup purposes before you start munging about with the VM "discs".Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote

