How do I Create a New Username


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How do I Create a New Username
# 1  
Old 08-29-2001
Question How do I Create a New Username

Hi

I am new at Unix and need to setup a username and password, I currently login as root and use the password saturn. I wish to change this password and create more.....help
# 2  
Old 08-29-2001
To change your password type passwd in the terminal (or shell), to add another user type useradd. You can see description of any command by using the man command, so try man useradd...
# 3  
Old 08-29-2001
Tools

to change password
#passwd
to add user
#useradd -d <homedir> -g <group>|staff (-m) -s /bin/ksh|/bin/rksh <username>
# 4  
Old 09-10-2001
MySQL

Thanks guys
# 5  
Old 09-11-2001
Now you should change your root password, since everyone knows it now. Also, next time don't tell anyone what the root password is.
# 6  
Old 09-11-2001
And don't forget to use a more complicated password with numbers and special symbols so they can't be easily guessed.
# 7  
Old 09-11-2001
And also don't forget to change it on a regular basis, just in case someone has found it out.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Why does "ps -[u|U] username" not list processes when username is numeric?

Greetings, The title pretty much says it all. I've snooped everywhere and can't find anything on this. Since our organization went to numeric usernames, using the u|U option for ps returns no processes. Example passwd entry: 320074:DjZAJKXun8HBs:10129:6006:Joe Y:/cadhome/analysis/jy:/bin/bash... (4 Replies)
Discussion started by: crimso
4 Replies

2. Shell Programming and Scripting

awk to create variables to pass into a bash loop to create a download link

I have created one file that contains all the necessary info in it to create a download link. In each of the lines /results/analysis/output/Home/Auto_user_S5-00580-6-Medexome_67_032/plugin_out/FileExporter_out.67... (8 Replies)
Discussion started by: cmccabe
8 Replies

3. Shell Programming and Scripting

Why username is always empty

i have a html file with uploads a file and sends the username to a .cgi file using post method. the part of code in the cgi file is as below. i am able to get the filename but not able to get the username thats getting posted to the file how to know the value of username. i am trying to store... (1 Reply)
Discussion started by: sasidhdv
1 Replies

4. Homework & Coursework Questions

Create script to add user and create directory

first off let me introduce myself. My name is Eric and I am new to linux, I am taking an advanced linux administration class and we are tasked with creating a script to add new users that anyone can run, has to check for the existence of a directory. if the directory does not exist then it has... (12 Replies)
Discussion started by: pbhound
12 Replies

5. Shell Programming and Scripting

SFTP with '@' in username

Hi All, Good morning !! I have to connect to a sftp server using following details, 1) username contains "@" as part of it. eg: xyz@abc@servername 2) We have to use password to connect to the server. Could you please advise the solution for this? Thanks in advance Regards, Mohan (1 Reply)
Discussion started by: mohanpadamata
1 Replies

6. Post Here to Contact Site Administrators and Moderators

Change Username

Hello, I'd like to change my username if possible. The reason is that it is my actual name, and I'd like to remove it from search engines. If it is possible, I'd like to change it to creeps. Thanks in advance! (1 Reply)
Discussion started by: cezar.elnazli
1 Replies

7. Post Here to Contact Site Administrators and Moderators

username

Is it possible to change my username in this site or is thre a way to delete my account and then create a new one with a diffrent user name (2 Replies)
Discussion started by: floresr
2 Replies

8. Post Here to Contact Site Administrators and Moderators

Username change

Hello Moderator, My login name is govindts. I wanted to rename this login id to shrinika Would you be able to do this? Thanks (1 Reply)
Discussion started by: govindts
1 Replies

9. Linux

tar usage and delete/create username

dear Linux expert, I am using Fedora R5 how to use tar to archive /var to a test_var.tar and compressing it? how to delete a user? just remove the line in /etc/passwd? and then what is the procedure to create a new user ? many thank (2 Replies)
Discussion started by: zp523444
2 Replies

10. UNIX Desktop Questions & Answers

How do I create desktop icons for the shell programs I create???

I am a bash shell programmer and I create programs on occasional basis. Now, I dont want my programs to be run by typing out its name at a command line. I want to make it as user friendly as possible. I want to create icons on the desktop so users can click on it. mind you, I said "desktop... (7 Replies)
Discussion started by: TRUEST
7 Replies
Login or Register to Ask a Question