Playing windows ga,es through wine, but not installing them in Linux?

Try it and see.. only takes seconds to install wine. Don't forget the set the .exe as executable. Easy way is to right click \ properties \ permissions \ allow executing as program. You are on ubuntu right?
 
Try it and see.. only takes seconds to install wine. Don't forget the set the .exe as executable. Easy way is to right click \ properties \ permissions \ allow executing as program. You are on ubuntu right?
Mint 10.
Better bet is to play via PlayOnLinux: http://www.playonlinux.com/en/

I got my missus' Ubuntu laptop running every version of the Sims including the latest version on it without any issue at all.

Can I run a game already installed through windows?
 
I think mint works the same right? Just "sudo apt-get install wine"

You could have had your answer by now if you had tried it.

I'd say MasterPlan1 is right and it depends on how the games uses the registry. Plenty of games will have registration information in there and so will probably fail to run. Some may run with a nocd. Some won't run even if installed properly on linux.
 
Its generally not a good idea as its easy to break stuff.. but if you really want to you can do a "sudo nautilus" to get a file browser with root access

(if thats what you are asking because in typical Edward78 style you have completely failed at explaining properly what you want)
 
Its generally not a good idea as its easy to break stuff.. but if you really want to you can do a "sudo nautilus" to get a file browser with root access

(if thats what you are asking because in typical Edward78 style you have completely failed at explaining properly what you want)

I just need to make the eve exe executable. Still won't let me make it executable. :( I just want to play a game sheeesh.
 
Last edited:
sudo chmod a+x /media/2280F6CE80F6A805/Program Files/CCP/EVE.exe

Returns chmod: cannot access `/media/2280F6CE80F6A805/Program': No such file or directory
chmod: cannot access `Files/CCP/EVE.exe': No such file or directory

Yeah its cos you didnt have the concatenation (?), you need to do:

sudo chmod a+x /media/2280F6CE80F6A805/Program\ /Files/CCP/EVE.exe

Or something similar. As it treats "Program" and "Files" as 2 different commands, an EOL and SOL (Start/End of Line).
 
I would do...

sudo chmod a+x "/media/2280F6CE80F6A805/Program Files/CCP/EVE.exe"

..i think

Brackets should treat it as 1 string and not 2 seperate commands
 
My eve is at /media/2280F6CE80F6A805/Program Files/CCP/EVE

So why does sudo chmod a+x /media/2280F6CE80F6A805/Program\ /Files/CCP/EVE/EVE.exe return that
chmod: cannot access `/media/2280F6CE80F6A805/Program /Files/CCP/EVE/EVE.exe': No such file or directory if I try sudo chmod a+x /media/2280F6CE80F6A805/Program\ /Files/CCP/EVE.exe I also get
chmod: cannot access `/media/2280F6CE80F6A805/Program /Files/CCP/EVE.exe': No such file or directory
 
did you try..

sudo chmod a+x "/media/2280F6CE80F6A805/Program Files/CCP/EVE.exe"

??

I still get the same with /eve.exe & eve/eve.exe

sudo chmod a+x "/media/2280F6CE80F6A805/Program Files/CCP/EVE/EVE.exe"
chmod: cannot access `/media/2280F6CE80F6A805/Program Files/CCP/EVE/EVE.exe': No such file or directory

I want to know where does it think eve is? In properties in gnomr it says Location is /media/2280F6CE80F6A805/Program Files/CCP/EVE.
 
Back
Top Bottom