Root access with Astro? - G1 Apps and Games

Is there anyway to start Astro as root so you can use it to edit system directories?

I had wished for the same thing.. but i didnt tell nobody.. soo maybe this will be more effective. prevents having to type in the terminal all the time.. not that its bad.. ive learned so much allready since ive had this phone...

I totally agree! That would be perfect! Maybe there a way of editing the code or smth...

If you can't work *MORE EFFICIENTLY* directly from the terminal, then you definitely should NOT have root access via GUI.

lbcoder said:
If you can't work *MORE EFFICIENTLY* directly from the terminal, then you definitely should NOT have root access via GUI.
Click to expand...
Click to collapse
Pretty much this. It seems like most of the people having problems on this website just want root because it's "kewl" but really have no idea what it is or even have a clue on how Linux works.

I actually Emailed the Dev of Astro about this same question and here was his reply.
Here is the email copied and pasted from gmail.
My question
Are you able to make a version that requests root access to delete chmod rename move etc for the 100,000+ users from xda and other boards with root access?
His Reply
On Jan 21, 2009 10:57 AM, "Kevin Payne" <metago.inc[at]gmail> wrote:
This is a bit outside ASTRO's scope at the moment. Technically, ASTRO should work fine on files owned by root if it were run as a root process, but running applications as root is not advised in general. Someone really needs to create a sudo type command to let an individual application run as root.

lbcoder said:
If you can't work *MORE EFFICIENTLY* directly from the terminal, then you definitely should NOT have root access via GUI.
Click to expand...
Click to collapse
d00m said:
Pretty much this. It seems like most of the people having problems on this website just want root because it's "kewl" but really have no idea what it is or even have a clue on how Linux works.
Click to expand...
Click to collapse
Considering the fact that I'm a Systems Administrator as my profession and work with hundreds of Linux/Unix/Windows servers a day, the whole reason why I bought the G1 was for development and tinkering, the fact that my home PC is running Vista x64 (i haven't gotten around to creating a VM or messing with the drivers), and that I do wipes frequently to test different configurations, I'm pretty sure I'll be ok with root access. I'm just tired of manually doing something on that tiny keyboard that can easily be done with a nice pretty GUI. I stare at consoles all day and thousands of lines of black and white text, when I come home I don't exactly want to be anywhere near a terminal.
Also, why bother doing anything on a phone, other than using it as a phone (or for email, texting, etc.), if you don't do it because it's "kewl". I mess with my phone because it's cool to have a mini-*nix based computer with several fun radios on it. If I do something stupid like type "rm -Rf /*" after logging in as root (never going to happen) then that's my own fault.
I don't care if you're a Unix purist and you write up your office reports, spreadsheets, and diagrams in vi. Good for you, you're wasting time that can be better spent on other things because of your stubborn prejudice against GUI's. I asked a question, because I have a reason for that question. If you don't have any answers to that question, then please don't bother replying.
diabolical28 said:
I actually Emailed the Dev of Astro about this same question and here was his reply.
Here is the email copied and pasted from gmail.
My question
Are you able to make a version that requests root access to delete chmod rename move etc for the 100,000+ users from xda and other boards with root access?
His Reply
On Jan 21, 2009 10:57 AM, "Kevin Payne" <metago.inc[at]gmail> wrote:
This is a bit outside ASTRO's scope at the moment. Technically, ASTRO should work fine on files owned by root if it were run as a root process, but running applications as root is not advised in general. Someone really needs to create a sudo type command to let an individual application run as root.
Click to expand...
Click to collapse
I looked into the commands to launch an application from the CLI and found that Astro can be started using the following command:
am start -n com.metago.astro/.FileManagerActivity
However, this doesn't do us any good, since the dalvik VM will take that command and create a process as a sandbox user regardless of what user executes that command. There looks like there's a way to tell the VM to fork the process as a specific uid and gid, but that requires editing the AndroidManifest.xml.
I'm not too good with Java, and I don't know how strict Android's API is, so I don't know if running an apk application as root is even possible.
However, I do know that running commands from inside an application, like su, is possible.
~TM
"Wise men speak because they have something to say; Fools because they have to say something." ~Plato

