smbpasswd -a username & put password
Amit Tripath
Annik SAT
For a system administrator to add a Samba password for a new user, they have to first add the new user name, then the new user password via commands. To add the username, add the command line, "adducer (name)" or "# user add (name)." Once they have their account, the administrator can add the command line, "# smbpasswd -a (name)".
Run this command at the command prompt:net user username password /add /domain
Join a server with people in it, or just use the console command "bot_add" to add a bot to your own server.
In linux adduser and useradd commands are used to add user account.
the procedure of making account though command prompt is net user, system name, password /add e.g net user pc 123 /add
There are two ways you can add a user on Fedora 9. The first is to use the User Manager tool. The second is to use the command line tool useradd.
edit the /etc/samba/smb.conf and add below lines to the end of the file and restart samba using command service smb restart[]path = writeable = yes; browseable = yesguest ok = yesHere guest ok = yes tells anybody can view and edit the data. If you want to restrict samba sharing you have to change that line as valid users = user1, user2.Before that you have to add samba users that and samba sharing you can do in GUI mode accessfromSystem>Administration>serversettings>samba.
the diffrent betwen local administrator and server administrator
DSADD can add user,computers and groups all
"useradd" command and sometimes adduser command. Please refer to the manual page of the command by issuing "man useradd" for detailed information
You will need an admin on the server to add your name to the whitelist. This can be done by changing whitelist.txt or using the command /whitelist add (name)
To install a Python package for a specific user using the command "python setup.py install", you can use the "--user" flag. This flag will install the package only for the current user, rather than system-wide. Simply add "--user" to the end of the command like this: "python setup.py install --user".