NFS Service not enabed`
![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
I am trying to run the NFS service on ubuntu 16.04, but when i run command:
Sudo service nfsd status
I get following message:
millionlights@millionlights-desktop:~$ sudo service nfsd status
[sudo] password for millionlights:
â nfsd.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
I ran commands below to to install nfs server and client but in vain.
sudo apt-get install nfs-kernel-server
Please tell me how can i make nfs client run?
lubuntu nfs
add a comment |Â
up vote
0
down vote
favorite
I am trying to run the NFS service on ubuntu 16.04, but when i run command:
Sudo service nfsd status
I get following message:
millionlights@millionlights-desktop:~$ sudo service nfsd status
[sudo] password for millionlights:
â nfsd.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
I ran commands below to to install nfs server and client but in vain.
sudo apt-get install nfs-kernel-server
Please tell me how can i make nfs client run?
lubuntu nfs
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to run the NFS service on ubuntu 16.04, but when i run command:
Sudo service nfsd status
I get following message:
millionlights@millionlights-desktop:~$ sudo service nfsd status
[sudo] password for millionlights:
â nfsd.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
I ran commands below to to install nfs server and client but in vain.
sudo apt-get install nfs-kernel-server
Please tell me how can i make nfs client run?
lubuntu nfs
I am trying to run the NFS service on ubuntu 16.04, but when i run command:
Sudo service nfsd status
I get following message:
millionlights@millionlights-desktop:~$ sudo service nfsd status
[sudo] password for millionlights:
â nfsd.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
I ran commands below to to install nfs server and client but in vain.
sudo apt-get install nfs-kernel-server
Please tell me how can i make nfs client run?
lubuntu nfs
lubuntu nfs
asked Apr 18 at 11:30
![](https://lh3.googleusercontent.com/-W81-SmHiVGs/AAAAAAAAAAI/AAAAAAAABj0/7qFSurb5o3Y/photo.jpg?sz=32)
![](https://lh3.googleusercontent.com/-W81-SmHiVGs/AAAAAAAAAAI/AAAAAAAABj0/7qFSurb5o3Y/photo.jpg?sz=32)
Chandrashekhar Patil
164
164
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
The name of the systemd service is not nfsd
(that's the name of the daemon process):
$ systemctl list-unit-files nfs*
UNIT FILE STATE
nfs-blkmap.service static
nfs-config.service static
nfs-idmapd.service static
nfs-kernel-server.service enabled
nfs-mountd.service static
nfs-server.service enabled
nfs-utils.service static
nfs-blkmap.target disabled
nfs-client.target enabled
9 unit files listed.
So the command to show the server status is
systemctl status nfs-server
or
systemctl status nfs-kernel-server
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
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
The name of the systemd service is not nfsd
(that's the name of the daemon process):
$ systemctl list-unit-files nfs*
UNIT FILE STATE
nfs-blkmap.service static
nfs-config.service static
nfs-idmapd.service static
nfs-kernel-server.service enabled
nfs-mountd.service static
nfs-server.service enabled
nfs-utils.service static
nfs-blkmap.target disabled
nfs-client.target enabled
9 unit files listed.
So the command to show the server status is
systemctl status nfs-server
or
systemctl status nfs-kernel-server
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
add a comment |Â
up vote
0
down vote
The name of the systemd service is not nfsd
(that's the name of the daemon process):
$ systemctl list-unit-files nfs*
UNIT FILE STATE
nfs-blkmap.service static
nfs-config.service static
nfs-idmapd.service static
nfs-kernel-server.service enabled
nfs-mountd.service static
nfs-server.service enabled
nfs-utils.service static
nfs-blkmap.target disabled
nfs-client.target enabled
9 unit files listed.
So the command to show the server status is
systemctl status nfs-server
or
systemctl status nfs-kernel-server
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
add a comment |Â
up vote
0
down vote
up vote
0
down vote
The name of the systemd service is not nfsd
(that's the name of the daemon process):
$ systemctl list-unit-files nfs*
UNIT FILE STATE
nfs-blkmap.service static
nfs-config.service static
nfs-idmapd.service static
nfs-kernel-server.service enabled
nfs-mountd.service static
nfs-server.service enabled
nfs-utils.service static
nfs-blkmap.target disabled
nfs-client.target enabled
9 unit files listed.
So the command to show the server status is
systemctl status nfs-server
or
systemctl status nfs-kernel-server
The name of the systemd service is not nfsd
(that's the name of the daemon process):
$ systemctl list-unit-files nfs*
UNIT FILE STATE
nfs-blkmap.service static
nfs-config.service static
nfs-idmapd.service static
nfs-kernel-server.service enabled
nfs-mountd.service static
nfs-server.service enabled
nfs-utils.service static
nfs-blkmap.target disabled
nfs-client.target enabled
9 unit files listed.
So the command to show the server status is
systemctl status nfs-server
or
systemctl status nfs-kernel-server
answered Apr 18 at 11:58
steeldriver
62.9k1197165
62.9k1197165
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
add a comment |Â
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
Thanks. IT shows nfs-server, services running but my ultimate goal is to get the nfsd client running. And when i use command to do it: sudo nfsd start....it gives output as: sudo: nfsd: command not found Please help me getting nfsd client running on mu ubuntu.
â Chandrashekhar Patil
Apr 19 at 5:34
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
@ChandrashekharPatil sorry I am not familiar with any "nsfd client" - can you provide a link to any instructions that you are following?
â steeldriver
Apr 19 at 12:19
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Sorry for late reply...but this is the step i am asked to do. sudo nfsd status (nfsd service is enabled) (nfsd is running (pid 313, 8 threads))
â Chandrashekhar Patil
Apr 25 at 9:20
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
Thanks for reply. Below is thing i am asked to do : sudo nfsd status nfsd service is enabled nfsd is running (pid 313, 8 threads) otherwise start service ... sudo nfsd start (Starting the nfsd service)
â Chandrashekhar Patil
Apr 25 at 9:25
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%2f1026082%2fnfs-service-not-enabed%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