Solved--Astro with root...(workaround)
kinda late, but in case anyone wants to know this is what I did.
This way technically doesnt allow astro to run with root, but its just as good.
I originally did this a few months back for my G1, and just mod it a little to work on my nexus
- created a script to mount system as rw
- created a script that gives r/w permission to all app directories (/data, /data/app, /data/app-private, /system, /system/app, /system/sd, ...) and all apps inside those directories
-then merged the 2 scripts and named it astro_root_perm
-installed GScript from the market
-created another script that
-first changes all permissions on apps back to what they started as(644, 640...)​-then changes permissions of directories back to what they were​-and finally remounts system back to ro, and named this script to astro_basic_perm​
-used Gscript to create shortcuts of the 2 scripts to my home screen.
-then with bettercut, I changed the scripts' icons to the astro icon. I just colored the astro stock icons "A" green for one script and red for the other
So anytime I want to use astro as root, I just click the shortcut I made with gscript off my home screen, open astro,
Then when Im done with astro, I just run the other script
I know its not the same as running astro AS root, but it works for me.
Im not really a linux guy......I'd really appreciate if someone could help me with this next step
++++++++++++++++++++++++++++++++++++
Does anyone know what I need to include in a script to have it call/open a program automatic?
My ultimate goal is to create one script that will
Mount system rw
Change needed permissions to rw
Automatically open up Astro
Then change all permissions back when astro is terminated
Possibly create a keyboard shortcut for the G1
What do ya think?? is it possible??

Estrongs has limited root file browsing on some ROMs and SU File Manager or Root File Manager will let you browse as root for a small price.

+1 recommendation on Estrongs File Explorer's root option if you want it for free, includes Windows shares browsing over lan.
Otherwise try SUFBS, also has built-in terminal.
Sent from my HTC Hero using Tapatalk

louieG1 said:
My ultimate goal is to create one script that will
Mount system rw
Change needed permissions to rw
Automatically open up Astro
Then change all permissions back when astro is terminated
Possibly create a keyboard shortcut for the G1
What do ya think?? is it possible??
Click to expand...
Click to collapse
I'm not sure exactly how gscript handles things, but with a normal bash (shell) script, the lines are run sequentially. That is, the next line isn't run until the previous line is done. It would seem that you could put all that in one script, and the still-running script wouldn't change the permissions back until astro has ended. But then again, java adds complexity to it and I'm not sure if it works the same.

louieG1 said:
kinda late, but in case anyone wants to know this is what I did.
++++++++++++++++++++++++++++++++++++
Does anyone know what I need to include in a script to have it call/open a program automatic?
My ultimate goal is to create one script that will
Mount system rw
Change needed permissions to rw
Automatically open up Astro
Then change all permissions back when astro is terminated
Possibly create a keyboard shortcut for the G1
What do ya think?? is it possible??
Click to expand...
Click to collapse
Love this idea! Unfortunatly I'm no coder but would love to see something like this created.

I created a "GodMode" script that does exactly this, email me if you want it, I can edit it to work for the G1.

Totally forgot I started this thread, then happened to find it on Google when looking for the same thing, again.
Went back to Windows Mobile for a little bit, missed Android, and now have a Samsung Vibrant.
Still want a way to use ASTRO with root priviledges, especially since I don't have a tactile keyboard anymore.

phaelox said:
+1 recommendation on Estrongs File Explorer's root option if you want it for free, includes Windows shares browsing over lan.
Otherwise try SUFBS, also has built-in terminal.
Sent from my HTC Hero using Tapatalk
Click to expand...
Click to collapse
Thank you.
Estrongs File Explorer enabled me to flash Tamil font in my Rooted T-Mobile G2X mobile phone.

