Top "System" questions

System may refer to a set of interdependent components; Low level infrastructure like the operating system (from a high language point of view) or an object or function for accessing the previous

Is there a disassembler + debugger for java (ala OllyDbg / SoftICE for assembler)?

Is there a utility similar to OllyDbg / SoftICE for java? I.e. execute class (from jar / with class path) and, …

java debugging system disassembly javap
Suppress console when calling "system" in C++

I'm using the system command in C++ to call some external program, and whenever I use it, a console window …

c++ console system system-calls
Installing an APK on /system/priv-app

I have a rooted TV Box with Android 7.1.2 which didn't come with the Files app (com.android.documentsui), so I …

android installation system android-external-storage android-7.1-nougat
Detect OS from Bash script and notify user

Using bash, I want to find the operating system and notify the user. I tried: OS='uname -s' echo "$OS" …

string bash system uname
How to display system log on iPad/iPhone iOS device?

I want to be able to view all of the NSLog() messages from my App in the App itself. How …

iphone ios ipad system nslog
Unsafe State and Safe State

I have learned a little about Unsafe State and Safe State. Safe State is when there is no chance of …

operating-system thread-safety system unsafe bankers-algorithm
Batch/VB Script to set of System Beep

I'm wondering, with batch, vbs or any other built in windows languages, can I make the system beep (like the …

batch-file vbscript system beep
How to avoid system killing service when application/activity is killed

I have an app with one activity and one service. If I kill the activity while the service is running …

android service android-activity system kill-process
system() and CreateProcess() / CreateProcessW()

I want to execute a TEST.exe in a C program. While I use system( "TEST.exe <input-file> …

windows system createprocess external-process