Posts

Showing posts from December, 2014

Linux user management - Create, Remove, modify an user account

Image
User Management is one of the major responsibilities of a System Administrator. The user can either be an account associated with an application or a human being. This post shows how a user account can be created, removed and modified via CLI.

List of alternative Linux/Open-source software

Image
"There are moments in our lives when we find ourselves at cross roads. The choice that we make in those moments can define the rest of our life". At some point you might get fed up with proprietary OS/software and will start thinking about switching to Linux/open source software. Only thing that holds you back is the doubt whether there are any alternates to the software that you have been using for long. This post is intended to address such doubts. credits: stickycomics.com

what is UID and GID in Linux?

Image
In order to log into a Linux computer you would require a user account. Once you log in to the computer you can access the files and folders available in the computer. In a Linux  system, each user is identified by the kernel with a number called User Identifier or UID. During user creation the system generates a UID and maps it with a username. The /etc/passwd file contains UID to username mapping of all users in the system. In most Linux operating system the value  of UID lies between 0 - 499 for system generated users and  500 - 60000 for new users created. The default UID of root user is 0.