dbbolton |
Jeudi 22 Décembre 2011 à 21:15
|
dbbolton
|
I first installed Steam using POL in the standard location, "$HOME/.PlayOnLinux". However, I only had 2GiB free on my home partition, so I mv'ed it to my media partition and left a symlink like so
mv .PlayOnLinux /media/files
ln -s /media/files/.PlayOnLinux ~/.PlayOnLinux
I then did a "ls -l ~/.PlayOnLinux" to ensure sane permissions. When I tried to launch Steam from POL, it crashed. This did not happen before.
I rm-ed the whole directory and started over, keeping the same link-directory structure as listed above. This time Steam won't even install. POL complains that it can't find the Steam.exe binary.
Why doesn't it work when I move the directory and leave a symbolic link?
|
Quentin PÂRIS |
Jeudi 22 Décembre 2011 à 21:31
|
Quentin PÂRIS
|
Hi,
It does not work because POL is using find command, which gives him the wrong path.
You might try to edit playonlinux/lib/Variables.py to change your home path
|
dbbolton |
Jeudi 22 Décembre 2011 à 21:34
|
dbbolton
|
Or better yet, perhaps the use of the find command should simply have the -L option to avoid the issue altogether.
From what I can gather, the workaround should be this
-- homedir = os.environ["HOME"]
++ homedir = "/media/files"
But I tried this and got the same error. What else do I need to change? Edité par dbbolton
|
dbbolton |
Jeudi 22 Décembre 2011 à 21:52
|
dbbolton
|
I also did this
grep -in "find" /usr/share/playonlinux/*
and it gave no relevant results. Where is the find call coming from?
|
Quentin PÂRIS |
Vendredi 23 Décembre 2011 à 11:06
|
Quentin PÂRIS
|
lib/scripts.lib mainly (I think)
|
draco31.fr |
Jeudi 5 Janvier 2012 à 8:34
|
draco31.fr
|
Hi,
I had the same problem of free space, and saw the bug #609.
( http://www.playonmac.com/fr/issue-609.html )
As mentioned in the bug report, for me, the problem was not related to PlayOnLinux but related to the noexec option of the target partition (/media/files in your case).
You can see that you are in the same case by looking into the file /proc/mounts (more precise than the output of the 'mount' command or '/etc/mtab' on my Xubuntu 11.10 )
I hope this could help you. Edité par draco31.fr
|