SSLMM
|
2010-10-25
, 15:03
|
Posts: 123 |
Thanked: 56 times |
Joined on Jun 2010
@ Portugal
|
#121
|
The Following User Says Thank You to SSLMM For This Useful Post: | ||
|
2010-10-25
, 15:22
|
|
Posts: 2,355 |
Thanked: 5,249 times |
Joined on Jan 2009
@ Barcelona
|
#122
|
The Following User Says Thank You to javispedro For This Useful Post: | ||
|
2010-10-25
, 16:10
|
Posts: 557 |
Thanked: 370 times |
Joined on Apr 2010
|
#123
|
Thanks Bundyo!
If it's OpenGL ES 2 there's no current way to fix it, but on Git I improved scaling for ES 1 apps.
|
2010-10-25
, 16:22
|
|
Posts: 2,361 |
Thanked: 3,746 times |
Joined on Dec 2007
@ Berlin - Love this city!!
|
#124
|
@zehjotkah, hi bro mind sharing how u overcame the 'segmentation fault' error when using SSH to transfer the game files??
|
2010-10-25
, 17:12
|
Posts: 188 |
Thanked: 53 times |
Joined on May 2010
|
#125
|
still needed?
sorry, had an important project today at work so I wasn't able to surf that much at the forums..
I just copied the files again.
no special work needed.
to copy them via SSH I installed OpenSSH-Server on my N900 and then I've configured Nautilus, the built in file manager at my Ubuntu 10.10 machine to SSH into my N900...
It will be mounted like it would be on USB.
|
2010-10-25
, 17:21
|
Posts: 1,397 |
Thanked: 2,126 times |
Joined on Nov 2009
@ Dublin, Ireland
|
#126
|
|
2010-10-25
, 17:59
|
Posts: 61 |
Thanked: 24 times |
Joined on Apr 2010
|
#127
|
|
2010-10-25
, 18:25
|
Posts: 100 |
Thanked: 543 times |
Joined on Jun 2010
@ Kiev, Ukraine
|
#128
|
# get root root # install preenv and OpenGLES1 (need extras-devel) apt-get install libgles1 preenv # create main game dir on eMMC card mkdir -p /home/user/MyDocs/Games/nfs # go to that dir and copy dowloaded .ipk file from desktop (or download directly here) cd /home/user/MyDocs/Games/nfs scp user@COMPUTER:/path/to/game/com.ea.app.nfsuc_20.0.28_all.ipk /home/user/MyDocs/Games/nfs # create file for loopback mount dd if=/dev/zero of=/home/user/MyDocs/Games/nfs/nfsu.ext2 count=120 bs=1024k # create ext2 filesystem on it mkfs.ext2 /home/user/MyDocs/Games/nfs/nfsu.ext2 # press 'y' # make mountpoint mkdir /mnt/nfsu # save it to the fstab echo -e "/home/user/MyDocs/Games/nfs/nfsu.ext2\t/mnt/nfsu\text2\tloop,auto\t0\t0" >> /etc/fstab # finally, mount it mount /mnt/nfsu/ # create symlynk from /usr/palm (NFSU installs there) ln -s /mnt/nfsu/ /usr/palm # extrack .ipk file dpkg -X /home/user/MyDocs/Games/nfs/com.ea.app.nfsuc_20.0.28_all.ipk /mnt/nfsu/ # make binary executable chmod +x /mnt/nfsu/applications/com.ea.app.nfsuc/nfsuc # create desktop launcher desktopgen /mnt/nfsu/applications/com.ea.app.nfsuc/appinfo.json
The Following 5 Users Say Thank You to divan For This Useful Post: | ||
|
2010-10-25
, 18:37
|
|
Posts: 2,355 |
Thanked: 5,249 times |
Joined on Jan 2009
@ Barcelona
|
#129
|
Ps. Are you after error reports or is there too many other things to fix at the moment?
"id": "com.gamemaker.gamename.stuff"
|
2010-10-25
, 19:40
|
|
Posts: 91 |
Thanked: 32 times |
Joined on Jan 2008
@ Near: Gilroy, CA
|
#130
|
My quick instruction for installing NFSU.
Use this manual on your own risk!
Go to the applications and press on NFSU icon.Code:# get root root # install preenv and OpenGLES1 (need extras-devel) apt-get install libgles1 preenv # create main game dir on eMMC card mkdir -p /home/user/MyDocs/Games/nfs # go to that dir and copy dowloaded .ipk file from desktop (or download directly here) cd /home/user/MyDocs/Games/nfs scp user@COMPUTER:/path/to/game/com.ea.app.nfsuc_20.0.28_all.ipk /home/user/MyDocs/Games/nfs # create file for loopback mount dd if=/dev/zero of=/home/user/MyDocs/Games/nfs/nfsu.ext2 count=120 bs=1024k # create ext2 filesystem on it mkfs.ext2 /home/user/MyDocs/Games/nfs/nfsu.ext2 # press 'y' # make mountpoint mkdir /mnt/nfsu # save it to the fstab echo -e "/home/user/MyDocs/Games/nfs/nfsu.ext2\t/mnt/nfsu\text2\tloop,auto\t0\t0" >> /etc/fstab # finally, mount it mount /mnt/nfsu/ # create symlynk from /usr/palm (NFSU installs there) ln -s /mnt/nfsu/ /usr/palm # extrack .ipk file dpkg -X /home/user/MyDocs/Games/nfs/com.ea.app.nfsuc_20.0.28_all.ipk /mnt/nfsu/ # make binary executable chmod +x /mnt/nfsu/applications/com.ea.app.nfsuc/nfsuc # create desktop launcher desktopgen /mnt/nfsu/applications/com.ea.app.nfsuc/appinfo.json
Enjoy!