maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Games (https://talk.maemo.org/forumdisplay.php?f=12)
-   -   Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace (https://talk.maemo.org/showthread.php?t=64822)

maxximuscool 2010-10-31 23:40

Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Hey guys I have finally achieved my little test with installing Games to the N900 into eMMC 27GB partition instead of 2GB Opt partition. After a lot of Trail and errors I've succeeded :) Got my Sim3 folder intalled on my FAT32 partition instead of Opt. Saving a hug chunk of space in Opt.

The process may takes quite a bit of work but it worth the time and efforts. I've simplified the process to make it Newbie compatible :D

Here is the step:

1. First extract your xxx.ipk file with either zip utilities such 7zips or any others.
http://img121.imageshack.us/img121/6000/71701984.jpg


2. Connect the N900 to your Computer via SSH (You can do via commandline also but required more works). Screenshots
http://img808.imageshack.us/img808/1285/85238834.jpg


3. Create a folder called Games (Anything you would like in this example I'll use "Games") in /home/user/ directory. And right click on the Games folder then set the permision to user 29999. (Look at the screenshots)
http://img840.imageshack.us/img840/2770/16552814.jpg
http://img233.imageshack.us/img233/8621/89308166.jpg
http://img834.imageshack.us/img834/541/25218070.jpg

4. Now browse to your MyDocs partition "/home/user/MyDocs/" and create another folder called Games or anything you'd like.
- right click on Games and apply the permission like the picture below.
http://img151.imageshack.us/img151/6087/93460942.jpg

- Create a folder called Sim3 (for game called Sim3, for other games use the appropriate name for it. You'll need it later), and inside the Sim3 folder create another folder in the following path like: /home/user/MyDocs/Games/Sim3/usr/palm/com.ea.app.sims

Copy the extracted files from .ipk file and copy it to your
http://img253.imageshack.us/img253/723/38091637.jpg

5. inside /home/user/MyDocs/Games/Sim3/usr/palm/applications/com.ea.app.sims/
folder, you should now see a file called "sims" right click and properties and check the permission setting. Should look like below:
http://img201.imageshack.us/img201/6596/sims.jpg

Click OK to confirm.



6. Go back to /home/user/Games, and copy the file called: sims from your "ipk" extracted folder to here.
Right click and set the permission like below:
http://img829.imageshack.us/img829/5998/37943419.jpg

7. Now this is the SymLink part. On your N900, open Xterminal and login as ROOT.

root
for file in /home/user/MyDocs/Games/Sim3/usr/palm/applications/com.ea.app.sims/res_sims3/; do ln -s "$file" /home/user/Games/Sim3/; done



Finally:

Now create these files for Sim3 game:
You can create the icon file by using desktopgen command, make sure you put the Appinfo.json into /home/user/Games/Sim3 then:

root
preenv
desktopgen /home/user/Games/Sim3/appinfo.json




For Asphalt5 and Monopoly and few other games you will have to create a folder inside /home/user/Game/Asphalt5/Asphalt5

This can be done via SSH or commandline.
Xterminal: mkdir /home/user/Games/Asphalt5/Aphalt5
SSH: Create new directory
Copy the file called: Asphalt5 to the folder you just created and then symlinks other files from the FAT32 there.

for file in /home/user/MyDocs/Games/Asphalt5/usr/palm/applications/com.gameloft.app.asphalt5/Asphalt5/*; do ln -s "$file" /home/user/Games/Asphalt5/Asphalt5/; done

Following this step for Monopoly as well and other games :)


Done!
Enjoy! :)
I may have missed a few steps along the way but this should be good enough for now. This tutorial is based on Sim3 game :) it works for NFS Undercover and others as well.

Sorry I forgot to remove some old steps i took but now it should be fine :) I have removed the old step 6 and now should make the tutorial much easier.


Good luck :D

cedlmw 2010-11-01 00:00

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
thanks for this! seems a bit complicated though :P

maxximuscool 2010-11-01 00:37

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by cedlmw (Post 859085)
thanks for this! seems a bit complicated though :P

Complicated but will save you a lot of space :)

RenaldoTT 2010-11-01 00:45

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
The first part is simple enough and I don't mind doing it but creating files? I don't have SSH do I don't know how to do this

maxximuscool 2010-11-01 00:58

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by RenaldoTT (Post 859125)
The first part is simple enough and I don't mind doing it but creating files? I don't have SSH do I don't know how to do this

Have you got a Windows Machine or Linux?
Creating file is easy. Just open up text editor and paste the setting in and rename it to .desktop and .service.

Install SSH and WiNSCP on windows machine and you're good to go. Otherwise if you're a Commandline sage then you should not having any difficulty in dooing it via commandline, GUI method is faster and easier

maxximuscool 2010-11-01 01:44

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Tested this method with Need for speed, Monopoly, Asphalt5 and Sim3
It works flawlessly and now I do not need the game folders in my Opt :D

Saved lots of MBs, the more games you've got the more you saved :D

for Asphalt5 you'll need to make a save folder :)

mkdir -p /home/user/webos/gamesave
ln -s /home/user/webos/gamesave /media/internal

F2thaK 2010-11-01 01:54

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
sorry to hijack thread but what is the quality of Ashphalt game compared to NFSU? thanks cant be bothered doing all this if the games no good. cant really be bothered doing it either way.... nice tut though Maxx.

maxximuscool 2010-11-01 02:21

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by f2thak (Post 859155)
sorry to hijack thread but what is the quality of Ashphalt game compared to NFSU? thanks cant be bothered doing all this if the games no good. cant really be bothered doing it either way.... nice tut though Maxx.

Depends, Asphalt5 is like Need for speed underground, NFSU is need for speed undercover.

Story line is different. Different cars and different maps and customisation.

RenaldoTT 2010-11-01 02:24

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Asphalt usually has better gameplay on handhelds though because Gameloft makes great games

ryanl33x1511 2010-11-01 02:43

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
are these for NITDROID ?

F2thaK 2010-11-01 02:51

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
palm pre games mate

AgogData 2010-11-01 03:16

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
thats a great thread but i don't use ssh apps, can i do this through xterm or file box ?

viovoxer 2010-11-01 10:38

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
hi mate.
a simple but serious question.
this step need preenv installed in my n900 right?
can you advice me how to install preenv because it seem i have problem to install to pr1.3.
error said: E: Packages damage
tq

mido.fayad 2010-11-01 16:55

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
thanks for ur work but i think that increasing home partition is better than this and is so easy and u won't do any complicated processes to make game run

see images from my phone

http://img827.imageshack.us/img827/4...9010118463.png

http://img831.imageshack.us/img831/7...9010118462.png

maxximuscool 2010-11-01 20:09

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by viovoxer (Post 859423)
hi mate.
a simple but serious question.
this step need preenv installed in my n900 right?
can you advice me how to install preenv because it seem i have problem to install to pr1.3.
error said: E: Packages damage
tq

Yes you'll need Preenv.
I got PR1.3 but I don't get those error.

Please follow the wiki regarding this issue. :)

maxximuscool 2010-11-01 20:16

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by mido.fayad (Post 859875)
thanks for ur work but i think that increasing home partition is better than this and is so easy and u won't do any complicated processes to make game run

see images from my phone

http://img827.imageshack.us/img827/4...9010118463.png

http://img831.imageshack.us/img831/7...9010118462.png


Yes that method is also work. But there is a problem, the device must be wiped clean before you can resizing the ext3 partition, that is what I think.

Also people wouldn't want to do a clean installed.

But yes there is two options here :D
My way or Your way :) I preferred mine because I'm too lazy to reparitioning and I can keep my device 27.0GB like standard, I can reflashing eMMC anytime.

maxximuscool 2010-11-01 20:19

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by AgogData (Post 859189)
thats a great thread but i don't use ssh apps, can i do this through xterm or file box ?

You can mate, just convert it to xterminal commands :)

The copy and replacing, extracting part can be done via xterminal easily if you follow the Wiki of pre-env. Then converting all the SSH part to Xterminal. Sorry you it takes longer to do from commandline on the N900 because of the keyboard :D

mido.fayad 2010-11-01 20:32

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by maxximuscool (Post 860120)
Yes that method is also work. But there is a problem, the device must be wiped clean before you can resizing the ext3 partition, that is what I think.

Also people wouldn't want to do a clean installed.

But yes there is two options here :D
My way or Your way :) I preferred mine because I'm too lazy to reparitioning and I can keep my device 27.0GB like standard, I can reflashing eMMC anytime.



with my way you can reflash ur mobile as u want also :D
and u didn't need to do any thing in the terminal

i made it by very easy way just only i changed my emmc image and then i flashed it to my mobile

so it's very easy and if i want to refalsh emmc again i will use the same image so there is nothing to be lost :D

so my way is only as u falsh ur emmc :)

AgogData 2010-11-01 21:10

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by maxximuscool (Post 860122)
You can mate, just convert it to xterminal commands :)

The copy and replacing, extracting part can be done via xterminal easily if you follow the Wiki of pre-env. Then converting all the SSH part to Xterminal. Sorry you it takes longer to do from commandline on the N900 because of the keyboard :D

if it will make my /opt space less i wanna do it cuz i have about 120 MB only and preenv games are over 200 MB each , how can i set the premission to 2999 via xterm ?

hesham 2010-11-01 21:25

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
medo ur way is good very good but i dont like it for future things like if i installed 10 games every game 500 mg like this big games so all the space is lost but this way u can use all the 30gb u have wihout stop untill u full it if im wrong plz correct

werks 2010-11-01 21:28

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
hey sorry,
i followed the steps, but when i do desktopgen,
it says its not an executable.

maxximuscool 2010-11-01 21:33

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by werks (Post 860179)
hey sorry,
i followed the steps, but when i do desktopgen,
it says its not an executable.

desktopgen is doing at the end of process. :D Sorry my steps a bit mixed up.

I just updated the steps :)
First time running the game it may not work, so run it once more and it should work fine after that :D

villyjean 2010-11-03 18:58

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by maxximuscool (Post 859064)
hey guys i have finally achieved my little test with installing games to the n900 into emmc 27gb partition instead of 2gb opt partition. After a lot of trail and errors i've succeeded :) got my sim3 folder intalled on my fat32 partition instead of opt. Saving a hug chunk of space in opt.

The process may takes quite a bit of work but it worth the time and efforts. I've simplified the process to make it newbie compatible :d

here is the step:

1. first extract your xxx.ipk file with either zip utilities such 7zips or any others.
http://img121.imageshack.us/img121/6000/71701984.jpg


2. connect the n900 to your computer via ssh (you can do via commandline also but required more works). screenshots
http://img808.imageshack.us/img808/1285/85238834.jpg


3. create a folder called games (anything you would like in this example i'll use "games") in /home/user/ directory. And right click on the games folder then set the permision to user 29999. (look at the screenshots)
http://img840.imageshack.us/img840/2770/16552814.jpg
http://img233.imageshack.us/img233/8621/89308166.jpg
http://img834.imageshack.us/img834/541/25218070.jpg

4. now browse to your mydocs partition "/home/user/mydocs/" and create another folder called games or anything you'd like.
- right click on games and apply the permission like the picture below.
http://img151.imageshack.us/img151/6087/93460942.jpg

- create a folder called sim3 (for game called sim3, for other games use the appropriate name for it. You'll need it later), and inside the sim3 folder create another folder in the following path like: /home/user/mydocs/games/sim3/usr/palm/com.ea.app.sims

copy the extracted files from .ipk file and copy it to your
http://img253.imageshack.us/img253/723/38091637.jpg

5. inside /home/user/mydocs/games/sim3/usr/palm/applications/com.ea.app.sims/
folder, you should now see a file called "sims" right click and properties and check the permission setting. Should look like below:
http://img201.imageshack.us/img201/6596/sims.jpg

click ok to confirm.



6> now this is the final part. You can do this to all other games that listed as working for preenv by changing the xx.desktop file and pointing it to the right location of where the game data in mydocs.

Now back to ssh client on your computer and browse to /home/user/.local/share/application/hildon
http://img266.imageshack.us/img266/5703/23413972.jpg

copy the file called sim3-palm.desktop to that location.

Go back to /home/user/.local/ and browse to /home/user/.local/dbus-1/services/, copy the file called sim3-palm.service here.

Go back to /home/user/.local/ and browse to folder icons and copy your sim3-plam.png here.

7. go back to /home/user/games, and copy the file called: sims from your "ipk" extracted folder to here.
Right click and set the permission like below:
http://img829.imageshack.us/img829/5998/37943419.jpg

8. now this is the symlink part. On your n900, open xterminal and login as root.

Root
for file in /home/user/mydocs/games/sim3/usr/palm/applications/com.ea.app.sims/res_sims3/; do ln -s "$file" /home/user/games/sim3/; done



finally:

Now create these files for sim3 game:
You can create the icon file by using desktopgen command, make sure you put the appinfo.json into /home/user/games/sim3 then:

root
preenv
desktopgen /home/user/games/sim3/appinfo.json




for asphalt5 and monopoly and few other games you will have to create a folder inside /home/user/game/asphalt5/asphalt5

this can be done via ssh or commandline.
Xterminal: mkdir /home/user/games/asphalt5/aphalt5
ssh: Create new directory
copy the file called: asphalt5 to the folder you just created and then symlinks other files from the fat32 there.

for file in /home/user/mydocs/games/asphalt5/usr/palm/applications/com.gameloft.app.asphalt5/asphalt5/*; do ln -s "$file" /home/user/games/asphalt5/asphalt5/; done

following this step for monopoly as well and other games :)


done!
Enjoy! :)
i may have missed a few steps along the way but this should be good enough for now. This tutorial is based on sim3 game :) it works for nfs undercover and others as well.

Good luck :d


ok everything is cool and great,but why there are only two stupid games.. Is there any other games i can install.. For example fiffa ,or gta ot something like that...just to have choice for games..i checked out all websites in google and everywhere is explained only about this nfsuc and sim3.. Ok i have them,but they are not interesting for me..!!! Where can i find more ipk files different games and please dont send me the link for palm,because there i have to pay 9 us dollars for this :)

cddiede 2010-11-03 19:07

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by villyjean (Post 862500)
Where can i find more ipk files different games and please dont send me the link for palm,because there i have to pay 9 us dollars for this :)

Step 1:
Find/borrow a Palm WebOS Device

Step 2:
BUY the games you want on the WebOS app catalog

Step 3:
Transer the .ipk files for those games to your N900 (google the procedure, it's not that hard)


If you don't feel like doing then, and want someone to share some warez site link where you can illegally download WebOS games, then:

Step 1:
Bugger off

Step 2:
Cry me a river

SalmanAbbas 2010-11-04 09:09

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
copy the file called sim3-palm.desktop to that location.

Go back to /home/user/.local/ and browse to /home/user/.local/dbus-1/services/, copy the file called sim3-palm.service here.

Go back to /home/user/.local/ and browse to folder icons and copy your sim3-plam.png here.


hey max i dunno where to find these files sim3-palm.desktop sim3-palm.service sim3-plam.png

any help would be greatly appreciated

funkmunk 2010-11-04 11:53

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by SalmanAbbas (Post 863008)
copy the file called sim3-palm.desktop to that location.

Go back to /home/user/.local/ and browse to /home/user/.local/dbus-1/services/, copy the file called sim3-palm.service here.

Go back to /home/user/.local/ and browse to folder icons and copy your sim3-plam.png here.


hey max i dunno where to find these files sim3-palm.desktop sim3-palm.service sim3-plam.png

any help would be greatly appreciated

Even I am trying to install Need for Speed undercover and cannot find the palm.destop,palm.service and .png file mentioned.Where to I find them?

kolos 2010-11-04 12:28

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by funkmunk (Post 863130)
Even I am trying to install Need for Speed undercover and cannot find the palm.destop,palm.service and .png file mentioned.Where to I find them?

Just proceed with step 7.

If I understand right these 3 files are already stored where they should be after "desktopgen" is executed.


Quote:

Originally Posted by maxximuscool (Post 859064)
Finally:

Now create these files for Sim3 game:
You can create the icon file by using desktopgen command, make sure you put the Appinfo.json into /home/user/Games/Sim3 then:

root
preenv
desktopgen /home/user/Games/Sim3/appinfo.json


kolos 2010-11-04 12:51

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by maxximuscool (Post 859064)
6> Now this is the final part. You can do this to all other games that listed as Working for Preenv by changing the xx.desktop file and pointing it to the right location of where the game data in MyDocs.

Now back to SSH client on your computer and browse to /home/user/.local/share/application/hildon
http://img266.imageshack.us/img266/5703/23413972.jpg

copy the file called sim3-palm.desktop to that location.

Go back to /home/user/.local/ and browse to /home/user/.local/dbus-1/services/, copy the file called sim3-palm.service here.

Go back to /home/user/.local/ and browse to folder icons and copy your sim3-plam.png here.

Another thing, those who flashed their eMMC with latest vanilla (RX-51_2009SE_10.2010.13-2.VANILLA_PR_EMMC_MR0_ARM.bin) have these files in completely different loaction that is described in tutorial.

For instance ".desktop" files are stored in /usr/share/applications/hildon/.

So, I think that step 6 in tutorial could be easily skipped.


EDIT:

I just figured it out that step 6 suggests to move this files from their original location to the new one (/home/user/.local/...)

maxximuscool, why is that good? I don't see any benefit from this action.


maxximuscool, thanks for tutorial! :)

LippiVan 2010-11-04 17:36

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
thx a lot maxximuscool,
this method is working great on asphalt5, settlers and brothers in arms so far!

edit: also sims3 and N.O.V.A working great from MyDocs!

funkmunk 2010-11-04 17:58

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
1 Attachment(s)
Quote:

Originally Posted by kolos (Post 863176)
Just proceed with step 7.

If I understand right these 3 files are already stored where they should be after "desktopgen" is executed.


So I proceed with step 7 and it goes fine but when I reach step 8 and follow the instructions I get an error and cannot proceed further.

Where am I going wrong? Can someone help me out?

Screenshot attached below.

kolos 2010-11-04 18:51

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by funkmunk (Post 863489)
So I proceed with step 7 and it goes fine but when I reach step 8 and follow the instructions I get an error and cannot proceed further.

Where am I going wrong? Can someone help me out?

Screenshot attached below.

Did you create symlinks before executing desktopgen?

Quote:

Originally Posted by maxximuscool (Post 859064)
8. Now this is the SymLink part. On your N900, open Xterminal and login as ROOT.

root
for file in /home/user/MyDocs/Games/Sim3/usr/palm/applications/com.ea.app.sims/res_sims3/; do ln -s "$file" /home/user/Games/Sim3/; done

(in command line just replace all "sims" and "sims3" with "nfsuc")

Check inside /home/user/Games/Nfsuc/ if you have shortcut to folder res_nfsuc.

villyjean 2010-11-04 19:03

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
I installed perfectly - nfsuc,but when i try any other game and when i write the command - chmod +rwx (file name of the game) and its says :

chmod:(file name of the game) : No such file or directory

whyyyyyyyyyyyyyy? Please is there anybody who can help me?

kolos 2010-11-04 19:20

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by villyjean (Post 863538)
I installed perfectly - nfsuc,but when i try any other game and when i write the command - chmod +rwx (file name of the game) and its says :

chmod:(file name of the game) : No such file or directory

whyyyyyyyyyyyyyy? Please is there anybody who can help me?

Probably you didn't write right path to game's executing file. Some games have this file inside folder res_****. Check step 8 in maxximuscool tutorial there is mentioned the difference between Sims3 and Asphalt5/Monopoly.

To quickly check folder structure and files inside them use FileBox .

Rapparee 2010-11-04 20:26

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
When I get to the SymLink i get a error:

sh: In: not found

funkmunk 2010-11-04 20:36

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by kolos (Post 863531)
Did you create symlinks before executing desktopgen?



(in command line just replace all "sims" and "sims3" with "nfsuc")

Check inside /home/user/Games/Nfsuc/ if you have shortcut to folder res_nfsuc.

Did as you said and went till the last step and now I can see the NFSUC icon in the app list but when I click it,it just shows me a black screen with the loading bar and then closes off in a few seconds.

Seems like I screwed up somewhere else now.Need help.

If these instructions are for noobs how come I am having so many problems?

kolos 2010-11-04 21:46

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by funkmunk (Post 863618)
Did as you said and went till the last step and now I can see the NFSUC icon in the app list but when I click it,it just shows me a black screen with the loading bar and then closes off in a few seconds.

Seems like I screwed up somewhere else now.Need help.

If these instructions are for noobs how come I am having so many problems?

You are almost there. Check permissions of folders and files again (screenshots in steps 4,5 & 7).

villyjean 2010-11-05 04:11

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
thank you very much,but i dont get it..i am readding it many times,but i dont get it..

root
for file in /home/user/MyDocs/Games/Sim3/usr/palm/applications/com.ea.app.sims/res_sims3/; do ln -s "$file" /home/user/Games/Sim3/; done
is this what i have to type in X-terminal and what do i have to replace? its really very complicated for me.. if it was explained and showd in youtube ,like the tutorial of - instalation of nfsuc,it would be much easier to undertand

scyzor 2010-11-05 08:12

Guys, you could just enable executability for MyDocs, make an applications folder in MyDocs and symlink it to /home/user.
Making MyDocs executable is considered a 'security risk' but I don't see how. It's working fine here.

Just edit /usr/sbin/mmc-mount and /etc/default/mount-opts to remove noexec and set fmask=777.

Careful, if you do this wrong you'll need a reflash.

Edit: Sorry, it's fmask=000.

shazosbourne 2010-11-05 08:59

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Quote:

Originally Posted by scyzor (Post 864090)
Guys, you could just enable executability for MyDocs, make an applications folder in MyDocs and symlink it to /home/user.
Making MyDocs executable is considered a 'security risk' but I don't see how. It's working fine here.

Just edit /usr/sbin/mmc-mount and /etc/default/mount-opts to remove noexec and set fmask=777.

Careful, if you do this wrong you'll need a reflash.

Sounds like a juicy, abridged answer to the issue. Care to do a:
  1. do
  2. then
  3. and
  4. and you're done!

?
That would be awesome!:D

scyzor 2010-11-05 09:31

Re: Preenv Tutorial: How to install game in eMMC FAT32 partition! Saving Opt partition freespace
 
Through the terminal:
1) sudo gainroot
2) apt-get install nano (if you don't have nano installed already)
3) nano /usr/sbin/mmc-mount
Edit it to: (without the '----')
------
#!/bin/sh
mount -t vfat -o $3,noauto,nodev,nosuid,noatime,nodiratime,utf8,uid =29999,shortname=mixed,dmask=000,fmask=000,rodir "$1" "$2" > /dev/null
------
Ctrl-X, then Y
4) nano /etc/default/mount-opts
Edit it to: (without the '----')
-----
# Options for mounting user's filesystems

home_opts="rw,noatime,errors=continue,commit=1,dat a=writeback"
fat_opts="noauto,nodev,nosuid,noatime,nodiratime,u tf8,uid=29999,shortname=mixed,dmask=000,fmask=000, rodir"
-----
Ctrl-X, then Y
5) exit
6) mkdir /home/user/MyDocs/pre
7) cp -r /home/user/applications /home/user/MyDocs/pre
8) ln -s /home/user/MyDocs/pre/applications /home/user

When you install games, install them to MyDocs/pre/applications.

Careful, if these steps are not taken carefully, you might have to go for a reflash


All times are GMT. The time now is 06:51.

vBulletin® Version 3.8.8