Related
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.
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
I'm rooted and running CM6.1. It appears I lost my root access to the /data folder which I once had access to. Now when I use astro file manager on my phone and open the data folder it displays "No files or Folders" which is not true. I ran a simple "ls /data" in the terminal, and it showed me many folders.
Can somebody please help me get access back? Thanks
EDIT: just tried droidexplorer and same thing, no files or folders appear.
Try Root Explorer... I'll look for it & try to upload it for you to install, I've had good luck using it myself, hopefully it will Help You Too!!
Ok Here You Go Ubunix!! I Also Uploaded ES File Explorer, GOOD-LUCK!!
Sent from my HERO200 using XDA App
I tired both of those already too, no anvil. I think I have to do a nandroid, because I do recall deleting the "/d" folder in the root directory, not knowing that it served any purpose.
PMGRANDS said:
Try Root Explorer... I'll look for it & try to upload it for you to install, I've had good luck using it myself, hopefully it will Help You Too!!
Ok Here You Go Ubunix!! I Also Uploaded ES File Explorer, GOOD-LUCK!!
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
I'd remove root explorer if I were you...Its a paid app
Warez is not allowed on XDA
Forum Rules Here
UPDATE: Back to normal after doing a nandroid, still dont know the specific cause, but thanks PMGRANDS for suggestions!
Root explorer removed. it's a paid app, so it's warez if you post it
Oh Okay.... I'm Sorry Every1.... I Was Just Trying To Help Out, Honestly I Didn't Know I About The Paid App Upload Restriction!! I Respect This Site And All Of It's Developers, Didn't Mean To Break Any Rules, Or Offend Anybody!! Sorry Once Again!! I'm Wondering Now If ES Explorer Is A Paid App? I Got It From A Rom I Installed, I'm Using The XDA App, & Can't Figure Out How To Delete The ES Explorer Apk. I Uploaded From My Laptop Which I Won't Have Access To For A Few Days.... If Any1 Knows How (If Possible) I'd Appreciate The Info!! Thanx!!!
Sent from my HERO200 using XDA App
Hello
I recently picked up a HD Fire which is on the newest update 7.2.1 and rooted it with the "Qemu automated root" method, which it said was successful. I see the SU app, thing is "ES file explorer" wont let me turn on root explorer and another app "root explorer" wont let me change system permissions to R/W to move apps around.. I am stuck, and I am assuming that I am not rooted if I cant change permissions?
Thanks..
Barhen said:
Hello
I recently picked up a HD Fire which is on the newest update 7.2.1 and rooted it with the "Qemu automated root" method, which it said was successful. I see the SU app, thing is "ES file explorer" wont let me turn on root explorer and another app "root explorer" wont let me change system permissions to R/W to move apps around.. I am stuck, and I am assuming that I am not rooted if I cant change permissions?
Thanks..
Click to expand...
Click to collapse
Permissions must be changed in the root partition
Sent from my KFTT using xda app-developers app
dank101 said:
Permissions must be changed in the root partition
Sent from my KFTT using xda app-developers app
Click to expand...
Click to collapse
is there a guide to do that, because I don't know how to do that.
Barhen said:
is there a guide to do that, because I don't know how to do that.
Click to expand...
Click to collapse
Lol its easier to do it then it sounds copy it with root explorer to the directory / and that's the root partition
Sent from my KFTT using xda app-developers app
dank101 said:
Lol its easier to do it then it sounds copy it with root explorer to the directory / and that's the root partition
Sent from my KFTT using xda app-developers app
Click to expand...
Click to collapse
.... I cant change anything with Read only and I am not able to enable r/w, including moving files to root directory with the app.
Edit: Weird.. I redid the root process for the 5th time and it finally worked.
Barhen said:
.... I cant change anything with Read only and I am not able to enable r/w, including moving files to root directory with the app.
Edit: Weird.. I redid the root process for the 5th time and it finally worked.
Click to expand...
Click to collapse
Glad you got it working....In My experience (which isnt great) Id Just sack ES Explorer and use Root Explorer....Its quite simple in there. There is a button at the top that is for read only or read write.....It says Mount R/W to get read write or when your in RW it says Mount R/O for read Only. Im a massive fan of Root Explorer ....And no I dont have anything to do with it......Its the best Stat! for less than £4 I also have their SQL database editor....Which actually lets you edit stuff...Unlike some Ive had to get refunds for!
thedeester1 said:
Glad you got it working....In My experience (which isnt great) Id Just sack ES Explorer and use Root Explorer....Its quite simple in there. There is a button at the top that is for read only or read write.....It says Mount R/W to get read write or when your in RW it says Mount R/O for read Only. Im a massive fan of Root Explorer ....And no I dont have anything to do with it......Its the best Stat! for less than £4 I also have their SQL database editor....Which actually lets you edit stuff...Unlike some Ive had to get refunds for!
Click to expand...
Click to collapse
Hello,
when I try to switch Root Explorer I got message:
Sorry, test failed!. This feature cannot run on your device.
What I have to do?
I have Kindle Fire HD 7", Serial Number D025 AOAO**** ****
Current version : 7.5.1
Advertising in itself is not bad but when it gets a bit intrusive and repeated, it can be a big thing for a lot of people.
ES File Explorer is one of the most used file manager in the world. One of the file explorers I use everyday. Except that after a while his advertisements were already a little too generous. The Pro version (paying) bringing almost nothing as an addition, I found a way to block the ads of the free version. So I share with you my method - which some people are already using:laugh:.
Prerequisites:
/Be root
/BusyBox(installed)
/ROM Toolbox Prop)(installed)
Methodology:
Open ROM Toolbox Pro
Grant SuperUser Rights
in Tools, open "App Manager"
Search "ES File Explorer app"
Clicked on app
Swipe to the "ADVANCED" tab
Clicked on "Advanced Freeze"
Now here is the list of activities to disable:
AdActivity
ADUnlockActivity
AudienceNetworkActivity
DialogActivity(New)
DuWebActivity
MoPubBrowser
MraidVideoPlayerActivity(New)
SearchFragmentActivity(New)
WebActivity
AlarmReceiver
DuSearchPackageChangeReceiver
DuAdCacheProvider
MobulaCacheProvider
Restart ES File Explorer and finish intrusive and invasive advertisements.:good:
Rather use it the old version ES File Explorer (3.2.55) from apkmirror with no advertising. Just do not update it! He knows everything he needs. It has the "old" usable interface and no advertising. No need to root, no busybox and others stuff! You're downloading, installing, and all happy
hevesi_j said:
Rather use it the old version ES File Explorer (3.2.55) from apkmirror with no advertising. Just do not update it! He knows everything he needs. It has the "old" usable interface and no advertising. No need to root, no busybox and others stuff! You're downloading, installing, and all happy
Click to expand...
Click to collapse
This can be a solution but as much to have the latest with additional options and better stability the newer systems.
Unstable file manager? Mahhhhh!
sullytrny said:
Unstable file manager? Mahhhhh!
Click to expand...
Click to collapse
Unstable??
Good guide
Dadochouxx said:
Advertising in itself is not bad but when it gets a bit intrusive and repeated, it can be a big thing for a lot of people.
ES File Explorer is one of the most used file manager in the world. One of the file explorers I use everyday. Except that after a while his advertisements were already a little too generous. The Pro version (paying) bringing almost nothing as an addition, I found a way to block the ads of the free version. So I share with you my method - which some people are already using:laugh:.
Prerequisites:
/Be root
/BusyBox(installed)
/ROM Toolbox Prop)(installed)
Methodology:
Open ROM Toolbox Pro
Grant SuperUser Rights
in Tools, open "App Manager"
Search "ES File Explorer app"
Clicked on app
Swipe to the "ADVANCED" tab
Clicked on "Advanced Freeze"
Now here is the list of activities to disable:
AdActivity
ADUnlockActivity
AudienceNetworkActivity
DialogActivity(New)
DuWebActivity
MoPubBrowser
MraidVideoPlayerActivity(New)
SearchFragmentActivity(New)
WebActivity
AlarmReceiver
DuSearchPackageChangeReceiver
DuAdCacheProvider
MobulaCacheProvider
Restart ES File Explorer and finish intrusive and invasive advertisements.:good:
Click to expand...
Click to collapse
...... Right. Or you buy the app and give the developer his money..... You are kinda ripping off the creator with this method.
Or just get the pro version from Blackmart. No root needed, just download and install.
PS I don't have a credit card so that's the only way for me, if i could i would buy it but i just can't xd
koragg97 said:
Or just get the pro version from Blackmart. No root needed, just download and install.
PS I don't have a credit card so that's the only way for me, if i could i would buy it but i just can't xd
Click to expand...
Click to collapse
It's still calling for baidoo. Right now blocking it with Netguard or XPrivacy. So you only get rid of visible Ads not of tracking ads at all.
godkingofcanada said:
...... Right. Or you buy the app and give the developer his money..... You are kinda ripping off the creator with this method.
Click to expand...
Click to collapse
Their advertising has become too intrusive. Far from the idea of killing the developer, it is the same as a blocker of commercials on PC. The paid version was no longer up to date for a long time but I think they have recently updated it.
koragg97 said:
Or just get the pro version from Blackmart. No root needed, just download and install.
PS I don't have a credit card so that's the only way for me, if i could i would buy it but i just can't xd
Click to expand...
Click to collapse
Effectively