How to perform process handling routines on a Ubuntu machine on a Windows system
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
On my Windows 10 machine, I've installed a Ubuntu system (as a Trusted Microsoft Store app). When I open that window and type help
, these are the first lines I see:
GNU bash, version 4.3.48(1)-release (x86_64-pc-linux-gnu)
The results of uname -a
are the following:
Linux DOMINIQUEDS 4.4.0-43-Microsoft #1-Microsoft Wed Dec 31 14:42:53 PST 2014 x86_64 x86_64 x86_64 GNU/Linux
In that Ubuntu window, I have lots of interesting Linux/UNIX features, like find
, grep
, ..., but now I would like to do some process handling (ps -ef
, kill -9
), and this seems not to work:
When opening Windows task manager, I see ñ100 processes running.
When I run ps -ef
, (even after having opened the Ubuntu window as administrator), I only see three processes:
DominiqueDS@DOMINIQUEDS:~$ ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 17:14 ? 00:00:00 /init
Dominiq+ 2 1 0 17:14 tty1 00:00:00 -bash
Dominiq+ 18 2 0 17:19 tty1 00:00:00 ps -ef
Does anybody know how I can make ps -ef
and kill -9
work in this Ubuntu window on my Windows-10 machine?
Thanks in advance
windows windows-10 process
add a comment |Â
up vote
1
down vote
favorite
On my Windows 10 machine, I've installed a Ubuntu system (as a Trusted Microsoft Store app). When I open that window and type help
, these are the first lines I see:
GNU bash, version 4.3.48(1)-release (x86_64-pc-linux-gnu)
The results of uname -a
are the following:
Linux DOMINIQUEDS 4.4.0-43-Microsoft #1-Microsoft Wed Dec 31 14:42:53 PST 2014 x86_64 x86_64 x86_64 GNU/Linux
In that Ubuntu window, I have lots of interesting Linux/UNIX features, like find
, grep
, ..., but now I would like to do some process handling (ps -ef
, kill -9
), and this seems not to work:
When opening Windows task manager, I see ñ100 processes running.
When I run ps -ef
, (even after having opened the Ubuntu window as administrator), I only see three processes:
DominiqueDS@DOMINIQUEDS:~$ ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 17:14 ? 00:00:00 /init
Dominiq+ 2 1 0 17:14 tty1 00:00:00 -bash
Dominiq+ 18 2 0 17:19 tty1 00:00:00 ps -ef
Does anybody know how I can make ps -ef
and kill -9
work in this Ubuntu window on my Windows-10 machine?
Thanks in advance
windows windows-10 process
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
On my Windows 10 machine, I've installed a Ubuntu system (as a Trusted Microsoft Store app). When I open that window and type help
, these are the first lines I see:
GNU bash, version 4.3.48(1)-release (x86_64-pc-linux-gnu)
The results of uname -a
are the following:
Linux DOMINIQUEDS 4.4.0-43-Microsoft #1-Microsoft Wed Dec 31 14:42:53 PST 2014 x86_64 x86_64 x86_64 GNU/Linux
In that Ubuntu window, I have lots of interesting Linux/UNIX features, like find
, grep
, ..., but now I would like to do some process handling (ps -ef
, kill -9
), and this seems not to work:
When opening Windows task manager, I see ñ100 processes running.
When I run ps -ef
, (even after having opened the Ubuntu window as administrator), I only see three processes:
DominiqueDS@DOMINIQUEDS:~$ ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 17:14 ? 00:00:00 /init
Dominiq+ 2 1 0 17:14 tty1 00:00:00 -bash
Dominiq+ 18 2 0 17:19 tty1 00:00:00 ps -ef
Does anybody know how I can make ps -ef
and kill -9
work in this Ubuntu window on my Windows-10 machine?
Thanks in advance
windows windows-10 process
On my Windows 10 machine, I've installed a Ubuntu system (as a Trusted Microsoft Store app). When I open that window and type help
, these are the first lines I see:
GNU bash, version 4.3.48(1)-release (x86_64-pc-linux-gnu)
The results of uname -a
are the following:
Linux DOMINIQUEDS 4.4.0-43-Microsoft #1-Microsoft Wed Dec 31 14:42:53 PST 2014 x86_64 x86_64 x86_64 GNU/Linux
In that Ubuntu window, I have lots of interesting Linux/UNIX features, like find
, grep
, ..., but now I would like to do some process handling (ps -ef
, kill -9
), and this seems not to work:
When opening Windows task manager, I see ñ100 processes running.
When I run ps -ef
, (even after having opened the Ubuntu window as administrator), I only see three processes:
DominiqueDS@DOMINIQUEDS:~$ ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 17:14 ? 00:00:00 /init
Dominiq+ 2 1 0 17:14 tty1 00:00:00 -bash
Dominiq+ 18 2 0 17:19 tty1 00:00:00 ps -ef
Does anybody know how I can make ps -ef
and kill -9
work in this Ubuntu window on my Windows-10 machine?
Thanks in advance
windows windows-10 process
windows windows-10 process
asked Mar 28 at 7:54
Dominique
1106
1106
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
Well you can't.
WSL Bash in Windows 10 runs in a kind of sandbox, and has no access to windows processes.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Well you can't.
WSL Bash in Windows 10 runs in a kind of sandbox, and has no access to windows processes.
add a comment |Â
up vote
0
down vote
Well you can't.
WSL Bash in Windows 10 runs in a kind of sandbox, and has no access to windows processes.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Well you can't.
WSL Bash in Windows 10 runs in a kind of sandbox, and has no access to windows processes.
Well you can't.
WSL Bash in Windows 10 runs in a kind of sandbox, and has no access to windows processes.
answered Mar 28 at 8:07
olikaf
1566
1566
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1019873%2fhow-to-perform-process-handling-routines-on-a-ubuntu-machine-on-a-windows-system%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password