Showing posts with label over. Show all posts
Showing posts with label over. Show all posts

Monday, 12 October 2015

Can i flash COI9 over (branded+stock) COH2?



Hey guys!

I got a question, can I just flash the french XEF update COI9, available since a few days, over my older, branded COH2 firmware without wiping or factory resetting anything? I don't want to wait for my updates for ages...

Current AP: G920FFXXU2QOH8
Current CP: G920FXXU2COH2
Current CSC: G920FVFG2COH4
Model: SM-G920F

It should be a branded S6 from Austria.

Thanks for ur help, I appreciate it!

Greez



Sunday, 11 October 2015

Program to put a cm/mm grid over a picture and/or ruler next to it.



Hi;

I take pictures with my S5 of body lesions,etc.

IS there a way to apply a circular grid over the picture and when I take the picture to show the dimensions in mm/cm?
Also, to be able to have a mm/cm ruler next to the lesion when I take it.
Thank you.



Can I flash Model H815 KDZ over my T?



my Model H815T;
Can I flash Model H815 KDZ over my T?
or H815L orH815P over my T



[help!!!]"encryption unsuccessful" after flash CM11 over CM12.1.



My nook hd plus was working fine with cm-11-20150824 and TWRP recovery 2.7.1.0. Then I followed the thread of Unofficial CM12.1 and successfully updated to CM12.1 and TWRP 2.8.7.4. After that I decided to go back to CM11 with TWRP and my previous backup by TWRP. Then very time when I flashed CM11, after booting, the screen shows "encryption unsuccessful........." Now I can only flash back CM12.1 and it is working fine, but how can I go back to CM11?



SCH-I435 S4-mini Pandora only working over wifi



My phone is rooted but still using original rom. I do remember that the kernel had to be changed when rooting so towelroot would work but I cjsvgefchanged it back afterward.

I'm using Pandora 6.2 along with Pandora Patcher 6.2 and xposed framework. Even if I disable the Patcher and download the current version of Pandora the same thing happens, it will only stream over a wifi connection. I've been looking everywhere for an answer to this issue but haven't been able to find and solutions.

Any help would be greatly appreciated.



Friday, 9 October 2015

Is the s6 worth over the s5?



I'm happy with my s5 but thinking of doing the best buy trick to lock myself I to another 2 year contract on unlimited data. S6 is the only phone that looks good even though I'm gonna miss my replaceable battery and sd card. Any input as ease of root, experience over the s5 is appreciated. They also have the moto x 2 for but its outdated



Red warning sign over a laying android icon, pls help



I rooted my device using CF tool and now its endlessly rebooting and when i tried going into recovery mode a red warning sign over a laying android comes up and after some time it reboots , but every time it just stucked at the start animation.



Thursday, 8 October 2015

Gray tint over lockscreen



Noticed a gray tint on my lock screen. It disappears whenever I switch it to unlock by swipe, but comes back whenever I switch it to pin/fingerprint unlock.

What the f.?



Is battery life getting better over time?



When I first used the OPT, I noticed that it loses battery *in standby* pretty fast. Screen on time was good but just leaving it be would drain a lot of battery. I turned off LTE but also noticed that it often struggled with cell network quality (which usually makes a phone look for other stations etc. thus battery is used a lot).

However, today, after a couple of days of use and maybe 3, 4 recharge cycles, it seems a bit better. Is there a chance that this is an actual effect (it could be something very different). Do batteries also get better after some use or am I just biasing my highly non-scientific measurements here?

:)



Enabling Ethernet over USB OTG



I found a way to enable Ethernet over USB OTG on a Samsung S6 Edge (SM-G925I, International Edition). The phone needs to be rooted because the method requires enabling the interface and editing routing tables.

The method has a "high" level of difficult, because it requires to enter commands on the phone using a terminal. By sharing this method, I hope experts will be able to automate this process, e.g., via an app.

While the description is for the Samsung S6 Edge, I suspect that this method may also be used on other phones.

