groupadd :: Command not found


 
Thread Tools Search this Thread
Operating Systems BSD groupadd :: Command not found
# 1  
Old 03-11-2008
groupadd :: Command not found

Hi, everybody
Instructions on installing mysql in freebsd insist on using #groupadd command. I tried it on freebsd-6.0. just to get this response "Command not found".
Is there any way round?

yours`
sehrguey
# 2  
Old 03-11-2008
Try...
whereis groupadd

or use find command to locate the file..
# 3  
Old 03-11-2008
if whereis and find doesn't work, then:
Code:
which groupadd

or
Code:
whence groupadd

and as a final resort:
Code:
locate groupadd

# 4  
Old 03-13-2008
dear helpers,

all of the commands you proposed were tried with a monotonous result :Command not found or :No such file or directory.
I suspect the groupadd command is from Linux and mistakingly replicated by site-keepers in the net.
But then - how can a dummy deploy mysql on freebsd?

yours`
sehrguey
# 5  
Old 03-18-2008
Try to manualy edit the /etc/group file. Open it with an text editor and add a new record to match your needs. Be careful on the group id field (third field) to be unique on that file.
# 6  
Old 03-21-2008
Dear Sergiu-IT,
thanks for your help.
Following your instructions I fine the "group" file and edited it as you recommended.
So there are workarounds where there are techies.

yours`
sehrguey
# 7  
Old 04-04-2008
you can also try:
# find / -name "groupadd"
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

C command not found

Dear All, I am trying to install a program in Opensuse linux and while issuing the 'make' command, its showing me an error /bin/sh: C: command not found Kindly help me to troubleshoot the problem. I have gcc, c++ all install in the linux machine. Thanks (9 Replies)
Discussion started by: biochemist
9 Replies

2. Shell Programming and Scripting

Want to terminate command execution when string found in the command output

Hi Experts, I am very much new to linux scripting, I am currently working on reducing my manual work and hence writing a script to automate few task. I am running below command to snmpwalk the router.. snmpwalk -v 3 -u WANDL_SU -a MD5 -A vfipmpls -x DES -X VfIpMpLs -l authPriv... (19 Replies)
Discussion started by: Hanumant.madane
19 Replies

3. Shell Programming and Scripting

When i am trying to execute export command within a shell script it is saying command not found.

I am running the export command within a view to use that value inside my build script. But while executing it it is saying "export command not found" My code is as follows: -------------------------- #!/bin/sh user="test" DIR="/bldtmp/"$user VIEW="test.view1" echo "TMPDIR before export... (4 Replies)
Discussion started by: dchoudhury
4 Replies

4. Shell Programming and Scripting

bash: <command nm> command not found

I created a script that I need to run from time to time, but get this error message. To get it working again I run this command from time to time: export PATH="$PATH:~/scripts" I put all my automated scripts in the /scripts directory and would like to run my scripts from any directory... (5 Replies)
Discussion started by: catalinawinemxr
5 Replies

5. Solaris

for: command not found

I have installed Solaris recently. I was doing "for file in *.c; ...." at the command prompt, it says for: command not found. I tried changing shells, but still wouldn't work. Any ideas? (7 Replies)
Discussion started by: software2007
7 Replies

6. HP-UX

groupadd not unique

I want to add several users and several groups to a HPUX 11.31 box. When I type groupadd -g GID <name>, I'm told GID is not unique....even though it doesn't exist in the /etc/group file. I read in the man pages about NIS but I don't think we are using NIS....well we are using LDAP, but can... (1 Reply)
Discussion started by: jackiebaron
1 Replies

7. UNIX for Dummies Questions & Answers

groupadd

Hello everyone-I am a new Unix user, only in my second week of class, and i am having a real hard time getting the groupadd command to work. The command I am using is /usr/sbin/groupadd mygroup. When I try this to create a group called "mygroup" I get a "Permission Denied" message. Am i using the... (3 Replies)
Discussion started by: mfruiz34
3 Replies

8. UNIX for Dummies Questions & Answers

Command not found

Hi guys, I do apologise if this question has been asked before. I am currently running Solaris 10 on a x86 architecture. Now, the problem I am having relates to the issuing of commands, for example if I am trying to find out the ipaddress of the machine I would issue the command 'ipconfig -a |... (2 Replies)
Discussion started by: BigTool4u2
2 Replies

9. Shell Programming and Scripting

how can i check in csh if command found or not found ?

hello all im trying to use in sun Solaris the information received from the top command now i several machines that dont have install the top program so when im running the script im geting error saying after im running this code : set MemoryInfo = `top | grep Memory` if (... (2 Replies)
Discussion started by: umen
2 Replies

10. Linux

groupadd: unable to lock group file

Hi guys, i encountered this error when i try to create a group. What is the problem here? I created a few groups weeks before this. I was recommended to reboot the machine, but i am not the owner of the machine, thus i would prefer to know the cause and any other solution other than rebooting the... (1 Reply)
Discussion started by: Daven81
1 Replies
Login or Register to Ask a Question