Tagged Questions

on Unix-like systems, special user account used for system administration

learn more… | top users | synonyms

34
votes
9answers
18k views

Is there a way for non-root processes to bind to “privileged” ports (<1024) on Linux?

It's very annoying to have this limitation on my development box, when there won't ever be any users other than me. I'm aware of the standard workarounds, but none of them do exactly what I want: ...
17
votes
2answers
942 views

Dropping root privileges

I have a daemon which gets started as root (so it can bind to low ports). After initialisation I'd very much like to have it drop root privileges for safety reasons. Can anyone point me at a known ...
15
votes
5answers
4k views

What Belongs to the Aggregate Root

This is a practical Domain Driven Design question: Conceptually, I think I get Aggregate roots until I go to define one. I have an Employee entity, which has surfaced as an Aggregate root. In the ...
14
votes
5answers
2k views

Dropping Root Permissions In Python

I'd like to have a Python program start listening on port 80, but after that execute without root permissions. Is there a way to drop root or to get port 80 without it?
12
votes
8answers
13k views

Determine if running on a rooted device

My app has a certain piece of functionality that will only work on a device where root is available. Rather than having this feature fail when it is used (and then show an appropriate error message to ...
11
votes
2answers
1k views

Check if user is root in C?

How can I verify if the user is root?
9
votes
3answers
2k views

How to use sudo over SFTP with CyberDuck?

I'm copying this question from over here: http://getsatisfaction.com/cyberduck/topics/can_i_use_sudo_over_sftp_with_cyberduck I am having the same issue and finding it hard to find an answer: I ...
9
votes
3answers
564 views

How can get dtrace to run the traced command with non-root priviledges?

OS X lacks linux's strace, but it has dtrace which is supposed to be so much better. However, I miss the ability to do simple tracing on individual commands. For example, on linux I can write strace ...
9
votes
9answers
4k views

How to compute the nth root of a very big integer in python

I need a way to compute the nth root of a long integer in python. I tried pow(n, 1.0/3), but obviously it doesn't work any ideas ? UPDATE: By long integer i mean REALLY long ints like: ...
8
votes
1answer
529 views

How do I request root access in Android?

I need to get root access for rooted devices, and I was wondering how I can request root access. I need the access for the file system. Thanks a lot.
8
votes
4answers
4k views

Root user/sudo equivalent in Cygwin?

I'm trying to run a bash script in Cygwin. I get Must run as root, i.e. sudo ./scriptname errors. chmod 777 scriptname does nothing to help. I've looked for ways to imitate sudo on Cygwin, to ...
8
votes
3answers
6k views

root path doesnt work with php include

/ in the beginning of a link to get to the root folder doesnt work in php include. for example "/example/example.php" What is the solution?
8
votes
3answers
3k views

Debugging in XCode as root

In my program I need to create sockets and bind them to listen HTTP port (80). The program works fine when I launch it from command line with sudo, escalating permissions to root. Running under XCode ...
7
votes
4answers
1k views

C# How to know if a given path represents a root drive?

How can I know if a given directory is a root drive? (aside from checking if its path equals to "A:", "B:", "C:", etc.)
7
votes
3answers
1k views

What is the css / html `root` element?

I have just recently started using NetBeans IDE (6.9.1) and have used it to add a stylesheet to my site-in-progress. To my surprise, one element was automatically added: root { display: block; ...
7
votes
8answers
898 views

How do I sudo the current process?

Is it possible to use a sudo frontend (like gksudo) to elevate the privileges of the current process? I know I can do the following: sudo cat /etc/passwd- But I'm interested in doing this: ...
6
votes
1answer
110 views

Execute process as current Mac OS X user, not as root

I have created a Mac OS X helper application that always runs under root. I need to launch other application from it, but not as root. I want it to be launched from the current logged in user (not ...
6
votes
2answers
520 views

Python garbage collection can be that slow?

I have a problem with my python application, and I think it's related to the python garbage collection, even if I'm not sure... The problem is that my application takes a lot of time to exit and to ...
6
votes
3answers
3k views

How to use rvm (ruby version manager) with root account?

The whole point of rvm is to be able to install multiple rubies and access them from a user account. What do you do when you need to access any of those rubies from root? Or use gems installed in one ...
6
votes
6answers
3k views

How to programmatically gain root privileges?

I am writing some software (in C++, for Linux/Mac OSX) which runs as a non-privileged user but needs root privileges at some point (to create a new virtual device). Running this program as root is ...
6
votes
1answer
944 views

Authenticating GTK app to run with root permissions

I have a UI app (uses GTK) for Linux that requires to be run as root (it reads and writes /dev/sd*). Instead of requiring the user to open a root shell or use "sudo" manually every time when he ...
5
votes
1answer
88 views

Having some a map and some root we'd like to follow what standart algorithm would help in creating path?

We have some set of points (each point has its X and Y) and a multy map of roots [point, point]. We can move via roots from any point to any in any possible direction. We are given some path of 2d ...
5
votes
3answers
192 views

integer nth root

x' is the nth root of y if x' is the largest integer such that x^n <= y. x, x' and y are all integers. Is there any efficient way to compute such nth root? I know this is usually done by nth root ...
5
votes
3answers
7k views

How to get root access on Android emulator?

I have All Android SDK versions(from 1.5 to 2.3.3), and I tried many methods for getting root in Android emulator. I don't use any Android device and test everything on emulator(AVD). I need to get ...
5
votes
2answers
4k views

ANDROID: How to gain root access in an Android application?

I'm developing my first Android application, and I'm curious if there are any "standard" ways for executing privileged shell commands. I've only been able to find one way to do it, by executing su, ...
5
votes
1answer
1k views

Android ADB access to application databases without root

Can anyone tell me, is it possible to use the ADB to pull and push a database from an app, without root privaliges on the phone? For example, I know the location on my rooted magic and dream is: ...
5
votes
4answers
16k views

XML Serialization of List<T> - XML Root

First question on Stackoverflow (.Net 2.0): So I am trying to return an XML of a List with the following: public XmlDocument GetEntityXml() { StringWriter stringWriter = new ...
4
votes
1answer
74 views

Escalate App Privileges Programmatically OS X

I've done some digging and the main ideas I've seen floating around are using setuid/getuid and using the Authorization Services (which, for some reason gives me a symbol error when compiling but ...
4
votes
1answer
87 views

Rooting VS permissions

first of all, I'm not involved in any kind of Android development. I'm only curious. The question is: does an app obtaining root privileges still need to declare its required permissions in the ...
4
votes
2answers
509 views

How to check root access in android?

I created a method for checking whether the android phone is rooted or not. This is done as follows public int checkrootcommand(String string) { // TODO Auto-generated method stub Process ...
4
votes
1answer
208 views

Get root dialog in Python on Mac OS X, Windows?

How would I go about getting a privilege elevation dialog to pop up in my Python app? I want the UAC dialog on Windows and the password authentication dialog on Mac. Basically, I need root privileges ...
4
votes
3answers
312 views

Programmatically requesting elevated rights in Linux

(This question has identical title, but question body asks it in scripting point of view, e.g. su -c, don't dupe this to that) I have a Qt GUI app that needs to perform some file operations in /etc ...
4
votes
4answers
143 views

PHP secure root

My friend found a problem in my script, it gives acces to root files. This url gives passwd file: http://site.com/attachment.php?file=../../../../../../etc/passwd How to escape this security hole? ...
4
votes
4answers
1k views

Finding the root directory of a multi module maven reactor project

I want to use the maven-dependency-plugin to copy EAR-files from all sub-modules of my multi-module project to a directory that is relative to the root directory of the entire project. That is, my ...
4
votes
4answers
2k views

how to debug application as root in eclipse in Ubuntu?

I'm programming application using libpcap. when I debug the application in normal mode, pcap cannot get the network device. it seems that I have to debug the application in root. How can I debug the ...
4
votes
4answers
2k views

how to use setuid() from root to become user, with the possiblity of becoming root again later?

I'm trying to do the safe thing, and have a program that needs to runs as root to drop its privileges when it doesn't need them. This works well if I chmod my binary with the SUID bit, and make it ...
4
votes
2answers
376 views

computing large roots : bigdecimal / java

I tried to use the standard iterative algorithm to compute nth roots. For instance (111^123)^(1/123). The standard algorithm computes high powers of the base (in this case 111^123) which takes a lot ...
4
votes
7answers
2k views

Make python enter password when running a csh script

I'm writing a python script that executes a csh script in Solaris 10. The csh script prompts the user for the root password (which I know) but I'm not sure how to make the python script answer the ...
3
votes
1answer
57 views

Matlab search path for all users on linux

How can I add a Matlab search path for all users on a Linux system? I am managing a Linux computer that is shared by several people. I want to place some Matlab *.m files at a path (for example, ...
3
votes
2answers
105 views

how can i access this files in Android Emulator Using Command line

here i have rooted emulator so i have access of super user. i want to access this location in Android Emulator /data/data/com.google.android.location/files to get cache.wifi and cache.cell file. i ...
3
votes
4answers
147 views

Cube root of a negative number

I'm trying to find the cube root of a negative number but I get a NaN. Any help? System.out.println(Math.pow(-8, 1.0 / 3.0));
3
votes
3answers
443 views

nth root implementation in Java

I am working on a way to calculate the nth root of a number. However, I am having problems with the nth root of negative numbers. Most people say to use Math.pow(num, 1 / root), but this does not ...
3
votes
4answers
525 views

PHP Link to image outside root folder [a href, not img src]

Here's my situation: Images are stored outside root folder. I can access them with an external php file (as it should be) then file_get_contents then echo then img src it then it will show perfectly. ...
3
votes
1answer
394 views

NSTask, command line tools and root

I'm working on an app that needs to use dd (I do this with a shell script in the app bundle, that collects parameters from the app itself, makes some checks and then launches dd). To make this ...
3
votes
3answers
469 views

Generator G's requirement to be a primitive root modulo p in the Diffie Hellman algorithm

Having searched, I've found myself confused by the use of P and G in the Diffie Hellman algorithm. There is requirementy that P is prime, and G is a primitive root of P. I understand the security is ...
3
votes
2answers
3k views

Runtime.exec() : Reboot in Android?

I'm looking for a solution which can be used to reboot a rooted device. I jknow that rebooting a device is very poor design for the user, as stated here, and it's not really for an application. The ...
3
votes
2answers
8k views

How can I get root permissions through the Android SDK?

I'm learning Android programming, and I want to make an application which has to run as root. The logical thing would be to add a root permission in the Android Manifest. I saw this link in the ...
3
votes
3answers
386 views

Running a part of a Java Program as Root

All, I want to run a part of my Java program as root. Only one particular function as root. The other part of the programs should run with the user privileges with which the program was started. I ...
3
votes
3answers
648 views

Android application must not run on rooted devices

I'm writing an application that must not run on rooted devices. I want to store some secure data and which is possible only on non-rooted devices as nobody can access files in /data/data/package-name. ...
3
votes
2answers
181 views

Modify system configuration files and use system commands through web interface

I received a project recently and I am wondering how to do something in a correct and secure manner. The situation is the following: There are classes to manage linux users, mysql users and ...

1 2 3 4 5 11