Questions tagged [root]

On Unix-like systems, a special user account used for system administration.

root is the conventional name of the powerful user with id 0 on Unix-like systems such as Linux . Many administrative commands and system calls are reserved to root.

Use if your question is not about the user, but simply about a device that has been rooted.

Root is a system user. It is rare to log in directly as root, but rather, users who are privileged enough gain root access for one command with sudo , or log into a temporary root shell with su .

In the world of (which runs on an Linux kernel), a rooted device is one where OS protections have been disabled, allowing processes to run as root, and thus do things they would normally be prevented from doing, such as reading all files on the device.

Not to be confused with CERN's ROOT framework for statistical analysis in C++, see .

See also:

3340 questions
1
vote
0 answers

Run a third party app inside own app on a rooted android device

I am developing an android app for a rooted android Setup box. In my application I want to run a 3rd party application inside my application (similar to iFrames in HTML) as illustrated below I have following questions: Is it possible to run a 3rd…
1
vote
1 answer

Stanford Core NLP Parse tree without a root

I'm using Stanford CoreNLP for getting dependency trees of sentences. The problem that I came accross is, for some of the sentences, the tree does not have a root node. Is this possible? Here, there is a similar example in which the problem is…
1
vote
2 answers

Are there downsides to installing node.js with root privileges?

I'm using the following code to install node: cd /usr/local/src/ wget http://nodejs.org/dist/v0.10.25/node-v0.10.25.tar.gz tar -xvf node-v0.10.25.tar.gz cd node-v0.10.25 ./configure make make install # node.js…
B T
  • 57,525
  • 34
  • 189
  • 207
1
vote
0 answers

Cannot access mysql on VPS server from remote terminal

There is configured site on Joomla on VPS server. Joomla works fine. There is a data about mysql user/password(NOT ROOT) in configuration.php file, but I cannot access to mysql or phpmyadmin with this data from remote terminal. Even a php file…
1
vote
0 answers

VBA Pass Functions to create Root Finder

I am trying to create a generic bissection method root finding user defined function called Root. I want Root accept the following "arguments" Root(Function, variable, lower bound, upper bound) Root(F(a,b,c,...,Z), Z, Upper, Lower) The Root function…
1
vote
0 answers

Interpolation and Root Finding

For an assignment I had to interpolate data [linear interpolation and cubic interpolation] and create two graphs that showed the data as points and the interpolation as a line. I also had to plot the max value of the data. I got all of this to work,…
philxyz
  • 23
  • 7
1
vote
1 answer

Start application as root using "am start" command in Android

Like the title above, I need to launch an application using command line programmatically. I have searched for hours, but can't figure it out how to do this, don't know where to start in code. Please help me .If possible, please leave some…
Androidizing
  • 87
  • 2
  • 11
1
vote
1 answer

Can't get Android App installed as System App on emulator to get past SecurityException for WRITE_APN_SETTINGS

I have an Android app which I want to use to set the APN settings. This requires the android.permission.WRITE_APN_SETTINGS permission, which is only granted to System apps or apps signed with the same private key as the OS itself. I'm only going…
user3969581
1
vote
2 answers

Get relative path to a parent directory

I have a scenario where I want to get a path back to a specific parent directory. Here is an example folder strcuture ([something] is a folder) index.php [components] header.php footer.php [pages] somePage.php [somePageSubPages] …
ruhig brauner
  • 943
  • 1
  • 13
  • 35
1
vote
1 answer

scipy.optimize.fsolve convergence bug?

Here's the code import scipy as sc import scipy.optimize as sco def g(rho): return 0.5 * (rho**2 + rho) * sc.exp(-rho) p = 0.01017036 guess = 1.5879245860401234 sol = sco.fsolve(lambda rho: g(rho) - p, guess, full_output=True) print g(sol[0])…
andres
  • 1,079
  • 1
  • 10
  • 17
1
vote
1 answer

User Permissions in Ubuntu

I want to access "sudoers" file and also access "su -" but I fail and get following error please check terminal output that I have tried. I am m-usman(admin) but not allow to edit or access ? :( m-usman@muhammad-usman:~$ sudo gedit…
Muhammad Usman
  • 1,366
  • 5
  • 18
  • 33
1
vote
2 answers

Removing Branch Nodes with Only One Child

I am heavily struggling with making this method that removes all branches with only one child. For instance, this: +---+ | 2 | ___ +---+ ___ / \ +---+ …
Jack L.
  • 405
  • 2
  • 13
  • 31
1
vote
0 answers

White screen phonegap in android device

So I am building a phonegap application where I use BarcodeScanner plugin. I rooted my device and use 2 commands: command-1: service call activity 42 s16 com.android.systemui command-2: am startservice -n…
Mikhail Kim
  • 559
  • 7
  • 18
1
vote
1 answer

Android - Hide notification bar but keep navigation one

I'm creating a kind of Kiosk application for Android but I must disable the notification bar to avoid the customers to access Wifi, Bluetooth or GPS quick access. So far I've rooted the device and disabled the com.android.systemui package to achieve…
Manitoba
  • 8,522
  • 11
  • 60
  • 122
1
vote
1 answer

rootcint: error while loading shared libraries: libCint.so (XPS Package Installation from Bioconductor)

I am trying to install the XPS package from Bioconductor. These are my steps: #install libxpm library sudo apt-get install libxpm-dev ~/downloads $ wget ftp://root.cern.ch/root/root_v5.34.19.source.tar.gz ~/downloads $ tar -zxvf…
Komal Rathi
  • 4,164
  • 13
  • 60
  • 98