dennylin93 said:The file that saves the group is /etc/group. Since /etc/passwd is a shadowed version of /etc/master.passwd, is only shows "*" in place of the password hashes.
The directories under /home contain the files of users, and /var/mail contains the mail. Information such as groups, passwords, and usernames aren't saved in these directories, but sometimes there's important stuff you might want to backup.
RUMMY said:so how can I fully backup my users and than restore?
tar -cvf /path/to/backup.tar /etc/passwd /etc/master.passwd /etc/blah /home/you /home/me /var/mail
cd /
tar -xvf /path/to/backup.tar
tar -xvf /path/to/backup.tar /etc/passwd /etc/master.passwd /etc/group
$ su
or $ sudo su
to gain the proper permissions. The latter requires security/sudo.