I know i am not answering the question directly. But, i use Linda Manager it gets the job done.
---------- Post added at 08:17 PM ---------- Previous post was at 08:14 PM ----------
raddy said:
Thank you.
Estrongs File Explorer enabled me to flash Tamil font in my Rooted T-Mobile G2X mobile phone.
Click to expand...
Click to collapse
Hi raddy,
I'm also from TN as well, i would love to get the Tamil fonts. Can you please guide me?
Not having tamil fonts on the browser is simply annoying

Hi
If your mobile is rooted, then follow this link.
http://forum.xda-developers.com/showthread.php?t=798380
Sent from my LG-P999 using XDA App

raddy said:
Hi
If your mobile is rooted, then follow this link.
http://forum.xda-developers.com/showthread.php?t=798380
Sent from my LG-P999 using XDA App
Click to expand...
Click to collapse
Cool, i got the tamil fonts on my G1, thanks for the help.

Related

Root explorer

Just about everyone I've talked to about a good way to explore a rooted phone recommends Root explorer. I was a little put off on that it was not a free application, but I did attempt to buy it, only to end in failure. I can only assume that since I am a United States system ,and the Root Explorer's price is registered in £'s, that there is an issue when purchasing applications with currency other than what is listed. So my question is this:
Is there an American equivalent to the Root Explorer, a way to get around the currency issue, or a free alternative?
there is a root option on ES File Explorer (free app). i have never used it tho, so i can't say if it works at all.
I like Astro File Manager, a free app in the Market. I like it.
rdisanza said:
I like Astro File Manager, a free app in the Market. I like it.
Click to expand...
Click to collapse
astro is nice, but you can't view root system files.
I just SSH in, you can see everything I think.
shark0807 said:
Just about everyone I've talked to about a good way to explore a rooted phone recommends Root explorer. I was a little put off on that it was not a free application, but I did attempt to buy it, only to end in failure. I can only assume that since I am a United States system ,and the Root Explorer's price is registered in £'s, that there is an issue when purchasing applications with currency other than what is listed. So my question is this:
Is there an American equivalent to the Root Explorer, a way to get around the currency issue, or a free alternative?
Click to expand...
Click to collapse
dude...i have no issues buying apps priced in non-dollar currency. it requires i use my visa instead of amex...hope this helps..........
You can try to use EStrongs File Explorer, there is a root user option in the prefs. I have not had success so far but feel free to give it a try should you feel comfortable with the risk.
It works, give it root access and the check the Mount image as.... and it works as a root explorer with all the functionality.
Just remember to also check the Show hidden files - option.
trevolutionary said:
You can try to use EStrongs File Explorer, there is a root user option in the prefs. I have not had success so far but feel free to give it a try should you feel comfortable with the risk.
Click to expand...
Click to collapse
lms1407 said:
It works, give it root access and the check the Mount image as.... and it works as a root explorer with all the functionality.
Just remember to also check the Show hidden files - option.
Click to expand...
Click to collapse
Thanks to You both I was able to use EStrongs File Explorer to load The Htc fm radio widget and app to my system/app folder. Adb is pretty unreliable for me on Win7 64 bit.
Cheers
Vernox701 said:
Thanks to You both I was able to use EStrongs File Explorer to load The Htc fm radio widget and app to my system/app folder. Adb is pretty unreliable for me on Win7 64 bit.
Click to expand...
Click to collapse
Rooted Evo on Sprint Lovers 3.7 1-10-11 update, Estrong's method worked for me. Need to enable Root in settings for Estrong and then choose the "Hiapk" option( CM was the only other option, and I wasn't on that, had no idea what hiapk was but went for it anyway!). Was able to easily copy my personalized widget.txt to the \system\customize folder, reboot, and the widgets that I wanted showed up right away.
Flawless.
try super manager in the market it works for me
ES explorer works very good. It has the option to explore as root but is disabled by default.
Enable the option in ES File Explorer and try it.
Super Manager
elliotn said:
try super manager in the market it works for me
Click to expand...
Click to collapse
+1 - this worked for me perfectly and it's FREE.
ES Manager root access didn't work for my cappy - looked like it only worked for CyanogenMod and one other ROM....
i tried all of them, but non let me copy and paste to system folders!
how can i do it? tjs!
tutincho said:
i tried all of them, but non let me copy and paste to system folders!
how can i do it? tjs!
Click to expand...
Click to collapse
In ES Explorer you must set the option to mount the /system partition as writable first. Once done you can do anything there
take a look at androotfile on google code it does the trick for me
http://code.google.com/p/androotfile/updates/list
i would also like to "vote" for super manager.
can't say i like the layout of the file list but it just works.
there is a less popular free alternative called "yaffs explorer" which IMO has an AWESOME file list layout (no huge icons... very slender, great overview) but unfortunately keeps crashing on me. i've only used it for maybe two minutes total and it crashed twice already. and just randomly while i was e.g. changing folders too.
would be nice if others here could try it out and if it doesn't crash on your phone - good for you. but if it does, i hope we'd be able to put a little pressure on the developer to iron out those bugs because i'd LOVE to use this thing as my primary file manager. hell, if it would be stable i'd pay a couple of bucks for it.
trevolutionary said:
You can try to use EStrongs File Explorer, there is a root user option in the prefs. I have not had success so far but feel free to give it a try should you feel comfortable with the risk.
Click to expand...
Click to collapse
This one nice.
Go to the market, and download estrong. Its a great and goodlooking apps, almost can handle everything you need
Sent from my HTC Hero using Tapatalk

