SIM | Jailbreak iPhone, iPod Touch, iPad - Part 8 Skip to content

Jailbreak iPhone, iPod Touch, iPad

новости про джейлбрейк iPhone, iPod Touch и iPad

Archive

Tag: SIM

main mail 235x300 Mail app crashing on 2.0? There is a solution.

Is your mail crashing on 2.0 firmware?

This is generally caused after syncing your backup. This has nothing to do with jailbreaking or not. However, the fix for it is simple and is part of a jailbreak. The issue is that after syncing your backup, your mail folder is owned by root and your mail app running as user mobile does not have permissions to access it. You can fix it in SSH. But I also added a button in BossPrefs to solve it.

Step 1:Jailbreak your device

Step 2: Install BossPrefs from Cydia

Step 3: Tap “more”

Step 4: Tap “Fix User Dir Permissions”

Step 5: Sometimes, not always, you will need to load settings and reenter your mail passwords.

via sleepers.net

iphone 3g tethering Get internet on a desktop or notebook through IPhone 3G

Thanks to Dev Team and the porting work of Jay Freeman as well as the authors of 3Proxy, it is now possible to “tether” your iPhone 3G and use its Internet connection on your laptop.

Warning – Tethering your iPhone is against the iPhone data plan terms. AT&T could slap you with huge fees if you overuse this. I recommend only using it during emergencies.

Here is a basic plan (by the way, this should work for old IPhone also):

  • Jailbreak your iPhone 3G
  • Install 3Proxy and Terminal
  • Create an ad-hoc Wi-fi network using your laptop
  • Join the network with your iPhone
  • Find the iPhone’s IP address
  • Open Terminal and run the proxy program
  • Open Safari on your iPhone and open a web page
  • Configure your browser to use the proxy

Later we’ll discuss it with more details.

Step 1: Jailbreak your iPhone

Just download PWNageTool 2.0. Run it and follow the instructions. Make sure to add Cydia, when asked.

Step 2: Install 3Proxy and Terminal

During the jailbreak, Cydia should have appeared on one of your app pages: use it and let Cydia load and self-update.

creationsnet 3428 200x300 Get internet on a desktop or notebook through IPhone 3G

Then head to Install, All Packages, then find MobileTerminal and 3Proxy (3Proxy is at the bottom). Install both and hit your Home button. Your phone will restart and you’ll see Terminal installed on your home screen. 3Proxy isn’t a GUI app and as such won’t have an icon.

Step 3: Create an ad-hoc Wifi network using your laptop

Using whatever wireless software suite you have, create an ad-hoc network. On a Mac it’s in the Airport menu, under “Create network…”. Name it something inconspicuous. I called mine “baladoux”. On your iPhone, join the ad-hoc network.

Step 4: Find your iPhone’s IP address

Then, hit the blue arrow next to it, and wait for your IP address to show up:

creationsnet 3430 200x300 Get internet on a desktop or notebook through IPhone 3G

Memorize (or write down) this IP address. You will need it later.

Step 5: Open Terminal and run the proxy program

Simple enough. Open Terminal, type “socks” and hit return.

creationsnet 3431 200x300 Get internet on a desktop or notebook through IPhone 3G

Nothing will appear to happen, but the SOCKS server will be running. You can hit the home button to push Terminal to the background (remember to terminate it later, by switching back to Terminal and holding the Home button until it closes).

Step 6: Open Safari on the iPhone and open a web page

Any page will do. I recommend http://jailbreak-iphone.ru

This step is important. The page will take a while to load. When Safari realizes it can’t get to the Internet using the ad-hoc Wifi, it will do some internal magic to switch back to 3G for Internet while still on your ad-hoc network. That lets the proxy do its thing.

Step 7: Configure your browser

In Firefox, head to Preferences, and under Advanced, Network, hit Settings:

creationsnet 3433 300x253 Get internet on a desktop or notebook through IPhone 3G

Then, fill in the iPhone’s IP address (which you memorized earlier) into the SOCKS Host field, and put 1080 as the port number. Make sure all other proxy fields are blank and/or 0 as shown:

creationsnet 3434 300x250 Get internet on a desktop or notebook through IPhone 3G

Then, since the proxy doesn’t forward DNS, you will also have to change an advanced option in Firefox. In the Firefox URL bar, enter “about:config” and hit Enter

creationsnet 3435 300x178 Get internet on a desktop or notebook through IPhone 3G

In Filter, type “socks” and then double-click “network.proxy.socks_remote_dns” to make its value “true”.

That should be all you need! Firefox should be able to browse the Internet through your iPhone’s 3G connection.

Tethering costs a lot of battery life on the iPhone so make sure you have it plugged in. When you’re done, make sure to quit Terminal by opening it back up and pressing and holding the Home button until it quits.

Thanks to cre.ations.net for this tutorial.

iRinger creates free ringtones for your iPhone from virtually any music or video file you own. Even YouTube videos! iRinger exports ringtones to iTunes, so there is no need to “jailbreak” your iPhone. You will be creating ringtones in seconds. It’s that simple. Here is a video tutorial:

Feature:

  • FREE
  • Three Steps: Import, Preview then Export. Done.
  • Convert virtually any audio format into an iPhone ringtone
  • Extracts audio out of video
  • Choose which section of the audio you want to hear
  • Adjust ringtone length, volume, fade in, fade out and loop gap
  • Export to iPhone ringtone format and import right into iTunes
  • Export to iPhone using SCP/SFTP and skip using iTunes
  • Use audio effects: Delay, Flanger, Boost, Reverse, etc.
  • Runs on all versions of Microsoft Windows including Windows Vista
  • Requires iPhone firmware 1.1.2 or newer, iTunes software 7.5 or newer
  • Works with the new iPhone 3G!

Download here: iRinger.exe. Developer’s site: www.iringer.net

Here is an advanced video tutorial, it shows how to use some advanced features:

Run

This is a tutorial, that shows step by step how to use installed Java on the IPhone. Just in case you do not have Java installed on your IPhone there is a tutorial how to do it.

What we need is a working jailbraked IPhone with Java Installed. I used latest firmware 1.1.4, unlocked, jailbreaked and customized by winpwn.

Step 1: Create simple Java application, compile and run.

  1. Create file Java4IPhone.java and put simple Java hello-world code there. I used the following code:Create Java hello-world
  2. Upload to IPhone. I used /tmp directory. For uploading I used IPhone Browser.
  3. Run Terminal.
  4. Use command java -fullversion or jamvm -fullversion to see if java is avaliable.
  5. Use command jikes to invoke java compiler.
  6. Go to /tmp directory, using command cd /tmp
  7. Compile. We need to specify classpath to basic java packages. If we do not do that, jikes will produce an error (see screenshot). So use the following command: jikes Java4IPhone.java -cp /usr/lib/rt.jar
  8. After compiling Java4IPhone.class file should appear in the same directory. To run use commandjava Java4IPhone
  9. Take a look at the screenshots. Hopefully you’ll have something similar.

Upload Java application to IPhone

Check Java and Jikes Compile using Jikes Run

Upload Java application to IPhone

Step 2: Have fun!