Skip to main content
Topic: the group nogroup (Read 1534 times) previous topic - next topic
0 Members and 4 Guests are viewing this topic.

the group nogroup

i follow instrucktions of atftp on ubuntu as written here
https://openwrt.org/docs/guide-user/troubleshooting/tftpserver
but when i gonna run suo
Code: [Select]
chown nobody:nogroup -R /srv/tftp
chown: invalid group : «nobody:nogroup»
i had tried to fix with
with
Code: [Select]
 
sudo chmod -R 777 /srv/tftp
sudo chown -R nobody /srv/tftp
and then trying to run the deamon ...
Code: [Select]
 sudo atftpd --daemon --no-fork --logfile - /srv/tftp
Nov 10 22:24:29 cryptolab atftpd[10897.139629222795072]: Advanced Trivial FTP server started (0.7.5)
Nov 10 22:24:29 cryptolab atftpd[10897.139629222795072]: atftpd: can't change identity to nobody.nogroup: no such user/group. exiting.

any way to fix it ?

plus for tftp-hda the files are located here 
https://github.com/gentoo/gentoo/tree/master/net-ftp/tftp-hpa/files
I don't care which server i will use .. i care to work .. any ideas

Re: the group nobody

Reply #1
As the error message says, nobody:nogroup is not valid. The nobody user exists by default but there is no such group as "nogroup". I'm not sure what exactly you're doing but I don't see why you can't just use nobody:nobody instead for this.

Re: the group nobody

Reply #2
As the error message says, nobody:nogroup is not valid. The nobody user exists by default but there is no such group as "nogroup". I'm not sure what exactly you're doing but I don't see why you can't just use nobody:nobody instead for this.

Re: the group nogroup

Reply #3
Use the --user/--group arguments to control the user/group atftp is trying to use.

Re: the group nogroup

Reply #4
can someone tell me where to put the openrc services for tftp-hda ?