Enabling sideloading on Captivate with mac

Hi guys, I know some of you are just going to tell me to do a search on this, but I've already tried. So, my problem is, I'm very new to android and am trying to learn all this stuff and quickly and possible but it still feel like a giant noob because even when I've followed directions on what to do in Terminal it never works and I need some help. I've already rooted it and have removed At&T's bloatware and am running 2.1. Does anyone have, or have a link to relatively n00b related instructions for how to do this on a Mac thru terminal or something? Thanks
Sent from my SAMSUNG-SGH-I897 using XDA App
You can install a rom if you want, thats what I did.
Jsmallsawe said:
Hi guys, I know some of you are just going to tell me to do a search on this, but I've already tried. So, my problem is, I'm very new to android and am trying to learn all this stuff and quickly and possible but it still feel like a giant noob because even when I've followed directions on what to do in Terminal it never works and I need some help. I've already rooted it and have removed At&T's bloatware and am running 2.1. Does anyone have, or have a link to relatively n00b related instructions for how to do this on a Mac thru terminal or something? Thanks
Sent from my SAMSUNG-SGH-I897 using XDA App
Click to expand...
Click to collapse
Here's a link to how I did it. (and there are probably other ways like just simply flashing custom ROM).
1) Root'ed using one of the update.zip methods floating around. I think I used this one.
2) Downloaded Root Explorer and SQLite Editor. Both of these are paid apps but look like they are worth owning. For instance, you can also use Root Explorer to rename and disable the AT&T bloatware, as an alternative to this method.
3) Using Root Explorer, mount the filesystem R/W and copy /dbdata/databases/com.android.providers.settings/settings.db to /sdcard/settings.db
4) Open /sdcard/settings.db in SQLite Editor
5) Open the 'secure' table
6) Long-hold on record 6, "install_non_market_apps" and select "Edit Record"
7) Change the value from 0 to 1 and save
8) Back in Root Explorer, copy /sdcard/settings.db back to /dbdata/databases/com.android.providers.settings/settings.db
9) I don't remember if I had to reboot or not, but you may as well.
Click to expand...
Click to collapse
Couple of notes, instead of downloading SQLite Editor, you can download an add-on for firefox called SQLite Manager. Load up your settings.db and select secure, then I believe the numbering is different from SQLite Editor. Just find "install_non_market_apps", edit the value from 0 to 1, then copy and paste the new settings.db to the original location. You might also want to re-name the original settings.db to something so that the phone doesn't recognize it but it's there. Also you need to reboot.

