Questions tagged [subsystem]
76 questions
52
votes
2 answers
Writing a Windows NT subsystem
I'd like to try writing my own minimal NT subsystem on Windows 7 for purely educational purposes -- something like a bare-bones equivalent of the posix.exe in Microsoft's Subsystem for Unix-based Applications.
But I can't seem to find any public…

mshroyer
- 1,928
- 17
- 14
31
votes
4 answers
Installing Apache on Windows Subsystem for Linux
Having just updated to the newest Windows 10 release (build 14316), I immediately started playing with WSL, the Windows Subsystem for Linux, which is supposed to run an Ubuntu installation on Windows.
Maybe I'm trying the impossible by trying to…

bluppfisk
- 2,538
- 3
- 27
- 56
19
votes
3 answers
subsystem request failed on channel 0 scp: Connection closed - Macbook
can you please help me
when I run this in terminal :
scp -p -P 29418 michealvern.genzola@192.168.0.122:hooks/commit-msg "jyei-erp/.git/hooks/"
it says :
subsystem request failed on channel 0
scp: Connection closed
someone help me

Michael Vern
- 201
- 1
- 1
- 3
7
votes
2 answers
Register Game Object Components in Game Subsystems? (Component-based Game Object design)
I'm creating a component-based game object system. Some tips:
GameObject is simply a list of Components.
There are GameSubsystems. For example, rendering, physics etc. Each GameSubsystem contains pointers to some of Components. GameSubsystem is a…

topright gamedev
- 2,617
- 7
- 35
- 53
5
votes
2 answers
How to manage CFC's (subsystem) that's shared across multiple sites?
How can you manage something like that? I tried my best to design the subsystem to be reusable, but there are just certain things that are unique to the site that have to be customized (e.g. fields in Account entity, or cfc="" in orm annotation).
I…

Henry
- 32,689
- 19
- 120
- 221
5
votes
0 answers
BundleEvents across Equinox Regions
We run our application in a Equinox OSGi runtime. There is an extension mechanisms in place that are used alongside OSGi itself to load plugins from 2nd/3rd parties. The problem is that those plugins can introduce packages that interfere with the…

dimitarproynov
- 51
- 1
- 2
5
votes
2 answers
Which windows subsystem is supported on a recovery disk
When running a standard Windows 7 Installation Disk in recovery mode, if you open up the command line and run a custom-built application you will receive the error 'subsystem not supported'. I have tried linking with /SUBSYSTEM:CONSOLE, WINDOWS and…

James
- 1,569
- 10
- 18
4
votes
3 answers
What exactly is a subsystem?
I'm reading a book which says there are these subsystems:
win32,os/2,posix,etc..
But I don't have any perceptual knowledge with these notations, can you explain it in short words?

compile-fan
- 16,885
- 22
- 59
- 73
4
votes
1 answer
How to use AtomicLong on Hazelcast CP Subsystem with just 2 Hazelcast cluster nodes?
I am updating to latest Hazelcast version [3.12] and I am facing problem to obtain a instance of AtomicLong. The new version, HZ introduces the concept of CAP Theorem, to grant Consistency and Partition Tolerance, but he problem is the CP subsystem…

Renato Rodrigues
- 53
- 4
3
votes
1 answer
C++ Windows link subsystem question
When using the windows SDK to compile a program writen in C++, if I specify -subsystem:windows,6.1,
the width of the window is smaller. If I don't, or do -subsystem:windows without the 6.1, the width is normal.
I'm curious why this does this, and if…

Josh
- 6,046
- 11
- 52
- 83
3
votes
2 answers
Solving ODEs inside a Subsystem in Simulink
I'm trying to figure out how to solve a system of ODEs inside a subsystem in a Simulink model. Basically, each call to this subsystem, which happens at each tick of the simulation clock (fixed-step), entails solving the ODEs. So there's like a…

Bruno
- 1,329
- 2
- 15
- 35
3
votes
2 answers
Can OSGi subsystems replace Eclipse features?
OSGi R5 Enterprise release contains the Subsystem specification.
Does OSGi subsystems contain all capabilities of Eclipse feature?
Does tooling exist for it?
Purpose of this mapping would be a re-use of existing eclipse features in e.g. felix or…

Peter Kirschner
- 927
- 1
- 9
- 17
3
votes
2 answers
/SUBSYSTEM:Windows program will not write to command line
I have a mixed mode C++-CLI program in Visual Studio 2005 that is set to use the /SUBSYSTEM:Windows. Generally speaking it is a graphical application that is launched from its shortcut or through the filetype registered to it.
However, there is a…

mindless.panda
- 4,014
- 4
- 35
- 57
3
votes
1 answer
Retrieve USB information using pyudev with device name
I retrieve the first device information from the block subsystem. For example that a USB stick was assigned to /dev/sdb.
This is all the infos I can retrieve via the block subsystem:
[(u'DEVLINKS',…

rand0m
- 903
- 2
- 8
- 16
3
votes
3 answers
Remove Console from waf build Qt Program in Windows
I have this Qt program that i am building with waf.I am testing it out in windows and everytime i run the exe file the console opens up.
In (Qt)pro file(if build with qmake) you just have to make sure you remove
CONFIG += console
But i am not sure…
user671253