Tuesday, April 30, 2024
 Popular · Latest · Hot · Upcoming
52
rated 0 times [  52] [ 0]  / answers: 1 / hits: 31606  / 2 Years ago, wed, july 20, 2022, 6:36:29

A student just asked what could be the downside of having a dot (. ) in the name of the user. For example: john.doe



How will this affect the system or any apps for that matter?


More From » users

 Answers
7

POSIX states this about usernames:




[...] To be portable across systems conforming to IEEE Std 1003.1-2001, the value is composed of characters from the portable filename character set. The hyphen should not be used as the first character of a portable user name.




... where the portable filename character set is:



A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
a b c d e f g h i j k l m n o p q r s t u v w x y z
0 1 2 3 4 5 6 7 8 9 . _ -


Also, the manpage for the /etc/adduser.conf file Manpage icon states:



   VALID NAMES
adduser and addgroup enforce conformity to IEEE Std 1003.1-2001,
which allows only the following characters to appear in group
and user names: letters, digits, underscores, periods, at signs
(@) and dashes. The name may not start with a dash. The "$" sign
is allowed at the end of usernames (to conform to samba).

An additional check can be adjusted via the configuration
parameter NAME_REGEX to enforce a local policy.


However,



Whilst both specifications seem to include the dot, Ubuntu (on my 13.04 at least) seems to disallow it:



⊳ sudo adduser as.df
adduser: Please enter a username matching the regular expression configured
via the NAME_REGEX[_SYSTEM] configuration variable. Use the `--force-badname'
option to relax this check or reconfigure NAME_REGEX.


The default NAME_REGEX in Ubuntu is (from the /etc/adduser.conf manpage):



^[a-z][-a-z0-9]*$



  • Starting with a lowercase letter then any number of dashes, lowercase letters or digits. No _, @ or ..



So,



in conclusion a dot . may be used for a Ubuntu username, the NAME_REGEX just has to be changed in /etc/adduser.conf. Seeing as it conforms to POSIX, there shouldn't be any problems with having a . in the username with any POSIX-compliant program.



To enable a dot in usernames




  1. Run this command in a terminal:



    sudo nano /etc/adduser.conf

  2. Locate this line (near the end of the file)



    #NAME_REGEX="^[a-z][-a-z0-9]*$"


    and replace it with



    NAME_REGEX='^[a-z][-.a-z0-9]*$'


    Note that the - must remain the first character in the bracket expression [...], otherwise it is treated as specifying a range a-z.


  3. Press Ctrl+X, then Y, then Enter.







References:




[#27473] Wednesday, July 20, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
mance

Total Points: 198
Total Questions: 105
Total Answers: 128

Location: South Georgia
Member since Mon, Aug 16, 2021
3 Years ago
;