Incredible S file explorer

Hello
I'm waiting for my new Incredible S to arrive shortly and in the meantime I'm reading the user manual, I'm new to Android coming from Windows Mobile world.
Question: if I have backupped my applications to the memory card, in case of an hard reset, is there a way to reinstall them without passing through AppMarket? I have not found any File Explorer or Application Manager included in the ROM... are you obliged to connect to internet and download them?
Thanks
You can use Titanium Backup to back up and restore your apps.
They are not passed through the Android Market.
I do recall the app requires root, but that will be possible soon and is easy to do.
stefanospizzica said:
Hello
I'm waiting for my new Incredible S to arrive shortly and in the meantime I'm reading the user manual, I'm new to Android coming from Windows Mobile world.
Question: if I have backupped my applications to the memory card, in case of an hard reset, is there a way to reinstall them without passing through AppMarket? I have not found any File Explorer or Application Manager included in the ROM... are you obliged to connect to internet and download them?
Thanks
Click to expand...
Click to collapse
Hi there, I hope you will enjoy android!
There is indeed no file explorer installed on the Incredible S.
And yes, you will have to register your google account to access the market to download a file explorer (Astro File Manager for example)
TimMun said:
Hi there, I hope you will enjoy android!
There is indeed no file explorer installed on the Incredible S.
And yes, you will have to register your google account to access the market to download a file explorer (Astro File Manager for example)
Click to expand...
Click to collapse
Hi!
Thanks for your prompt answer! I suspected that after reading many threads on this matter. It seems a sort of limitation, I mean, having an SD card with your backup data and needs to connect to internet to download a file manager to install them..
But ok, this is the way it works
please use the ES File Manager .GO Android Market search "ES"
If you really wan't to avoid android market, you could usb adb (android debug bridge) to install titanium backup and then restore your apps. Or you could use adb to install certain apk's (apps are always .apk) you stored on your pc.
simple commands like
adb install C:\bla\bla\*.apk work like a charm
so if you download a filemanager, say "filemanager.apk".
you can give the command
adb install C:\bla\downloads\filemanager.apk
and it will install it on you phone after which you can acces all your files directly on your device.
You will need the SDK and some more info
If you want to use the adb, cd to \platform-tools\
But all this will be clear after a few hours of reading, trial and error
Welcome to Android.
DaanJordaan said:
If you really wan't to avoid android market, you could usb adb (android debug bridge) to install titanium backup and then restore your apps. Or you could use adb to install certain apk's (apps are always .apk) you stored on your pc.
simple commands like
adb install C:\bla\bla\*.apk work like a charm
so if you download a filemanager, say "filemanager.apk".
you can give the command
adb install C:\bla\downloads\filemanager.apk
and it will install it on you phone after which you can acces all your files directly on your device.
You will need the SDK and some more info
If you want to use the adb, cd to \platform-tools\
But all this will be clear after a few hours of reading, trial and error
Welcome to Android.
Click to expand...
Click to collapse
Hello!
thanks for your info. I was actually playing with adb and see it is very powerful. But you need the pc connected to your phone of course and again it seems not a so comfortable solution. I find a little bit curious not having an application installer or file explorer embedded in the system.
About the backup, I know that Tytanium need root privileges, correct? As far as I know no root procedure are still available on Incredible S. But, will tytanium allow to select what you want to restore? Maybe root is not necessary is you want to restore your application and not system files
Thanks
stefanospizzica said:
Hello!
thanks for your info. I was actually playing with adb and see it is very powerful. But you need the pc connected to your phone of course and again it seems not a so comfortable solution. I find a little bit curious not having an application installer or file explorer embedded in the system.
About the backup, I know that Tytanium need root privileges, correct? As far as I know no root procedure are still available on Incredible S. But, will tytanium allow to select what you want to restore? Maybe root is not necessary is you want to restore your application and not system files
Thanks
Click to expand...
Click to collapse
Yes, with titanium backup it is possible to select only certain apps that you wan't to restore.
It is indeed strange that HTC doesn't ship their android devices with a file manager, I recall my Hero didn't have one too. My Galaxy S does, although it's extremely basic.
I think after a few weeks when the first custom roms come out they will probably have a file manager installed in them. Until then I would recommend Linda Filemanager or OI Filemanager from the market, they are both free and quite powerful.
Cheers,
DaanJordaan
Regarding Titanium Root requirements. It does allow you to select between applications to restore, but the root check at start-up means you can't even access the backup/restore screen if your device isn't rooted.
It would be interested to see if a temproot is sufficient to restore certain apps. Something for me to try when i get home
As for the file manager... i think it was a concious decision to keep the device consumer focused. HTC has changed much in the last 2 years and definitely closed a lot of doors/windows they had open to devs and geeky consumers.
Bantu85 said:
Regarding Titanium Root requirements. It does allow you to select between applications to restore, but the root check at start-up means you can't even access the backup/restore screen if your device isn't rooted.
It would be interested to see if a temproot is sufficient to restore certain apps. Something for me to try when i get home
As for the file manager... i think it was a concious decision to keep the device consumer focused. HTC has changed much in the last 2 years and definitely closed a lot of doors/windows they had open to devs and geeky consumers.
Click to expand...
Click to collapse
Hello
what does temproot means? How do you log on as temproot?
Let me know about your trial...
Thanks

