how to increse c drive to install wine applications

Asked by rajusenthi

I've tried to install windows based application using wine.After reaching the final stage of the installation ,Installation wizard says "1.17 GB space required to install the application,but C drive have 0.79 GB only".How can I increse C drive space for wine installations?(I'm using Ubuntu 8.10 with WinXP.Ubuntu installed in G drive, which has more than 24 GB space.Nearly 14 GB free space available)

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu wine Edit question
Assignee:
No assignee Edit question
Solved by:
Scott Ritchie
Solved:
Last query:
Last reply:
Revision history for this message
Lars Düsing (lars.duesing) said :
#1

Normally the C drive in wine is /home/<user>/.wine/drive_c (or such, don't have a wine installation at the hand)
Is the windows XP drive such low on space?

Revision history for this message
Loye Young (loyeyoung) said :
#2

The "C:" drive in Wine is not really a drive. It's a folder on your hard drive. Wine tricks the Windows programs into thinking it's the C: drive. Consequently, if you have a standard installation of wine, the amount of space reported to the Windows program is the amount of space the user has available in the home directory.

Sounds like you have either (i) a permissions problem, (ii) a quota on how much hard drive space the system will allocate to your home folder, or (iii) your "free space" is not in the same partition as the Wine folder. Of the three, my bet would be on the last.

Post the results of the following command:

      df -h

Happy Trails,

Loye Young

Revision history for this message
razone (zoujichun3166) said :
#3

help

Revision history for this message
rajusenthi (namasivaya07) said :
#4

Sorry for the delay.Out put of the df -h is:
masani@ubuntu:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/host/ubuntu/disks/root.disk
                      3.7G 792M 2.8G 23% /
tmpfs 236M 0 236M 0% /lib/init/rw
varrun 236M 212K 235M 1% /var/run
varlock 236M 4.0K 236M 1% /var/lock
udev 236M 2.9M 233M 2% /dev
tmpfs 236M 104K 235M 1% /dev/shm
/dev/sda8 25G 11G 15G 41% /host
lrm 236M 2.0M 234M 1% /lib/modules/2.6.27-11-generic/volatile
/dev/loop1 939M 489M 403M 55% /home
/dev/loop2 3.7G 2.0G 1.6G 56% /usr
/dev/sdb1 2.0G 1.4G 533M 73% /media/disk
masani@ubuntu:~$

Revision history for this message
Scott Ritchie (scottritchie) said :
#5

The partition Wine is using is the one for your /home partition: /dev/loop1 939M 489M 403M 55% /home
That partition only has a gigabyte of space, which is why you are running into issues. If using a separate /home partition, in general you want most of the free space on the system going there.

Revision history for this message
Best Scott Ritchie (scottritchie) said :
#6

One other option is to create a new mount point for your Wine folder (eg /home/user/.wine) pointing to a new partition with lots of free space.

Revision history for this message
rajusenthi (namasivaya07) said :
#7

Thanks Scott Ritchie, that solved my question.