Search code examples
linuxpublic-htmlslackware

Slackware creating directory when adding new user


I'm using slackware 14.2, and i want to create directory public_html in /home/*/ when i create user. I saw there's a file useradd in /etc/default/, but i don't know, if this file should be editing.


Solution

  • Like that:

    # mkdir /etc/skel/public_html
    # useradd -s /bin/bash -m -d /home/user1 user1
    # ls -Al ~user1
    total 4
    drwxr-xr-x 2 user1 user1 4096 Dec  9 11:43 public_html