[Q] broke my home haptic

I am running GR-11 and liking it....but I recently uploaded an i9000 theme for JVB roms and it seems to have broken my home haptic feedback. Is there any way to fix this without reflashing...preferably with a CWM zip?
erad1 said:
I am running GR-11 and liking it....but I recently uploaded an i9000 theme for JVB roms and it seems to have broken my home haptic feedback. Is there any way to fix this without reflashing...preferably with a CWM zip?
Click to expand...
Click to collapse
Grab the android policy jar from your rom zip and use root explorer to put it in your system/framework folder and over write the old one. You must be careful flashing themes as the roms are very modded and if the theme doesnt have the mods then you will lose functions like the feedback
Trying to use astro and it doesn't allow me to copy/paste anything into system/framework...never has, although my system is mounted rw thru SGS toolbox...ill have to try another file manager i guess. unless there is something about astro im not aware of. What i've heard/read is that the only difference in the pro version is its ad-free. Is that true?
erad1 said:
Trying to use astro and it doesn't allow me to copy/paste anything into system/framework...never has, although my system is mounted rw thru SGS toolbox...ill have to try another file manager i guess. unless there is something about astro im not aware of. What i've heard/read is that the only difference in the pro version is its ad-free. Is that true?
Click to expand...
Click to collapse
From what I understand Astro will not work as it doesnt have the ability to edit root files. I use Root Explorer and not sure about astro
Thanks for your help but I tried es/file explorer and file expert but neither actually worked....weird? Guess ill just wait for the actual GR release as I am very pleased with my current version.
Sent from my GT-I9000 using XDA App
you need to mount the system folder r/w outside of astro before you edit anything. you can use terminal emulator for that but you might as well use adb for everything. atleast then you mave a big screen and a keyboard. you can also buy root explorer which lets you mount folders r/w in the app, it is one of the few apps that are worth it for root users.
Dani897 said:
you need to mount the system folder r/w outside of astro before you edit anything. you can use terminal emulator for that but you might as well use adb for everything. atleast then you mave a big screen and a keyboard. you can also buy root explorer which lets you mount folders r/w in the app, it is one of the few apps that are worth it for root users.
Click to expand...
Click to collapse
Supermanager mounts RW and is free
This helped me a lot because no ammount of adb shell commands would get my /system to RW
...Root Explorer got me where I needed to be and now my home haptic is back, thanks !

[Q]Difference between ROM & Kernel?

