Home User CP Donate Chat Register Today!  
  Get New posts Faq / Help?
   


Go Back   Hackint0sh > Projects and Hacks > iPhone > Applications & Development > Free Toolchain Software

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 08-04-2007, 08:13 PM
theviolator's Avatar
theviolator
Status: Offline
Senior Member
 
Join Date: Jul 2007
Posts: 145
Rep Power: 10
theviolator is on a distinguished road
Default

Jasonm, if you have compiled binary for chmod why dont you just change permissions by hand (after putting it in /sbin/) i.e. "chmod 777 Tetris"
No need to edit any files
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12 (permalink)  
Old 08-04-2007, 08:22 PM
jasonm
Status: Offline
Junior Member
 
Join Date: Jul 2007
Posts: 18
Rep Power: 0
jasonm is on a distinguished road
Default

You can only do that if you have ssh. I use that method but not everyone wants to install ssh if they are just running someone else's app.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #13 (permalink)  
Old 08-04-2007, 08:33 PM
eddy123
Status: Offline
Respected Member
 
Join Date: Aug 2007
Posts: 757
Rep Power: 0
eddy123 is on a distinguished road
Default

Quote:
Originally Posted by jasonm View Post
eddy:

I know how confusing all this is, but we are working on making it easier.

You can find the chmod binary in the iphone-binkit: http://iphone.natetrue.com/iphone-binkit-0.06.tar.gz

It is in the /bin folder.


Yes, this install method works for any app/binary, such as screenshot.

kurro:

Looks great!
I am trying to add the stuff. But I think nothing is right at last. I did copy the Zune2.app to iPhone, after I follow the instruction in hacktheiphone to add the icon to springboard, it just appear the Field test icon.

How do I execute the program?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #14 (permalink)  
Old 08-04-2007, 10:12 PM
eddy123
Status: Offline
Respected Member
 
Join Date: Aug 2007
Posts: 757
Rep Power: 0
eddy123 is on a distinguished road
Default

Quote:
Originally Posted by eddy123 View Post
I am trying to add the stuff. But I think nothing is right at last. I did copy the Zune2.app to iPhone, after I follow the instruction in hacktheiphone to add the icon to springboard, it just appear the Field test icon.

How do I execute the program?
Update. I have just ssh my iPhone. And put the nice screenshot program in it and get it run. Everything is fine under terminal, but how can I add the program springboard, so that I can launch quickly.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #15 (permalink)  
Old 08-04-2007, 10:41 PM
jasonm
Status: Offline
Junior Member
 
Join Date: Jul 2007
Posts: 18
Rep Power: 0
jasonm is on a distinguished road
Default

You don't need to add it to the springboard. My game will be added automatically, when you copy Zune2.app to the iphone and restart.

The only problem is that the game needs to be chmod'ed, or it will not run. You may do that through the steps I provided or through ssh if you copy the chmod binary to the bin folder:

/bin/chmod 555 /Applications/Zune2.app/Zune2


Try removing what you did with the springboard and re-adding the game.


About screenshot:

The Screenshot app does not have a gui and can only be run through command line.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #16 (permalink)  
Old 08-04-2007, 11:43 PM
kurro
Status: Offline
Senior Member
 
Join Date: Jul 2007
Posts: 148
Rep Power: 10
kurro is on a distinguished road
Default

Quote:
Originally Posted by eddy123 View Post
Can you tell me the instruction to make it work like your iPhone? Thanks. I am so willing to try out the stuff, but just can't make it right
Hi eddy123. jasonm has laid out a good way to chmod the program. I'll lay out actual commands that should help you out:

1. Put Zune2.app in your phonedmg directory

2. Jailbreak your phone and run iPhoneInterface

3. Upload the Zune2.app to the Applications folder
From iPhoneInterface:
cd /Applications
mkdir Zune2.app
putfile Zune2.app/ammo.png
putfile Zune2.app/bg.png
putfile Zune2.app/Default.png
putfile Zune2.app/explode.png
putfile Zune2.app/icon.png
putfile Zune2.app/Info.plist
putfile Zune2.app/iphone.png
putfile Zune2.app/PkgInfo
putfile Zune2.app/zune.png
putfile Zune2.app/Zune2

4. Get the update binary and back it up on your computer
From iPhoneInterface:
cd /usr/sbin
getfile update

5. Rename update on your computer to update.backup or somethin

6. Download and unzip the iphone-binkit: http://iphone.natetrue.com/iphone-binkit-0.06.tar.gz

7. Copy chmod from the binkit (in the bin folder) and put it in your phonedmg folder. Then rename it to update.

8. Replace the update binary on the phone with chmod
From iPhoneInterface:
cd /usr/sbin
putfile update (which is really chmod)

9. Get the command list for update
From iPhoneInterface:
cd /System/Library/LaunchDaemons
getfile com.apple.update.plist

10. Modify the update command list to chmod your programs on boot. Edit the ProgramArguments section to look like:
0 /usr/sbin/update
1 555
2 /Applications/Zune2.app/Zune2

11. Upload this back on to the phone
From iPhoneInterface:
cd /System/Library/LaunchDaemons
putfile com.apple.update.plist

12. Exit iPhoneInterface and restart the phone. Upon startup the app will be given execute permissions. You should be able to launch it now.

