Run rcp.statd without systemd (Ubuntu on Windows Subsystem for Linux (WSL))
![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
0
down vote
favorite
When I run certain mount commands, I am told
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
The command I find online to start statd is:
systemctl start statd
which gives anothe error:
> systemctl start statd
Failed to add /run/systemd/ask-password to directory watch: No such file or directory
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Failed to connect to bus: No such file or directory
Other sources make it clear that there is no systemd on Ubuntu WSL.
How can I start statd without systemd?
systemd windows-subsystem-for-linux
add a comment |Â
up vote
0
down vote
favorite
When I run certain mount commands, I am told
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
The command I find online to start statd is:
systemctl start statd
which gives anothe error:
> systemctl start statd
Failed to add /run/systemd/ask-password to directory watch: No such file or directory
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Failed to connect to bus: No such file or directory
Other sources make it clear that there is no systemd on Ubuntu WSL.
How can I start statd without systemd?
systemd windows-subsystem-for-linux
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
When I run certain mount commands, I am told
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
The command I find online to start statd is:
systemctl start statd
which gives anothe error:
> systemctl start statd
Failed to add /run/systemd/ask-password to directory watch: No such file or directory
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Failed to connect to bus: No such file or directory
Other sources make it clear that there is no systemd on Ubuntu WSL.
How can I start statd without systemd?
systemd windows-subsystem-for-linux
When I run certain mount commands, I am told
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
The command I find online to start statd is:
systemctl start statd
which gives anothe error:
> systemctl start statd
Failed to add /run/systemd/ask-password to directory watch: No such file or directory
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Failed to connect to bus: No such file or directory
Other sources make it clear that there is no systemd on Ubuntu WSL.
How can I start statd without systemd?
systemd windows-subsystem-for-linux
systemd windows-subsystem-for-linux
asked Apr 17 at 21:55
jtpereyda
8582916
8582916
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
systemd
ultimately just run binaries. So without systemd
, you can the binaries directly.
If you need the binary to run the background. you can run it nohup
.
If you need the process to be managed then you'll need another tool that can do things like start it on boot and automatically restart it if fails.
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
systemd
ultimately just run binaries. So without systemd
, you can the binaries directly.
If you need the binary to run the background. you can run it nohup
.
If you need the process to be managed then you'll need another tool that can do things like start it on boot and automatically restart it if fails.
add a comment |Â
up vote
0
down vote
systemd
ultimately just run binaries. So without systemd
, you can the binaries directly.
If you need the binary to run the background. you can run it nohup
.
If you need the process to be managed then you'll need another tool that can do things like start it on boot and automatically restart it if fails.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
systemd
ultimately just run binaries. So without systemd
, you can the binaries directly.
If you need the binary to run the background. you can run it nohup
.
If you need the process to be managed then you'll need another tool that can do things like start it on boot and automatically restart it if fails.
systemd
ultimately just run binaries. So without systemd
, you can the binaries directly.
If you need the binary to run the background. you can run it nohup
.
If you need the process to be managed then you'll need another tool that can do things like start it on boot and automatically restart it if fails.
answered Apr 19 at 18:25
Mark Stosberg
2,10411523
2,10411523
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%2f1025947%2frun-rcp-statd-without-systemd-ubuntu-on-windows-subsystem-for-linux-wsl%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