I am attempting to create a folder for my wineprefixes on my external hard disk. The plan is to symlink to that location from inside my user folder (ie. ~/.wine/PREFIXES -> $iomega/.wineprefixes)
For reference:
$iomega=/media/Iomega_HDD
This is a 400GB external drive with a single NTFS partition.
The plan is to create folders for all my WINEPREFIXes at $iomega/.wineprefixes
(Example: $iomega/.wineprefixes/Blizzard)
I keep getting the following error: wine: /media/Iomega_HDD/.wineprefixes is not owned by you
Okay, I figure, I'll make sure it's owned by me.
chown -R indubitableness.users $iomega/.wineprefixes
No go. Same error. Why is this happening? I'm seeing some posts that seem to imply that maybe wine just simply doesn't support making Prefixes outside of one's user folder. I really hope this isn't the case as I keep losing all my installed games every time I break my linux installs (every time I try some new unfamiliar advanced thing I have no qualifications for messing around with) and putting my prefixes on my back up drive would be the perfect solution.
wine: /intended/PREFIXdirectory/not owned by you
-
- Level 1
- Posts: 5
- Joined: Thu Jul 23, 2009 9:12 am
wine: /intended/PREFIXdirectory/not owned by you
On Thu, Jul 23, 2009 at 9:51 AM,
Indubitableness<[email protected]> wrote:
cause of your problems, but you shouldn't be using an NTFS partition
for wine, it can cause problems.
Is the partition mounted noexec?
--
-Austin
Indubitableness<[email protected]> wrote:
Wine doesn't limit prefixes to just your home folder. It's not theI am attempting to create a folder for my wineprefixes on my external hard disk. The plan is to symlink to that location from inside my user folder (ie. ~/.wine/PREFIXES -> $iomega/.wineprefixes)
For reference:
$iomega=/media/Iomega_HDD
This is a 400GB external drive with a single NTFS partition.
The plan is to create folders for all my WINEPREFIXes at $iomega/.wineprefixes
(Example: $iomega/.wineprefixes/Blizzard)
I keep getting the following error: wine: /media/Iomega_HDD/.wineprefixes is not owned by you
Okay, I figure, I'll make sure it's owned by me.
chown -R indubitableness.users $iomega/.wineprefixes
No go. Same error. Why is this happening? I'm seeing some posts that seem to imply that maybe wine just simply doesn't support making Prefixes outside of one's user folder. I really hope this isn't the case as I keep losing all my installed games every time I break my linux installs (every time I try some new unfamiliar advanced thing I have no qualifications for messing around with) and putting my prefixes on my back up drive would be the perfect solution.
cause of your problems, but you shouldn't be using an NTFS partition
for wine, it can cause problems.
Is the partition mounted noexec?
--
-Austin
-
- Level 1
- Posts: 5
- Joined: Thu Jul 23, 2009 9:12 am
This is how the partition is mounted. This is from the fstab
/dev/sdb1 /media/Iomega_HDD ntfs-3g umask=000 1 0
I also thought maybe that NTFS would cause problems, but in this case I don't have a lot of choice. This is a shared backup drive for windows and linux and I am unwilling to shrink it and make further partitions, although I could.
I've found a different solution. I'm making wine prefixes and backing them up on this drive as tar.gz files. It's still not what I wanted to do, but it's perfectly viable. If anyone knows why I'm getting this error I would still love to find out and would appreciate the help but it's no longer vitally important for my plan.
/dev/sdb1 /media/Iomega_HDD ntfs-3g umask=000 1 0
I also thought maybe that NTFS would cause problems, but in this case I don't have a lot of choice. This is a shared backup drive for windows and linux and I am unwilling to shrink it and make further partitions, although I could.
I've found a different solution. I'm making wine prefixes and backing them up on this drive as tar.gz files. It's still not what I wanted to do, but it's perfectly viable. If anyone knows why I'm getting this error I would still love to find out and would appreciate the help but it's no longer vitally important for my plan.
wine: /intended/PREFIXdirectory/not owned by you
Just to be sure, what does ls -al $iomega show?
--
-Austin
--
-Austin
Re: wine: /intended/PREFIXdirectory/not owned by you
You can't do that. WINEPREFIX have to point to the real directory. This is hard-coded requirement.Indubitableness wrote: ~/.wine/PREFIXES -> $iomega/.wineprefixes
You can always put your "virtual c:" drive where you want to. And if it's NTFS be ready for all sorts of issues.
wine: /intended/PREFIXdirectory/not owned by you
On Thu, Jul 23, 2009 at 23:35, Indubitableness<[email protected]> wrote:
partition, run mkfs on the file and mount it with a -o loop. That way
you could have an ext[234] / reiserfs mount using space from the NTFS
partition.
This has an example: (loadmin is not really needed AFAIK)
http://www.ibm.com/developerworks/linux ... ilesystem/
Gert
Sometinhg else that might be possible, is to create a file on the NTFSThis is how the partition is mounted. This is from the fstab
/dev/sdb1     /media/Iomega_HDD ntfs-3g   umask=000     1  0
I also thought maybe that NTFS would cause problems, but in this case I don't have a lot of choice. This is a shared backup drive for windows and linux and I am unwilling to shrink it and make further partitions, although I could.
partition, run mkfs on the file and mount it with a -o loop. That way
you could have an ext[234] / reiserfs mount using space from the NTFS
partition.
This has an example: (loadmin is not really needed AFAIK)
http://www.ibm.com/developerworks/linux ... ilesystem/
Gert