13. Don't forget to put the old update command back. Rename update.backup to update and put it on the phone.
From iPhoneInterface:
cd /usr/sbin
putfile update

14. Return to jail and restart the phone.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #17 (permalink)  
Old 08-04-2007, 11:45 PM
eddy123
Status: Offline
Respected Member
 
Join Date: Aug 2007
Posts: 757
Rep Power: 0
eddy123 is on a distinguished road
Default

Quote:
Originally Posted by jasonm View Post
You don't need to add it to the springboard. My game will be added automatically, when you copy Zune2.app to the iphone and restart.

The only problem is that the game needs to be chmod'ed, or it will not run. You may do that through the steps I provided or through ssh if you copy the chmod binary to the bin folder:

/bin/chmod 555 /Applications/Zune2.app/Zune2


Try removing what you did with the springboard and re-adding the game.


About screenshot:

The Screenshot app does not have a gui and can only be run through command line.
Horray~~~!! I just add 3 apps in my iPhone. so happy right now. But... the Zune program seems still not working. I did chmod it. And restart iPhone several times. But when I press Zune icon, the screen just show a black screen.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #18 (permalink)  
Old 08-04-2007, 11:47 PM
eddy123
Status: Offline
Respected Member
 
Join Date: Aug 2007
Posts: 757
Rep Power: 0
eddy123 is on a distinguished road
Default

Quote:
Originally Posted by kurro View Post
Hi eddy123. jasonm has laid out a good way to chmod the program. I'll lay out actual commands that should help you out:

1. Put Zune2.app in your phonedmg directory

2. Jailbreak your phone and run iPhoneInterface

3. Upload the Zune2.app to the Applications folder
From iPhoneInterface:
cd /Applications
mkdir Zune2.app
putfile Zune2.app/ammo.png
putfile Zune2.app/bg.png
putfile Zune2.app/Default.png
putfile Zune2.app/explode.png
putfile Zune2.app/icon.png
putfile Zune2.app/Info.plist
putfile Zune2.app/iphone.png
putfile Zune2.app/PkgInfo
putfile Zune2.app/zune.png
putfile Zune2.app/Zune2

4. Get the update binary and back it up on your computer
From iPhoneInterface:
cd /usr/sbin
getfile update

5. Rename update on your computer to update.backup or somethin

6. Download and unzip the iphone-binkit: http://iphone.natetrue.com/iphone-binkit-0.06.tar.gz

7. Copy chmod from the binkit (in the bin folder) and put it in your phonedmg folder. Then rename it to update.

8. Replace the update binary on the phone with chmod
From iPhoneInterface:
cd /usr/sbin
putfile update (which is really chmod)

9. Get the command list for update
From iPhoneInterface:
cd /System/Library/LaunchDaemons
getfile com.apple.update.plist

10. Modify the update command list to chmod your programs on boot. Edit the ProgramArguments section to look like:
0 /usr/sbin/update
1 555
2 /Applications/Zune2.app/Zune2

11. Upload this back on to the phone
From iPhoneInterface:
cd /System/Library/LaunchDaemons
putfile com.apple.update.plist

12. Exit iPhoneInterface and restart the phone. Upon startup the app will be given execute permissions. You should be able to launch it now.

13. Don't forget to put the old update command back. Rename update.backup to update and put it on the phone.
From iPhoneInterface:
cd /usr/sbin
putfile update

14. Return to jail and restart the phone.
Thanks for the complete guide Anyway I add the program with fun now. Just figuring out how to get Zune work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #19 (permalink)  
Old 08-05-2007, 12:02 AM
jacoch
Status: Offline
Senior Member
 
Join Date: May 2006
Posts: 205
Rep Power: 14
jacoch is on a distinguished road
Default

Quote:
Originally Posted by eddy123 View Post
Horray~~~!! I just add 3 apps in my iPhone. so happy right now. But... the Zune program seems still not working. I did chmod it. And restart iPhone several times. But when I press Zune icon, the screen just show a black screen.
Same for me. Different apps running fine (Terminal, tetris, tictactoe). Only Zune start, sits for 15 sec and quit. I'm on 1.0.1.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #20 (permalink)  
Old 08-05-2007, 12:04 AM
eddy123
Status: Offline
Respected Member
 
Join Date: Aug 2007
Posts: 757
Rep Power: 0
eddy123 is on a distinguished road
Default

Quote:
Originally Posted by jacoch View Post
Same for me. Different apps running fine (Terminal, tetris, tictactoe). Only Zune start, sits for 15 sec and quit. I'm on 1.0.1.

Edit: It works all for me except Zune.

Last edited by eddy123; 08-05-2007 at 12:06 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
MacNN: Code Breaker logic game for iPhone hackint0sh Latest Headlines 0 08-27-2008 12:40 AM
how to install a cracked game (no links) ninja_pimp Free Toolchain Software 37 08-13-2008 11:16 PM
[Req] An awesome game > Arcade Reality Tyman07 Free Toolchain Software 4 07-16-2008 11:44 PM
[REQ] Accelerometer driving game? hkiphone Free Toolchain Software 4 01-31-2008 04:40 AM
REQ! Hi-Lo Jack Card Game topdog9000 Free Toolchain Software 0 12-22-2007 12:26 AM



All times are GMT +2. The time now is 01:17 PM.



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2 Ad Management by RedTyger
follow us on Twitter!

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406