Pre-requisites:
  • Tested on Samsung S6 Edge, SM-G925I, with Android v5.0.2 (Build LRX22G.G925IDVU1AOE3).

  • Phone must be rooted. This is necessary because you will be editing IP routing information which is only available with superuser access. Instructions for rooting the phone may be found elsewhere in XDA.

  • Set phone to "Airplane Mode" with Wi-Fi disabled. This simplifies the setup, but it is possible to lift this restriction. Left as an exercise to the reader. :D

  • Connect the phone to a micro USB OTG adapter. Then, connect the USB OTG adapter to a USB to RJ45 Ethernet adapter. Then, connect the Ethernet adapter to a router. (I have had good luck with BobjGear connectors and adapters. Sold by major online merchants.)


Setup
Your setup should look like this:

Samsung S6 Edge <-> Micro USB OTG connector <-> USB to RJ45 Ethernet adapter <-> Router <-> Internet

Enabling USB OTG interface
Using an app such as "Terminal Emulator" (by Jack Pavlevich) enter the following commands:

Check whether phone can reach router (that is, the gateway). Note: use the IP address of your router. Output shows that phone does not have access to any network.

Code:


$ ping -c 3 192.168.1.1
connect: Network is unreachable


(Optional) Check existing routing setup, useful for comparing after setup is completed.

Code:


# ip route  // Should not show anything
# ip rule    // Shows default rules (in my case, there are eight)


Confirm that the interface is visible to the phone.

Code:


$ netcfg
eth0  DOWN  0.0.0.0/0


The "eth0" interface corresponds to Ethernet over USB OTG. "DOWN" means that "eth0" is not active, resulting in the "Network is unreachable" message when pinging the router.

Now, gain superuser access:

Code:


$ su

Enable "eth0" interface. Router must be setup for DHCP.

Code:


# netcfg eth0 dhcp

If above command times out, try again. Otherwise try:

Code:


# netcfg eth0 down
# netcfg eth0 dhcp


Confirm that the interface is up and it has been assigned an IP address by the router. (IP address assigned to "eth0" will vary depending on your router setup.)

Code:


# netcfg
eth0  UP  192.168.1.21/24


Now, ping the router. (Note: Use your router's IP address.)

Code:


# ping -c 3 192.168.1.1
Network is unreachable


While interface is active and it has an IP address, phone still does not have access to any network. :confused:

Let's examine existing IP routing settings:

Code:


# ip route

The above command does not show any output, indicating that no IP routing is set up. In devices that support Ethernet over USB OTG off-the-shelf (e.g., Nexus 5, Sony Xperia Z1 phone and Z2 tablet), IP routing is setup "automatically". But in devices such as Samsung S6 Edge, IP routing settings need to be enabled manually using the commands below. (My guess is that Google, OEMs or carriers do not want you to use Ethernet over USB OTG.)

Configure IP routings

Configure IP routing in the "eth0" interface. The settings are similar to the ones used by the phone when the Wi-Fi interface is enabled. If the settings below do not work for you, check the IP routing settings on your phone when Wi-Fi is enabled and "eth0" is disabled, and adjust accordingly.

Code:


# ip rule add from all fwmark 0x101f9/0x1ffff lookup 1024 pref 13000
# ip rule add from all oif eth0 lookup 1024 pref 14000
# ip rule add from all fwmark 0x1f9/0x1ffff lookup 1024 pref 19000
# ip rule add from all fwmark 0x0/0xffff lookup 1024 pref 22000
# ip route add table 1024 192.168.1.0/24 dev eth0
# ip route add table 1024 default via 192.168.1.1 dev eth0


Exit superuser mode and (optionally) confirm IP routing settings.

Code:


# exit
$ ip rule // Command should show new entries 13000, 14000, 19000 and 22000


(Optional) Examine new IP routing settings and and newly created routing table entry.

Code:


$ ip route show table 1024
$ ip route


Both commands should output something like this:

Code:


default via 192.168.1.1 dev eth0 proto static
192.168.1.0/24 dev eth0 proto static scope link


Finally, confirm router is reachable from phone. (Note: use your router's IP address.)

Code:


$ ping -c 3 192.168.1.1

That's it! Your phone should now have Ethernet access over USB OTG. :cool: Enjoy!

Ps. Please hit 'Thanks' if this info was useful.



Tuesday, 6 October 2015

Does the Note 5 not support a 360 controller over OTG?



The note 4 would let me control the main screens and play any game with a 360 controller. When I plug one in on the note 5 it gets power but no input. Anyone had luck with this? I could only find one other thread with no comments.