im already flashing the zip file and try the command using terminal emuator and all i get is as the attached pic..
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
"the command i use:"
watch -n 1 cat /proc/sys/kernel/random/entropy_avail
watch is known to fail in some circumstances, including mine. There are 3 alternatives :
1. Enter 'pgrep rngd' (without quotes). If you got a number, that means rngd is active in memory. But, unfortunately, merely active does not mean it's doing its job.
2. Use the following code instead:
Code:
while : ; do sleep 2 ; cat /proc/sys/kernel/random/entropy_avail ; done
End with Ctrl-C (usually, hold volume_down and tap C)
3. Install the binary 'entropy_watch' and execute as root in Terminal
(To install: extract content, copy the single file 'entropy_watch' to /system/xbin, assign the permission of 555)
((I'll upload the zip in a short while; can't attach using XDA app))
EDIT: I give up trying to upload the entropy_watch binary. Instead, go to http://forum.xda-developers.com/showpost.php?p=35589934&postcount=16743 ; get the entropy_watch.zip file then *rename* it to just 'entropy_watch' (without quotes), and proceed with copying.
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
pepoluan said:
watch is known to fail in some circumstances, including mine. There are 3 alternatives :
1. Enter 'pgrep rngd' (without quotes). If you got a number, that means rngd is active in memory. But, unfortunately, merely active does not mean it's doing its job.
2. Use the following code instead:
Code:
while : ; do sleep 2 ; cat /proc/sys/kernel/random/entropy_avail ; done
End with Ctrl-C (usually, hold volume_down and tap C)
3. Install the binary 'entropy_watch' and execute as root in Terminal
(To install: extract content, copy the single file 'entropy_watch' to /system/xbin, assign the permission of 555)
((I'll upload the zip in a short while; can't attach using XDA app))
EDIT: I give up trying to upload the entropy_watch binary. Instead, go to http://forum.xda-developers.com/showpost.php?p=35589934&postcount=16743 ; get the entropy_watch.zip file then *rename* it to just 'entropy_watch' (without quotes), and proceed with copying.
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
Click to expand...
Click to collapse
thanx.already did option 1 n 2.and this is the result.is it ok?
Uh, for option 2, you need to wait for about 1 minute before you press Ctrl-C...
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
pepoluan said:
Uh, for option 2, you need to wait for about 1 minute before you press Ctrl-C...
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
Click to expand...
Click to collapse
what should i expect after pressing Ctrl-C after bout 1 minute?already done it but it show exatcly the same as the previous pic i attached
Originally Posted by pepoluan<br />
Uh, for option 2, you need to wait for about 1 minute before you press Ctrl-C... <br />
<br />
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
Click to expand...
Click to collapse
<br />
<br />
what should i expect after pressing Ctrl-C after bout 1 minute?already done it but it show exatcly the same as the previous pic i attached
Click to expand...
Click to collapse
There should be a series of numbers, most of the time around 3900-4000.
Have you entered the 'su' command prior to entering the 'while...' command? IOW, should be like this:
Code:
su
while ....
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
pepoluan said:
There should be a series of numbers, most of the time around 3900-4000.
Have you entered the 'su' command prior to entering the 'while...' command? IOW, should be like this:
Code:
su
while ....
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
Click to expand...
Click to collapse
thank you so much.by the way mine work after i use the command u posted in the general thread.which is "while true; do cat /proc/sys/kernel/random/entropy_avail ; sleep 1 ; done"...i can see the number series around 3700 just as u said...just one more thing there's one time when the number series show only 128..is it a problem?
edit:
and my bad..just figured both the commands work.i misunderstanding your post of saying pressing "Ctrl-C after typing the command..i should hv press "enter" after the command then end the series with Ctrl-C.sorry for bothering u.thanks again pep
afif_7070 said:
thank you so much.by the way mine work after i use the command u posted in the general thread.which is "while true; do cat /proc/sys/kernel/random/entropy_avail ; sleep 1 ; done"...i can see the number series around 3700 just as u said...just one more thing there's one time when the number series show only 128..is it a problem?
Click to expand...
Click to collapse
Don't worry; that is expected. Some activities, especially those that 'pulls' things via HTTPS, consume a huge number of entropy in one shot due to the need of initializing a secure connection.
If you note the series immediately after 128, you can see that the entropy pool is rapidly replenished to 3000-ish, thanks to rngd. Without rngd, the 'resupply' happens rather slowly, and the pool might not be replenished enough before the next round of HTTPS begins.
afif_7070 said:
edit:
and my bad..just figured both the commands work.i misunderstanding your post of saying pressing "Ctrl-C after typing the command..i should hv press "enter" after the command then end the series with Ctrl-C.sorry for bothering u.thanks again pep
Click to expand...
Click to collapse
:thumbup:
-- Sent from a GT-I8150 running ICS perfectly well. F'U, Sams#!t --
Related
Boot animation for CM5 and CM6.
I redid the original DroidX boot animation as best I could and was very pleased with the quality of the port.
Preview
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
(It loops after the red flash from the eye)
Instructions
1. Download bootanimation.zip
2. Put it on the root directory of your SD card
3. Open the terminal app and enter:
su
cp /sdcard/bootanimation.zip /data/local/
reboot
OR
If you want to save internal space you can replace the original boot animation from /system/media with the new one using ADB or, the easier way, with DroidExplorer (de.codeplex.com)
Silent8Strike said:
Boot animation for CM5 and CM6.
I redid the original DroidX boot animation as best I could and was very pleased with the quality of the port.
Preview
(It loops after the red flash from the eye)
Instructions
1. Download bootanimation.zip
2. Put it on the root directory of your SD card
3. Open the terminal app and enter:
su
cp /sdcard/bootanimation.zip /data/local/
reboot
OR
If you want to save internal space you can replace the original boot animation from /system/media with the new one using ADB or, the easier way, with DroidExplorer (de.codeplex.com)
Click to expand...
Click to collapse
This was already posted http://forum.xda-developers.com/showthread.php?t=710075
I saw that one but I wanted one that had the same size and quality as the original, so I made my own. The other one was cropped and cut out the sides of the animation.
Nice stuff, Thanks!
Thanks, glad you like it!
Love it would love it more if it was blue instead of red
Masterloki666 said:
Love it would love it more if it was blue instead of red
Click to expand...
Click to collapse
Like this one?
Silent8Strike said:
Boot animation for CM5 and CM6.
I redid the original DroidX boot animation as best I could and was very pleased with the quality of the port.
Preview
(It loops after the red flash from the eye)
Instructions
1. Download bootanimation.zip
2. Put it on the root directory of your SD card
3. Open the terminal app and enter:
su
cp /sdcard/bootanimation.zip /data/local/
reboot
OR
If you want to save internal space you can replace the original boot animation from /system/media with the new one using ADB or, the easier way, with DroidExplorer (de.codeplex.com)
Click to expand...
Click to collapse
You're the man! I have a G1 & Aria. Turns out the Aria also uses the same bootanimation as the G1. I was using the Droid X bootanimation but like you stated it cuts off some of the image. Thanks a lot for this!
Six6Sicks said:
Like this one?
Click to expand...
Click to collapse
Six6Sicks is my hero!
AT&T blue all day.
Six6Sicks said:
Like this one?
Click to expand...
Click to collapse
Hell yeah thats sick thanx
legit!!!!!!!
any way you could make this in neon green or neon orange? im kinda obsessed with those two colors lol
roblikeschocolatecake said:
any way you could make this in neon green or neon orange? im kinda obsessed with those two colors lol
Click to expand...
Click to collapse
Not "neon" but Green and Orange.
Make sure you rename to bootanimation.zip
Six6Sicks said:
Not "neon" but Green and Orange.
Make sure you rename to bootanimation.zip
Click to expand...
Click to collapse
thanks man! but would you be able to possibly make one with a brighter orange?
kinda like this color: http://www. google. com/imgres?imgurl=http://www.lambojack.com/2007%2520San%2520Diego%2520Meet/Bright%2520Orange%2520Again.jpg&imgrefurl=http://www.lambojack.com/San_Diego_Meet_of_2007.htm&h=800&w=1200&sz=226&tbnid=X3icnL4JjGfwiM:&tbnh=100&tbnw=150&prev=/images%3Fq%3Dbright%2Borange&hl=en&usg=__GMM6dAIY5XvRhGeala0gJrEJGL8=&sa=X&ei=mqdKTNeAIJPQsAO2yIzYCw&ved=0CCIQ9QEwAA
and for the green one, something like this color: http://www .google. com/imgres?imgurl=http://www.slipperybrick.com/wp-content/uploads/2008/05/xbox_360_glow_xcm.jpg&imgrefurl=http://www.slipperybrick.com/tag/neon/&usg=__SED-M3-rMgwLuNhXsH5fBwb0UO0=&h=392&w=500&sz=27&hl=en&start=15&tbnid=xN-An-A1sU0UOM:&tbnh=138&tbnw=185&prev=/images%3Fq%3Dneon%2Bgreen%26um%3D1%26hl%3Den%26sa%3DX%26rlz%3D1C1_____enUS363US363%26biw%3D1024%26bih%3D608%26tbs%3Disch:10,300&um=1&itbs=1&iact=hc&vpx=729&vpy=303&dur=2831&hovh=199&hovw=254&tx=194&ty=126&ei=8qdKTPHtAYmksQOw9thI&page=2&ndsp=12&ved=1t:429,r:3,s:15&biw=1024&bih=608
sorry to bother so much about it, im in love with neon colors. one more question. would it be possible for it the boot animation to fade from a neon-ish green to a neon-ish green back and forth a few times?
roblikeschocolatecake said:
thanks man! but would you be able to possibly make one with a brighter orange?
kinda like this color: http://www. google. com/imgres?imgurl=http://www.lambojack.com/2007%2520San%2520Diego%2520Meet/Bright%2520Orange%2520Again.jpg&imgrefurl=http://www.lambojack.com/San_Diego_Meet_of_2007.htm&h=800&w=1200&sz=226&tbnid=X3icnL4JjGfwiM:&tbnh=100&tbnw=150&prev=/images%3Fq%3Dbright%2Borange&hl=en&usg=__GMM6dAIY5XvRhGeala0gJrEJGL8=&sa=X&ei=mqdKTNeAIJPQsAO2yIzYCw&ved=0CCIQ9QEwAA
and for the green one, something like this color: http://www .google. com/imgres?imgurl=http://www.slipperybrick.com/wp-content/uploads/2008/05/xbox_360_glow_xcm.jpg&imgrefurl=http://www.slipperybrick.com/tag/neon/&usg=__SED-M3-rMgwLuNhXsH5fBwb0UO0=&h=392&w=500&sz=27&hl=en&start=15&tbnid=xN-An-A1sU0UOM:&tbnh=138&tbnw=185&prev=/images%3Fq%3Dneon%2Bgreen%26um%3D1%26hl%3Den%26sa%3DX%26rlz%3D1C1_____enUS363US363%26biw%3D1024%26bih%3D608%26tbs%3Disch:10,300&um=1&itbs=1&iact=hc&vpx=729&vpy=303&dur=2831&hovh=199&hovw=254&tx=194&ty=126&ei=8qdKTPHtAYmksQOw9thI&page=2&ndsp=12&ved=1t:429,r:3,s:15&biw=1024&bih=608
sorry to bother so much about it, im in love with neon colors. one more question. would it be possible for it the boot animation to fade from a neon-ish green to a neon-ish green back and forth a few times?
Click to expand...
Click to collapse
are you kidding me with these links?
Six6Sicks said:
are you kidding me with these links?
Click to expand...
Click to collapse
lol sorry i was trying to do an image search on google to show you what colors im talking about. XDA wont allow me to post pictures
How to enter in the information in Terminal Emulater??
Kinda of a weird question, but I don't know and that is why I'm asking.
So after I have put the bootanimation.img onto the root of my sd and I open the emu. I type su.... now do I press enter and continue with process or do I just type the whole code or do I press enter to make it look like how you have it?
Example:
su <enter>
blah blah <enter>
bloah bloah <enter>
reboot <enter>
I have a G1 running Cyanogen 5.0.8, have the newest radio, I think I'm pretty much up-to-date as far as my taste goes.
P.S. Thanks and your work is AWESOME!
mjybarr said:
Kinda of a weird question, but I don't know and that is why I'm asking.
So after I have put the bootanimation.img onto the root of my sd and I open the emu. I type su.... now do I press enter and continue with process or do I just type the whole code or do I press enter to make it look like how you have it?
Example:
su <enter>
blah blah <enter>
bloah bloah <enter>
reboot <enter>
I have a G1 running Cyanogen 5.0.8, have the newest radio, I think I'm pretty much up-to-date as far as my taste goes.
P.S. Thanks and your work is AWESOME!
Click to expand...
Click to collapse
Instructions
1. Download bootanimation.zip
2. Put it on the root directory of your SD card
3. Open the terminal app and enter:
su <hit enter
cp /sdcard/bootanimation.zip /data/local/ <hit enter
reboot <hit enter
Hit enter after each line.
I went into the terminal emu and after I type "cp /sdcard/bootanimation.zip /data/local/" I get a "not found". So is it cp(space)/sdcard/bootanimation.zip/data/local/? Also do I have to rename the file to bootanimation.zip?
Thanks man for all your help!
mjybarr said:
I went into the terminal emu and after I type "cp /sdcard/bootanimation.zip /data/local/" I get a "not found". So is it cp(space)/sdcard/bootanimation.zip/data/local/? Also do I have to rename the file to bootanimation.zip?
Thanks man for all your help!
Click to expand...
Click to collapse
su<enter>
cp<space>/sdcard/bootanimation.zip<space>/data/local/<enter>
reboot<enter>
Yes, rename it bootanimation.zip
DONT COPY PASTE TO OTHER FORUM WITHOUT ASKING THE AUTHOR
I HATE NOOB LEECHERS
GIVE PROPER CREDITS TO THE DEV and OP
OPENLINE YOUR SGY
Thanks to sir DOKY73 for this adb shell script..
BY sir DOKY73
I explicitly warn again everyone,
If you do not really understand what you do inside the shell, then wait for some!
YOU CAN POTENTIALLY HARM YOUR DEVICE!
If you doing something wrong with bml15, you might cause unrecoverable issues
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Code:
Requirements:
1: [URL="http://www.samsung.com/us/support/downloads"]SAMSUNG DRIVER[/URL] or [URL="http://www.samsung.com/us/kies/"]SAMSUNG KIES[/URL]
2: [URL="http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html"]JAVA DEV KIT[/URL]
3: [URL="http://developer.android.com/sdk/index.html"]ANDROID SDK[/URL]
4: Root Your SGY [URL="visit me"]visit me[/URL] or [URL="http://forum.xda-developers.com/showthread.php?t=1534510"]visit me too[/URL]
Click to expand...
Click to collapse
STEPS:
1.>Connect your SGY to the PC, using the USB cable.
2.>Access the command prompt in your Windows computer. In order to do that, click on Start button, and in the search field, type ‘cmd.exe’. Once found, open it. In this window you need to head to the folder where Android SDK has been installed.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
3.>enter this codes on cmd
[note: when typing commands,,please wait for the # to show in the cmd before typing another command]
[note: start and ADB shell session into your phone by 'ADB shell' in Windows, './adb shell' in linux then copy line by line the following. If you got error, then stop, and report the issue!]
Code:
ADB shell
su #<- Check phone screen to grant root access, and wait for # prompt in shell
mkdir /sdcard/SGYunlock #<-check if the folder has been created, and no error
stop #<-the phone will freeze, It's OK!
dd if=/dev/bml15 of=/sdcard/SGYunlock/bml15.img.SAVE #<- Do it ONLY ONCE!!!!
dd if=/dev/zero bs=1 count=16 of=/dev/bml15 seek=524360
dd if=/dev/zero bs=1 count=1 of=/dev/bml15 seek=525392
start #<-the phone will restart
exit #<- exit from root shell
exit #<- exit from shell
Click to expand...
Click to collapse
4.>restart your SGY if it did not restart automatically
TO reNetLock TO DEFAULT NETWORK PROVIDER
Code:
Requirements:
1: [URL="http://www.samsung.com/us/support/downloads"]SAMSUNG DRIVER[/URL] or [URL="http://www.samsung.com/us/kies/"]SAMSUNG KIES[/URL]
2: [URL="http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html"]JAVA DEV KIT[/URL]
3: [URL="http://developer.android.com/sdk/index.html"]ANDROID SDK[/URL]
4: Root Your SGY [URL="visit me"]visit me[/URL] or [URL="http://forum.xda-developers.com/showthread.php?t=1534510"]visit me too[/URL]
5:
Click to expand...
Click to collapse
STEPS:
1.>Connect your SGY to the PC, using the USB cable.
2.>Access the command prompt in your Windows computer. In order to do that, click on Start button, and in the search field, type ‘cmd.exe’. Once found, open it. In this window you need to head to the folder where Android SDK has been installed.
3.>enter this codes on cmd
Code:
ADB shell
su #<- Check phone screen to grant root access, and wait for # prompt in shell
stop #<-the phone will freeze, It's OK!
dd if=/sdcard/SGYunlock/bml15.img.SAVE of=/dev/bml15
start #<-the phone will restart, put default SIM and use!
exit #<- exit from root shell
exit #<- exit from shell
Click to expand...
Click to collapse
4.>restart your SGY if it did not restart automatically
Credits to:
Doky713
Codeshark
Izghitu
ALbavizion
Mikstev
ORIGINAL DEV
OPENLINE SOURCE THREAD
DOWNOAD OLD THREAD HERE
To remove Network Subnet Lock by Mikstev
note: do this after openlining your SGY
back up the original bml15.img.SAVE or rename SGYunlock folder to SGYunlock1 before proceeding
Code:
cmd.exe
ADB shell
su #<- Check phone screen to grant root access, and wait for # prompt in shell
mkdir /mnt/sdcard/SGYunlock
cd /mnt/sdcard/SGYunlock
stop #<-the phone will freeze, It's OK!
dd if=/dev/bml15 of=bml15.img.SAVE #<- Do it ONLY ONCE!!!!
start #<-the phone will restart, put any SIM and use!
edit bml15.img.SAVE:
(0×80049 and 0×80450) change 01 to 00
save as bml15_unlocked.img.SAVE.
ADB shell
su
cd /mnt/sdcard/SGYunlock
stop #<-the phone will freeze, It's OK!
dd if=bml15_unlocked.img.SAVE of=/dev/bml15 copy back file
start #<-the phone will restart, put any SIM and use!
Click to expand...
Click to collapse
Click to expand...
Click to collapse
DONT COPY PASTE TO OTHER FORUM WITHOUT ASKING THE AUTHOR
I HATE NOOB LEECHERS
GIVE PROPER CREDITS TO THE DEV and OP
Things (files) you will be needing to open line:
(1)Go to the link and choose your OS version (windows,mac or linux)
--->Android SDK
(2)If you don't have java installed
--> Java SDK
(3)Use (drivers) if pc doesn't recognize the device
--->Samsung drivers
(4)Rooted phone (for SU permissions)
---> Root
(5)Usb cable
(6)Guts!!
New update:
Guys!!! try mr. Doky73's ---> network unlock app
if you liked it, consider donating
or
Press their thanks button!!
Credits to:
devion14
Doky73
contributors:
izghitu
codeshark
dont wanna try cause there is a possibility that my CP will brick
eReNz said:
dont wanna try cause there is a possibility that my CP will brick
Click to expand...
Click to collapse
that is why it is not for noob andd fainthearted...youll brick it?then restore it..so simple...
will delete soon....seems like its not important
devion14 said:
will delete soon....seems like its not important
Click to expand...
Click to collapse
please do understand that not all people here are adept when it comes to "techy stuff" and not all are willing to take risks so don't feel sad if your thread seems to be underrated.
Facebook Page
just getting board......have you done this?
can you give me screen shots on pc?
OP thanks for the info, i was able to change my provider to another one.
did anybody found a code which accepts all the different sims?
its tedious to edit bml15 every time i want to swap a sim.
maybe we could ask openline phones to upload their bbml15.bin so i can compare the strings on the addresses...they would be on same address
leodasal2 said:
please do understand that not all people here are adept when it comes to "techy stuff" and not all are willing to take risks so don't feel sad if your thread seems to be underrated.
Click to expand...
Click to collapse
techie stuff
s5360user said:
OP thanks for the info, i was able to change my provider to another one.
did anybody found a code which accepts all the different sims?
its tedious to edit bml15 every time i want to swap a sim.
Click to expand...
Click to collapse
Create a script to automate the process (theory).
maybe you could make one?? but the important thing is the mcc mnc of an openlined bml15.bin
devion14 said:
maybe we could ask openline phones to upload their bbml15.bin so i can compare the strings on the addresses...they would be on same address
Click to expand...
Click to collapse
and you must post this thread on Android Development to gather some users bbml15.bin
already done that...maybe forum mods might want to move it there
An appeal to upload your "openline/unlocked" bml15.bin
guys, if anyone of you have an unlocked/openline phone, please upload your bml15.bin.. Seriously, this thread booms with potential. You can at last forget about going to a service center just to get your unit openlined.
@devion14
i'll be making a flashable zip if there is an openline bml15.bin uploaded. and i expect you will be the first daredevil to try and attest the validity of this thread
PS. I wonder if bmlunlock will work with this bml15.bin.
HCFroyd247 said:
guys, if anyone of you have an unlocked/openline phone, please upload your bml15.bin.. Seriously, this thread booms with potential. You can at last forget about going to a service center just to get your unit openlined.
@devion14
i'll be making a flashable zip if there is an openline bml15.bin uploaded. and i expect you will be the first daredevil to try and attest the validity of this thread
PS. I wonder if bmlunlock will work with this bml15.bin.
Click to expand...
Click to collapse
Agree. Perhaps in millions of SGYs shipped there is at least 1 who is factory unlocked?
HCFroyd247 said:
guys, if anyone of you have an unlocked/openline phone, please upload your bml15.bin.. Seriously, this thread booms with potential. You can at last forget about going to a service center just to get your unit openlined.
@devion14
i'll be making a flashable zip if there is an openline bml15.bin uploaded. and i expect you will be the first daredevil to try and attest the validity of this thread
PS. I wonder if bmlunlock will work with this bml15.bin.
Click to expand...
Click to collapse
i bet it wont work cause imei conflict..
CarlDeanCatabay said:
Agree. Perhaps in millions of SGYs shipped there is at least 1 who is factory unlocked?
Click to expand...
Click to collapse
i bet not one but depends on the order
CarlDeanCatabay said:
techie stuff
Click to expand...
Click to collapse
wow, i was clearly bothered by the exaggerated response (huge fonts) you had on my post. I'm glad you pointed that out (sarcastic).
WORKING!!
Hello
i want to expand the memory a little bit
so tried to use
Swapper - https://play.google.com/store/apps/details?id=org.azasoft.free.swapper&hl=en
Swapper 2 (for root users) - https://play.google.com/store/apps/details?id=lv.n3o.swapper2
then testing with free command on the Terminal Emulator
but it's still showing me that the swap equals to zero
so my question is "does CM9 support swap file"
and if yes "how can i create a working swap files"
__
ahmedelhofy said:
Hello
i want to expand the memory a little bit
so tried to use
Swapper - https://play.google.com/store/apps/details?id=org.azasoft.free.swapper&hl=en
Swapper 2 (for root users) - https://play.google.com/store/apps/details?id=lv.n3o.swapper2
then testing with free command on the Terminal Emulator
but it's still showing me that the swap equals to zero
so my question is "does CM9 support swap file"
and if yes "how can i create a working swap files"
__
Click to expand...
Click to collapse
If you're using Arco's CM9, then I can say: Yes, it supports swap files. See below:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
As for "how to create one" ... here's how:
1. Creating a Swap File
Determine where you will place your swapfile* . For purposes of illustration, I will use /xxx/yyy. Remember to change this to the actual directory!
Open Terminal
Enter these commands; do not type the numbers, remember to replace /xxx/yyy with an actual path, and replace zzz with the size of swapfile you want (in MiB)
Code:
su
cd /xxx/yyy
touch .SWAP
dd if=/dev/zero of=/xxx/yyy/.SWAP bs=1048576 count=zzz
mkswap .SWAP
Test the swapfile with the following code, again in Terminal:
Code:
swapon /xxx/yyy/.SWAP
free
Once you see that the swapfile is working, turn it off again.
Code:
swapoff /xxx/yyy/.SWAP
2. Activating Swap File on Boot
Download the attached 99swap.txt
EDIT the downloaded 99swap.txt !! You must replace /xxx/yyy with the actual directory.
Optionally, replace the SWAPNESS value (range between 0 ~ 100)
Make sure you have a working init.d! If your ROM does not support a working init.d, then stop; see next section
Rename the file to 99swap
Copy the file to /system/etc/init.d (remember to mount /system rw first)
Open terminal, and enter the following commands:
Code:
cd /system/etc/init.d
chown root.shell 99swap
chmod 4755 99swap
ls -l 99swap
Reboot your phone, and check the logfile, which should be /data/local/99swap.log
3. Activating Swap File on Boot using Script Manager
Download Script Manager here
From within SManager, find your edited 99swap.txt file, and tap on it
Activate "Root" and "Boot" buttons, then tap on "Save"
Reboot your phone, and check the logfile, which should be /data/local/99swap.log
Thanks dude
U R Awesome
Now am playing Gangstar Rio
It was freezing before
ahmedelhofy said:
Thanks dude
U R Awesome
Now am playing Gangstar Rio
It was freezing before
Click to expand...
Click to collapse
Cool
One tip : Change the SWAPNESS value to 40. After extensive testing, I think 40 is better than the current value of 20.
-- Galaxy W + DXKL1 + CM9 + xda --
can u give me the link to the original thread ?!
ahmedelhofy said:
can u give me the link to the original thread ?!
Click to expand...
Click to collapse
What thread?
-- Galaxy W + DXKL1 + CM9 + xda --
Original thread where you get these swap steps ?!
ahmedelhofy said:
Original thread where you get these swap steps ?!
Click to expand...
Click to collapse
Oh, I made them myself. I'm a Linux geek
-- Galaxy W + DXKL1 + CM9 + xda --
pepoluan said:
Oh, I made them myself. I'm a Linux geek
-- Galaxy W + DXKL1 + CM9 + xda --
Click to expand...
Click to collapse
thanks for your method, it works very well and I solved the problem with the ram of my I8150 and some related freezing.
I have only a problem with the activation on boot, I followall the steps but in the log file is always explained that "the directory ttt/ttt was not found. Is it mounted ? " (ttt/ttt is the correct folder of the .SWAP file).
I have this problem either on internal and external sdcard (I prefer the internal because it's too quick without lagging).
Can you help me understandig the problem ?
Thanks a lot and sorry for my English.
I run on Samsung I8150 + Cyanogenmod9 rc8 - fully working with 350 mb of swap file on internal sd (reserved for cwm backup and swap, I used the CM9 option for cross the internal and external sd.
regards
Torment0 said:
thanks for your method, it works very well and I solved the problem with the ram of my I8150 and some related freezing.
I have only a problem with the activation on boot, I followall the steps but in the log file is always explained that "the directory ttt/ttt was not found. Is it mounted ? " (ttt/ttt is the correct folder of the .SWAP file).
I have this problem either on internal and external sdcard (I prefer the internal because it's too quick without lagging).
Can you help me understandig the problem ?
Thanks a lot and sorry for my English.
I run on Samsung I8150 + Cyanogenmod9 rc8 - fully working with 350 mb of swap file on internal sd (reserved for cwm backup and swap, I used the CM9 option for cross the internal and external sd.
regards
Click to expand...
Click to collapse
Yeah, it seems some ROMs mount the directories late; when the script triggers, the SD cards (internal/external) are not there already.
I have been playing with nohup command, but I just can't get it to run reliably on such ROMs.
So, I suggest going the SManager route instead. It's much more reliable. Besides, you really *don't* want to use a Swapfile during Boot; it slows down things because when the kernel sees that swapfile is available... it starts swapping (almost) right away. You'll need Swapfile during normal usage, so activating the Swapfile after the phone finishes booting actually makes more sense...
(BTW, I'm sorry I can't maintain this anymore... I no longer have my W; it's been handed over to my little-brother-in-law, and I've moved on to a new phone...)
pepoluan said:
Yeah, it seems some ROMs mount the directories late; when the script triggers, the SD cards (internal/external) are not there already.
I have been playing with nohup command, but I just can't get it to run reliably on such ROMs.
So, I suggest going the SManager route instead. It's much more reliable. Besides, you really *don't* want to use a Swapfile during Boot; it slows down things because when the kernel sees that swapfile is available... it starts swapping (almost) right away. You'll need Swapfile during normal usage, so activating the Swapfile after the phone finishes booting actually makes more sense...
(BTW, I'm sorry I can't maintain this anymore... I no longer have my W; it's been handed over to my little-brother-in-law, and I've moved on to a new phone...)
Click to expand...
Click to collapse
thank you very much for your reply, I understand that is not mine mystake if it'sn run
I will continue to launch the swap file using the terminal emulator and swapon command but...
as the folder addre is too much long and write it anytime manually in the terminal emulator is possible to create some script or anything else to be launched manually without writing anytime all the command line (similar to an .bat file,sorry I don't known linux and on , I'm still a winzozz slave..) ?
sorry for my bad english explaination, and in any case thank you for your interesting and support.
best regards
+++updated+++ I solved in the terminal emulator - left touch for setup - initial command - I wrote
'su' - "press enter"
'swapon /xxx/yyy/.SWAP' - "press enter"
now everytine I open the terminal emulator the swap file starts automatically, so I need only to tap the app and after exit.
too easy,too quick
thanks a lot, you solved my situation. now I link2sd finally check the ext3 secondary primary partition on the sd I solved everything (but it's difficult, I create the ext3 partition resizing the existant fat 32 primary partitionand thisi is a trouble, I suppose...
bye
As you know there is no support for X11 in Ubuntu Touch with default CM10 kernel. To be more correct: there is no VT (virtual terminal) devices in Ubuntu Touch at Android layer. So you can install X11 but you can't run it! I decided to fix it and made kernel with VT support. Now it's possible to run X11 server and your favorite desktop environment. However there are some bugs with it: qml-phone-shell (which is Touch Shell) renders at top level and X11 - at bottom. Still you can interact with both of them: Touch Shell on phone and X11 over VNC. Another bugs are green tint on phone display and slow x11 render.
X11 over VNC:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Installation:
1. Get Kernel:
View attachment boot.img
2. Flash it with fastboot:
Code:
fastboot flash boot boot.img
3. And now you can install X11, x11vnc and desktop environment (e.g.: xfce4):
Code:
sudo apt-get install xorg x11vnc xubuntu-desktop
4. Also you need valid config for X11:
View attachment 99-omap.zip
5. Unrar it and put to device:
Code:
adb push 99-omap.conf /data/ubuntu/usr/share/X11/xorg.conf.d/99-omap.conf
6.Reboot phone
7. Set password for x11vnc server:
Code:
x11vnc -storepasswd <your_passwd>
8. Start x11vnc server:
Code:
sudo x11vnc -dontdisconnect -notruecolor -noxfixes -shared -forever -rfbport 5900 -bg -o /var/log/x11vnc.log -rfbauth /home/phablet/.vnc/passwd
Now you can connect to device with VNC Client.
How does this compare in performance to using a remote X server, as in this thread
http://forum.xda-developers.com/showthread.php?t=2161884
With that method I found most applications to perform decent except QtCreator.
Having to render the x server on the phone itself I would think wouldn't perform that fast.
BukaKing said:
Having to render the x server on the phone itself I would think wouldn't perform that fast.
Click to expand...
Click to collapse
That's true. X Server on phone slow enough and your way is better. Perhaps this one is alternative and require only VNC client or not require client at all. If you stop qml-phone-shell, X11 will be rendered to device. So this kernel is for testing purpose only.
VNC?
Great achievement. Can you run Xserver on its own dedicated VT when VT switching is enabled? What is VNC needed for in this scenario?
I will report a bug at launchpad so that the upstream (ubuntu-touch) kernel enables VT switch.
eudoxos.eu said:
Can you run Xserver on its own dedicated VT when VT switching is enabled? What is VNC needed for in this scenario?
Click to expand...
Click to collapse
You mean to use another tty? That's possible, since there lot of them. VNC server and client will be same (e.g. x11vnc and UltraVNC).
dim319 said:
VNC server and client will be same (e.g. x11vnc and UltraVNC).
Click to expand...
Click to collapse
The X11 server can't talk to the GPU directly, even without acceleration? In that case you could drop VNC completely.
dim319 said:
qml-phone-shell (which is Touch Shell) renders at top level and X11 - at bottom.
Click to expand...
Click to collapse
You can stop phone-shell with
Code:
service ubuntu-session stop
I installed gnome on my SGS2 GT-I9100 (worked without modifying kernel from http://forum.xda-developers.com/showthread.php?t=2188621 ), now I can start gdm with:
Code:
service gdm start
I have some trouble with onscreen keyboard in gdm (onboard), but you can enable autologin in /etc/gdm/custom.conf
Code:
[daemon]
# Enabling automatic login
AutomaticLoginEnable = true
AutomaticLogin = phablet
With this /etc/X11/xorg.conf even the touchscreen works (in a laptop-touchpad way):
Code:
Section "ServerLayout"
Identifier "Layout0"
Screen "Screen0"
InputDevice "cyttsp-i2c" "CorePointer"
EndSection
Section "InputDevice"
Identifier "cyttsp-i2c"
Driver "multitouch"
# MatchIsTouchpad "true"
# Driver "evdev"
Option "CorePointer" "true"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/event2"
Option "Protocol" "Auto"
Option "Rotate" "CW"
EndSection
Section "Device"
Identifier "Card0"
Driver "fbdev"
Option "fbdev" "/dev/graphics/fb0"
# rotate screen to be in sync with touchpad orientation
Option "Rotate" "OFF" # OFF=0 CW=90 UD=180 CCW=270
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
EndSection
(don't forget to install xserver-xorg-input-multitouch for touchsceen!)
Unfortunately I messed up my packaging system (didn't work because no space left on device, now even apt-get install -f can't repair it ), so i will have to try again i guess...
no VT needed?
-schumi- said:
You can stop phone-shell with
Code:
service ubuntu-session stop
I installed gnome on my SGS2 GT-I9100 (worked without modifying kernel from http://forum.xda-developers.com/showthread.php?t=2188621 ), now I can start gdm with:
Code:
service gdm start
Click to expand...
Click to collapse
Does that mean that I can run xorg on Nexus 10 with the official preview images - if I stop ubuntu-session, which occupies the only virtual terminal? (Sorry for perhaps a dumb question, I don't want to re-flash ubuntu-touch over CM again just to try that).
eudoxos.eu said:
The X11 server can't talk to the GPU directly, even without acceleration? In that case you could drop VNC completely.
Click to expand...
Click to collapse
The X11 works with framebuffer (which is fb0), not with GPU. You can use VNC to view X11 from phone to host. X11 can be viewed on phone without VNC.
-schumi- said:
You can stop phone-shell with
Code:
service ubuntu-session stop
I installed gnome on my SGS2 GT-I9100 (worked without modifying kernel from http://forum.xda-developers.com/showthread.php?t=2188621 ), now I can start gdm with:
Code:
service gdm start
Click to expand...
Click to collapse
I see. This is better than making new kernel, and require only correct config for xorg. I saw few solutions: one from BukaKing,one with Xvfb, mine kernel, and yours is best one!
I've worked around the virtual terminal issue by linking PTMX in the past.
just make a new Virtual Terminal device
Code:
rm /dev/ptmx
mknod --mode 666 /dev/ptmx c 5 2
/bin/dbus-uuidgen --ensure
Thanks for the info, great thread! I'm hoping to run a single dedicated X11 app, no real need for the original interface. That said, this seemed like a good starting point.
In case it helps anyone, attached is a kernel boot image I just built for a Nexus 7 wifi (Grouper) that has CONFIG_VT enabled. Ubuntu 13.04, kernel 3.1.10.
Thanks,
Brian
If you're in the USA, TWRP and root are available for you here - but only if you have the KIW-L24 model:
[TWRP] for KIW-L24 USA (kiwi)
^^ That recovery is not recommended or tested for any version other than KIW-L24 as of February 10, 2016.
So here's the situation:
We may be able to support other versions for international users
We make no promises
We are providing a tool and instructions for you to give us the information we need about your version
We make no promises
You MUST give the information exactly as we request
No personal information is being gathered - none
We've made it as easy as possible, you don't have to be an expert
We may have to come back and ask you for more information
We make no promises
But we are willing to try if you want to help
Instructions:
Download the attached zip file and unzip it on your phone - ES File Explorer or equivalent is fine
Run the script: find-honor.sh
Copy the contents of /sdcard/found-honor.txt to http://hastebin.com
Post the link to your hastebin here in the thread
DO NOT post the output here - we're not going to manage to that - only post your hastebin.com link, ok
You may run the script however you like:
adb shell or Terminal Emulator
or just use SH Script Runner (instructions on that will come later in the thread)
Shell/terminal instructions:
cd to the folder where you unzipped the script
Execute the following command:
source find-honor.txt
How to upload:
Go to the found-honor.txt file in your file browser
/sdcard, /storage/emulated/0 and Internal Storage all mean the same thing on your phone
Open, select all, copy
Paste and save to hastebin.com
Pictures follow, in my example I use the built-in Files app
Go to the internal storage, tap on find-honor.txt
OK to open Just Once with HTMLViewer
Long press any word to get menu on bottom
Select all, then copy
Goto http://hastebin.com and paste
Find the disk image in the upper right corner to save
Post the link
Your output will look similar to http://hastebin.com/norufikubu.avrasm
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
SH Script Runner Instructions:
Load the file as shown in the pictures
Run it with the little run button next to the name in the top bar
Post results to hastebin using instructions above
DOWNLOAD SCRIPT HERE:
View attachment find-honor.sh.zip
If you're curious to see the how the information is being gathered:
Code:
#!/system/bin/sh
#
# Find honor 5X properties for recovery exploration
# EarlyMon 2016/02/08
TARG=/sdcard/found-honor.txt
getprop | grep -i ro.build.product > $TARG
echo "" >> $TARG
grep -i msm /system/build.prop >> $TARG
echo "" >> $TARG
cat /proc/meminfo | grep -i memtotal >> $TARG
echo "" >> $TARG
cat /proc/partitions >> $TARG
echo "" >> $TARG
cd /sys/dev/block
for i in 179:*
do
cat $i/uevent | grep NAME >> $TARG
echo "" >> $TARG
done
cd - > /dev/null
df >> $TARG 2> /dev/null
echo "" >> $TARG
cat /proc/self/mountinfo >> $TARG
echo "" >> $TARG
cat /system/build.prop >> $TARG
echo ""
echo "Copy the contents of"
echo ""
echo "$TARG"
echo ""
echo "to hastebin.com"
echo ""
echo "Post the hastebin.com link in the thread."
Remember -
ONLY POST YOUR DATA LINK, LIKE THIS:
http://hastebin.com/norufikubu.avrasm
You can see from my sample link that nothing personal is being gathered.
Happy to help
Hope this helps:
/eqokatoboh.md
If this is against the rules, then delete it.
Have a nice day
Widos
WidosFTW said:
Hope this helps:
/eqokatoboh.md
If this is against the rules, then delete it.
Have a nice day
Widos
Click to expand...
Click to collapse
http://hastebin.com/eqokatoboh.md
That works, thanks.
That's a 2/16 KIW-L21
Run Script with SH Script Runner
hastebin. com / ujotesawow.md
Im a new user so i cant post links
racing2410 said:
Run Script with SH Script Runner
hastebin. com / ujotesawow.md
Im a new user so i cant post links
Click to expand...
Click to collapse
Welcome to the forums.
http://hastebin.com/ujotesawow.md
Another 2/16 KIW-L21 - thanks!
@WidosFTW or @racing2410
Per suggestions from the team (shm and Ncypt3d) after reviewing your data, we've decided to update the script because we don't want to take the chance relying on the honor website specs.
Please refer to the following picture from the app CPU-X in the Play Store:
The top of yours ought to be similar and say MSM 8939 HUAWEI KIW-L21 (where mine says L23).
If there is any doubt, please erase the old find-honor.sh on your phone, get the new copy from the OP, and repeat the process for us.
Many thanks!
ok lets see
hastebin /ereyaronoh.avrasm
Done it @EarlyMon
/oqiqemojer.avrasm
http://hastebin.com/ereyaronoh.avrasm
http://hastebin.com/oqiqemojer.avrasm
Perfect, just what we expected, thanks!
I'm on the US version but still appreciate that you're working on our international brothers and sisters 5xs. So I must say....this sounds "very promising "! Sorry I couldn't help it.
WidosFTW said:
Done it @EarlyMon
/oqiqemojer.avrasm
Click to expand...
Click to collapse
racing2410 said:
ok lets see
hastebin /ereyaronoh.avrasm
Click to expand...
Click to collapse
From what i can tell from the info provided the L24 twrp recovery should work on L21.
Here is the official L24 twrp:
https://dl.twrp.me/kiwi/twrp-3.0.0-0-kiwi.img.html
Stock L21 recovery encase it does not work:
https://www.androidfilehost.com/?fid=24411628330025737
If there is a error please put as much info as you can get and pictures if possible. Also attach a recovery.log so we can double check everything is working.
ok i will try to flash the recovery after work. first i have to unlock my bootloader :angel:
deadman96385 said:
From what i can tell from the info provided the L24 twrp recovery should work on the L21.
If there is a error please put as much info as you can get and pictures if possible. Also attach a recovery.log so we can double check everything is working.
Click to expand...
Click to collapse
The installation works fine and it also starts the twrp but you cant use it properly because you get the touchscreen error, which was already described in the US Thread. I dont know where the recovery.log is so I cant post it here. I somehow managed to install root but I would consider this unusable.
Edit:
Found the log, it is in the attachments.
Can confirm. Installing TWRP was fine, but it can't be used (touchscreen does not recognize input)
LordKelsier said:
Can confirm. Installing TWRP was fine, but it can't be used (touchscreen does not recognize input)
Click to expand...
Click to collapse
You mentioned that you were able to use the debloat method on your KIW-L21.
Did something change on the touchscreen usability or can you elaborate for the benefit of us and others?
EarlyMon said:
You mentioned that you were able to use the debloat method on your KIW-L21.
Did something change on the touchscreen usability or can you elaborate for the benefit of us and others?
Click to expand...
Click to collapse
Someone in the main thread posted that you have to tap the screen extremely fast and that the issue is most likely a bug in the TWRP software (not waiting long enough for user input or something). It worked this way but is extremely luck based. Like I had to try and flash the zip file 10 times before I was able to slide the slider while not having the archive validation checkbox checked.
Selecting the "install" button and the archive itself also took a few minutes. Basically you'll have to hammer your screen at 5 touches per second or something for it recognize
Same with me it took me about an hour to get it working.
We've been discussing the touchscreen among ourselves and your feedback may help - thanks!
Sent from my KIW-L24 using XDA Free mobile app
Do you still need ppl to run the script for the L21?