Tagged Questions
The superuser tag has no wiki summary.
10
votes
4answers
4k views
Run a linux system command as a superuser, using a python script
I have got postfix installed on my machine and I am updating virtual_alias on the fly programmatically(using python)(on some action). Once I update the entry in the /etc/postfix/virtual_alias, I am ...
3
votes
1answer
157 views
Give up root privilegies?
I have a program which runs a bunch of tasks as root at launch. After that it needs to drop to a different user. How can that be done?
And just wondering, is it possible to reacquire root without ...
2
votes
3answers
256 views
Running native android executable as root?
Anybody knows how to to this?
This is my code:
try {
Process p = Runtime.getRuntime().exec("su");
p.waitFor();
} catch (IOException e) {
// TODO ...
2
votes
1answer
249 views
How can i stress my phone's CPU programatically?
So i overclocked my phone to 1.664ghz and I know there are apps that test your phone's CPU performance and stressers but I would like to make my own someway. What is the best way to really make your ...
2
votes
2answers
1k views
More than one Superuser command Android
I'm tring to run this:
String[] hin1 = { "su", "-c",
"mount -o remount,rw -t yaffs2 /dev/block/mtdblk3 /system" };
try {
...
2
votes
2answers
2k views
Writing android app that executes linux commands
I have an compiled executable that is supposed to copy itself from the res folder, and into the /data/data/package-name/ folder, and change the permissions, and then execute. Every step completes all ...
1
vote
1answer
35 views
What's a good version control system to use to version my whole local filesystem?
I'm in the specific use case of wanting to methodologically document everything significant I do while setting up my new workstation (running Mac OS X Lion).
I would like to version control, in the ...
1
vote
0answers
47 views
Android SU permissions IOException
if (DownloadManager.STATUS_SUCCESSFUL == c
.getInt(columnIndex)) {
mProgress.setProgress(70);
mStatus.setText(R.string.status_backup);
File dl_path = new ...
1
vote
0answers
75 views
Superuser not prompting [closed]
I recently installed ICS(Android 4) on my Samsung Galaxy S, and it seems that in the process my superuser app broke. Everything went fine, my phone is working better than ever, but when an app ...
1
vote
4answers
2k views
Can't open data directory on rooted android phone
I just rooted my phone because I need acces to the database my application is uisng. However, even though my phone is rooted, I still can't open the data folder in Eclipse File Explorer.
Is there ...
1
vote
1answer
1k views
Android: how to mount filesystem in RW from within my APK? (rooted, of course)
I'm trying to write an app that copies something to the /system partition at runtime. I've already implemented the ability to run terminal commands as root by requesting SU permissions. I can run a ...
1
vote
5answers
161 views
How to show that a script should be run as root in Linux
I am writing technical documentation for a smalll project I wrote in college. How do I show that script should be run with root privileges?
My main question is what is the norm of depicting show a ...
0
votes
1answer
67 views
Android SU permissions: How to use them?
There is a situation here, I'm developing an Android application, using Java. I'm pretty familiar with all this stuff, but now it's the first time when I need to use SU permissions. I just need to ...
0
votes
1answer
55 views
Building CDT projects from commandline
I'm having trouble running a CDT build from the command line when super user. I can run the following command as a regular user, but when I am super user eclipse tells me an error has occured and ...
0
votes
1answer
237 views
Android System Permissions Through Root
W/PackageManager(61): Not granting permission android.permission.SET_ACTIVITY_WATCHER to package
This is one such example of a permission that will not be granted to applications without being ...
0
votes
1answer
115 views
Android Open Activity And Close Previous One
Alright so I have a loader screen which fetches files and what not, things the app needs to function and then when it's done loading it starts the main activity. However when you press back it goes ...
0
votes
3answers
141 views
I need to give a java application super user access to view protected files on a mac
As above.
I have scoured the web, i also rang mac support and annoyed a mac (OSX Lion) genius (out of desperation).
I have no idea how to do this, I really don't want to have to sit on top of a ...
0
votes
1answer
108 views
How can granted Super_user permission at app level?
Any one have idea how can get super user permission at Application level ?
0
votes
2answers
51 views
Can't bypass home button delay with root access
I'm developing an app for private use. The problem is that the service I'm using to launch an activity when the home button is pressed, still suffers from the 5-second delay. I used this code to grant ...
0
votes
0answers
262 views
Android superuser access from my application
I'm writing an application that should modify some files it doesn't have access to: another application's database, default.prop, etc.
Currently, it is done with "su" request and temporary "chmod ...
0
votes
1answer
544 views
Where does Chrome store userscripts.user.js files on a mac?
i want to know where chrome stores the userscripts that are installed.
i couldn't find any answer elsewhere.
i'm on a mac.
0
votes
1answer
353 views
Build Android with Superuser
Does anyone know how to include super-user privileges when building android from source?
Please let me know if you do!
Thanks,
Kevin
0
votes
1answer
156 views
Can't figure out why my app is requesting root…?
I ask for the following permissions:
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission ...
0
votes
1answer
71 views
nuked my centos path settings
i, by mistake, nuked my centos path settings by adding a wrong path. i added the following :
PATH=/usr/local/jdk1.6.0/bin
export PATH
to /etc/profile/bashrc and now all the commands are gone.
...
0
votes
2answers
2k views
/etc/hosts file manipulation programmatically in android
Though I've write some small applications with android before, now I trying to write a root application and having some problems regarding file permissions.
Basically, my aim is to manipulate ...
0
votes
1answer
133 views
How to make *.py files have the python icon in Win7?
Installed the IronPython tools for VS 2010 but it didn't associate the *.py files to VS, neither did it (obviously) change the *.py files' icon.
How do I do that in Windows 7?
0
votes
0answers
124 views
Upgrading mysql from 4.1.22 to 5.0
I'm trying to upgrade our company's 4.1.22 version of MySQL to 5.
I'm using
sudo yum --enablerepo=centosplus upgrade mysql*
but keep getting an error of conflicted files with the 4.1 version.
...
0
votes
1answer
99 views
Require the user to enter the server's superuser/root password in PHP
I'm making a system called NCIV in PHP. In that system you can change a setting in settings.php, which allows the system's admin to enable or disable the usage of MySQL rather then a bunch of text ...
-2
votes
1answer
235 views
Android add root permission to application without Superuser [closed]
I want let my application installed in a rooted phone have root access, and i have no installed superuser app in my phone, i have tryed to run su but it not work.