Would appreciate it if someone can explain to me the difference between a kernel and a Rom.
And also, what does it mean by "pushing to /system/app"?
Thanks in advance.
http://lmgtfy.com/?q=kernel+rom
Can someone guide me on how to push an app to system/app please?
I know it has something to do with ADB but I do not know the exact steps. Thanks.
At first you need root access. Then you need an app like 'Root Explorer' and with this app you can push files into /system - folder.
Sent from my GT-I9000 using XDA Premium App
Imagine a rom as a car. The kernel would be the engine.
Sent from my DynaTAC 8000X
sendokan said:
http://lmgtfy.com/?q=kernel+rom
Click to expand...
Click to collapse
How about a better answer?
A kernel is a piece of software (kind of like a program/executable) that interfaces directly with your hardware and provides a standardized interface for higher level software to use that hardware.
ROM means Read Only Memory. In this case, ROM is not the proper term but it is in common usage despite the fact that you can write it/overwrite it. Regardless of the details, for your purposes, a ROM is the higher level software that provides interfaces between the kernel and you. E.G. the libraries, windows manager, etc.
I am unsure in this context, but I think the ROM contains the CSC stuff too. The CSC contains stuff specific to a particular locale or vendor such as programs like Layar or codes for APNs.
I followed the above Let Me Google That For You link and this thread was the first one that popped up. I quickly browsed a few other threads but getting any real meaning was going to be quite tedious.
Good luck and have fun.
strikethree said:
How about a better answer?
A kernel is a piece of software (kind of like a program/executable) that interfaces directly with your hardware and provides a standardized interface for higher level software to use that hardware.
ROM means Read Only Memory. In this case, ROM is not the proper term but it is in common usage despite the fact that you can write it/overwrite it. Regardless of the details, for your purposes, a ROM is the higher level software that provides interfaces between the kernel and you. E.G. the libraries, windows manager, etc.
I am unsure in this context, but I think the ROM contains the CSC stuff too. The CSC contains stuff specific to a particular locale or vendor such as programs like Layar or codes for APNs.
I followed the above Let Me Google That For You link and this thread was the first one that popped up. I quickly browsed a few other threads but getting any real meaning was going to be quite tedious.
Good luck and have fun.
Click to expand...
Click to collapse
first one is a thread from a year ago with exactly the same title
The kernel manages system resources and functions like a bridge between applications and hardware. One could compare it in many ways, but this is generally what it does.
Thanks all for the explanation. Will search around to understand the differences.
Lunchbox115 said:
At first you need root access. Then you need an app like 'Root Explorer' and with this app you can push files into /system - folder.
Sent from my GT-I9000 using XDA Premium App
Click to expand...
Click to collapse
May I know how exactly do I push the apk to /system/app? I have Root Explorer installed already.
Do I move the apk to /system/app then install it from there? Or am I supposed to install the normal way, then shift the apk from /data/app (where apps are usually installed to right?) to /system/app?
Which *.apk do you want to install?
Normally you just have to click on the *.apk (with any file manager) and you can install it.
At first, you need root.
After that, you have a few ways to do this:
Way 1: Use any File Explorer, which can get SU permission and access the system folder.
Then copy & paste
Way 2: You could connect your device to your computer with a USB cable (Debug-Mode on!).
Then you couls google a ADB tool.
Or you open the command line and type this into your cmd:
cd [drive]:\[folder where adb is located]\
adb root
After that you could find out where you are with the "ls" command.
Sent from my GT-I9000 using XDA Premium App
Lunchbox115 said:
Which *.apk do you want to install?
Normally you just have to click on the *.apk (with any file manager) and you can install it.
Click to expand...
Click to collapse
I am actually trying to do this --> http://forum.xda-developers.com/showthread.php?t=1123830
Installing
You can install the EDT Tweaks app or you can push it to /system/app
You must push SystemUI.apk to /system/app
I don't want to make a flashable quite yet because I want more experienced users to test this out, etc
Click to expand...
Click to collapse
So am I supposed to push first then install or the other way round?
I tried installing the normal way, then shifted the apk from /data/app to /system/app but received an error when I tried to open the app.
Anybody please?

Categories

Resources