Hi, Please tell me how do I create a new user id with the necessary privileges under Linux, from command prompt or in any other way. Thanks,
most dist will have a adduser script.
useradd -d /home/new_user -G users new_user
manually, add entry in /etc/passwd & /etc/shadow then create a new home directory and chown the directory to the new user.